This file contains hidden or 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
We will create the remote repository first. | |
1 | |
2 | |
3 | |
$ mkdir -p Projects/myeliteproject.git && cd Projects/myeliteproject.git | |
$ git init --bare | |
$ exit | |
We need the “—bare” flag. If you want to know why, read the manual and have in mind that this is a remote repository. |
This file contains hidden or 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
$("#accordion").accordion( "disable" ); | |
$("#accordion").removeClass("ui-state-disabled"); | |
$("#accordion").find("*").removeClass("ui-state-disabled"); | |
$("#accordion").accordion( "enable" ); |
This file contains hidden or 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
jQuery( ".accordion" ).accordion({ | |
collapsible: true, | |
autoHeight: false, | |
active: false | |
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
Networking Stuff: | |
1000 feet of Cat5e, crimper kit and strain relief boots: | |
http://www.amazon.com/Cat5e-Ethernet-Cable-000ft-Cat-5e/dp/B0092TG310/ | |
http://www.amazon.com/Cable-Tester-Crimper-Connector-Network/dp/B008UY5WL0/ | |
http://www.amazon.com/Cable-Matters-4-Pack-Strain-Relief/dp/B0049QNV70/ | |
Will we be running through walls? If so, fish tape would be handy: | |
http://www.amazon.com/JAYBRAKE-31-010-Ideal-50-Ft-Fish/dp/B00E4TCORA/ |
This file contains hidden or 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
Alabama "A person who knowingly and with intent to injure, defraud, or deceive an insurance company files a claim containing false, incomplete or misleading information may be prosecuted under this title.” | |
Arizona "Any person who knowingly presents a false or fraudulent claim for payment for a loss or benefit or knowingly presents false information in an application for insurance is guilty of a crime and may be subject to fines and confinement in prison.” " | |
Arkansas "Any person who knowingly presents a false or fraudulent claim for payment for a loss or benefit or knowingly presents false information in an application for insurance is guilty of a crime and may be subject to fines and confinement in prison”. | |
California "For your protection California law requires the following to appear on this form: Any person who knowingly presents false or fraudulent claim for the payment of a loss is guilty of a crime and may be subject to fines and confinement in state prison." |
This file contains hidden or 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
// Copied from: | |
// http://www.instructables.com/id/Interface-a-rotary-phone-dial-to-an-Arduino/?ALLSTEPS | |
// By Instructables user guidomax | |
int needToPrint = 0; | |
int count; | |
int in = 2; | |
int lastState = LOW; | |
int trueState = LOW; | |
long lastStateChangeTime = 0; | |
int cleared = 0; |
This file contains hidden or 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
--http://www.instructables.com/id/ESP8266-based-web-configurable-wifi-general-purpos-1/ | |
--Code by HoracioBouzas, formatted for use with ESPlorer by jimoconnell | |
print("WIFI control"); | |
-- put module in AP mode | |
wifi.setmode(wifi.SOFTAP); | |
print("ESP8266 mode is: " .. wifi.getmode()); | |
cfg={}; | |
-- Set the SSID of the module in AP mode and access password | |
cfg.ssid="ESP8266"; | |
cfg.pwd="passwordpassword"; |
This file contains hidden or 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
Apparently you *can* edit gists using working copy and textastic, but it's hardly intuitive |
OlderNewer