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/ |
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
jQuery( ".accordion" ).accordion({ | |
collapsible: true, | |
autoHeight: false, | |
active: false | |
}); |
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
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. |
NewerOlder