This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<MaterialProject xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<materialz1List> | |
<MaterialElement> | |
<Key>0</Key> | |
<Bget>false</Bget> | |
<Xlocation>1717</Xlocation> | |
<Ylocation>66720</Ylocation> | |
<Zlocation>6703</Zlocation> | |
<Extendingspeed>30</Extendingspeed> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<appSettings> | |
<add key="filter_x_up" value="1280" /> | |
<add key="filter_y_up" value="4330" /> | |
<add key="filter_x_down" value="1220" /> | |
<add key="filter_y_down" value="4270" /> | |
<add key="filter_machine_x " value="1250" /> | |
<add key="filter_machine_y " value="4550" /> | |
<add key="feeder_space" value="1650" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<XmlCoordinate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<Leftmark> | |
<X>36357</X> | |
<Y>45502</Y> | |
</Leftmark> | |
<Rightmark> | |
<X>36009</X> | |
<Y>48322</Y> | |
</Rightmark> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo ----------------------------------------------- increment.bat script ----------------------------------------------- | |
rem ======================================================================================== | |
rem == This script automatically increments build number in "version.h" file. | |
rem == Instructions and more information: | |
rem == http://codeblog.vurdalakov.net/2017/04/autoincrement-build-number-in-arduino-ide.html | |
rem ======================================================================================== | |
setlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install NodeMCU | |
https://github.com/nodemcu/nodemcu-flasher/blob/master/Win64/Release/ESP8266Flasher.exe?raw=true | |
-- Connect via serial port | |
majorVer, minorVer, devVer, chipid, flashid, flashsize, flashmode, flashspeed = node.info(); | |
print(flashsize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:1000000006C1000016C1000014C1000012C10000AA | |
:1000100010C100000EC100000CC100000AC10000A8 | |
:1000200008C1000006C1000004C1000002C10000B8 | |
:1000300000C10000FEC00000FCC00000FAC00000CB | |
:10004000F8C00000F6C00000F4C00000F2C00000DC | |
:10005000F0C00000EEC00000ECC0000003C20000D1 | |
:10006000E8C00000E6C00000E4C00000E2C00000FC | |
:10007000E0C00000DEC00000DCC00000DAC000000C | |
:10008000D8C00000D6C00000D4C00000D2C000001C | |
:10009000D0C00000CEC00000CCC00000CAC000002C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Adafruit_NeoPixel.h> | |
#ifdef __AVR__ | |
#include <avr/power.h> | |
#endif | |
#define PIN 4 | |
#define NUM_LEDS 16 | |
#define BRIGHTNESS 25 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
server, but for some reason omit a client connecting to it. I added an | |
example at the bottom. | |
Save the following server in example.js: | |
*/ | |
var net = require('net'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Return the Quantity Search | |
// @namespace https://gist.github.com/sleemanj/95035bf2c0141ac72420 | |
// @updateURL https://gist.github.com/sleemanj/95035bf2c0141ac72420/raw/aliexpress-qty-search-fix.js | |
// @downloadURL https://gist.github.com/sleemanj/95035bf2c0141ac72420/raw/aliexpress-qty-search-fix.js | |
// @version 0.1 | |
// @description Put the quantity search fields back into the search interface on Aliexpress when they are not present. | |
// @author You | |
// @match http://*.aliexpress.com/* | |
// @grant none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import imaplib | |
import email | |
mail = imaplib.IMAP4_SSL('imap.gmail.com') | |
mail.login('user','password') | |
mail.list() | |
# Out: list of "folders" aka labels in gmail. | |
mail.select("inbox") # connect to inbox. | |
mail.select('INBOX', readonly=True) |
NewerOlder