Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
#!/bin/sh | |
# If we get an argument, use it for ssh port, otherwise use default of 22 | |
if [ -n "$1" ] | |
then | |
port=$1 | |
else | |
port=22 | |
fi |
license: gpl-3.0 |
This is a short guide that will teach you the workflows that have been figured out by the voxel.js community for writing node modules + sharing them on NPM and Github. It is assumed that you have a basic understanding of JavaScript, github and the command line (if not you can check out an introduction to git and the command line or learn JS basics from JavaScript for Cats)
The voxel-tower repository on github contains all the example code from this guide.
First of all, thanks to prebenlm for making his walkthrough Irssi in Mac OS X Notification Center.
This is made with OS X in mind, but, should be easily transported over to other systems. Just use another notification system instead of the Apple Notification center and terminal-notifier (and you'll also have to workout the auto launch of the scripts yourself)...
name,email,username,handle,membership rate | |
Matt Senate,[email protected],mattsenate,$10/week | |
Marina Kukso,[email protected],marina,mk30,$?/week | |
Marc Juul,[email protected],juul,$?/month | |
Jenny Ryan,[email protected],jenny,tunabananas,$?/week |
/////////////////////////////////////////////////////////////////////////////////////// | |
// This program uses the ESP8266 Wifi module to access a webpage. It's an adaptation of | |
// the program discussed at http://hackaday.io/project/3072/instructions | |
// and shown here http://dunarbin.com/esp8266/retroBrowser.ino . | |
// | |
// This program was ported to the ZPUino 2.0, a softcore processor that runs on an FPGA | |
// and emulates an Arduino. | |
// | |
// This program works with version 0018000902 of the ESP8266 firmware. | |
/////////////////////////////////////////////////////////////////////////////////////// |