Skip to content

Instantly share code, notes, and snippets.

@xesscorp
xesscorp / esp8266.ino
Created December 19, 2014 17:19
This program issues commands to an ESP8266 Wifi module in order to receive an HTML page from a website.
///////////////////////////////////////////////////////////////////////////////////////
// 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.
///////////////////////////////////////////////////////////////////////////////////////
@msenateatplos
msenateatplos / membership.txt
Created September 18, 2013 18:11
sudo room members list
name,email,username,handle,membership rate
Matt Senate,mattsenate@gmail.com,mattsenate,$10/week
Marina Kukso,marina.kukso@gmail.com,marina,mk30,$?/week
Marc Juul,marcjc@gmail.com,juul,$?/month
Jenny Ryan,tunabananas@gmail.com,jenny,tunabananas,$?/week
@Tehnix
Tehnix / Notification alerts from irssi (and keeping ssh connection alive).md
Last active December 20, 2015 16:19
Get local notification alerts from irssi on a remote server, and use autossh to keep the ssh connection alive after connection loss.

Local notification alerts from irssi on a remote server (and keep the ssh connection alive after connection loss)

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)...

Programs you'll need

  1. autossh
  2. terminal-notifier
@max-mapper
max-mapper / readme.md
Last active January 28, 2024 18:11
How-to: Write a node module with voxel.js

Writing node modules with voxel.js

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.

Table of contents

@mbostock
mbostock / .block
Last active January 24, 2024 15:21
Path Tween
license: gpl-3.0
@jbeluch
jbeluch / irssi-connect.sh
Created April 1, 2011 19:54
irssi remote notification via ssh
#!/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
@chrisjacob
chrisjacob / README.md
Created February 18, 2011 03:44
Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").

Intro

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

The Result