Skip to content

Instantly share code, notes, and snippets.

@billy3321
billy3321 / connect_wify.sh
Created April 10, 2012 10:16
This script is used to connect to wify
#!/bin/bash
# This script is writen by billy3321
# this script is used to connect to wireless network.
#set -o xtrace
IF=$(echo $1 | tr 'A-Z' 'a-z')
AUTH=$(echo $2 | tr 'A-Z' 'a-z')
ESSID=$3
KEY=$4
@CrBoy
CrBoy / README
Created September 12, 2011 06:31
Plurk CSS (original by howar31)
這個 CSS 樣式表最初由 howar31 製作, CrBoy 為了記錄改寫的過程所以放上 gist.github。
This stylesheet is originally made by howar31. CrBoy put it on gist.github for modifying and improving.
@ches
ches / install-pygtk.sh
Created July 20, 2011 11:34
Install PyGTK via Homebrew and virtualenv
# This LOOKS pretty straightforward, but it took awhile to sort out issues with
# py2cairo and pygobject, so I hope I've saved you some time :-)
#
# This assumes you already subscribe to a nice clean virtualenvwrapper workflow
# -- see https://gist.github.com/771394 if you need advice on getting there.
# There are some optional dependencies omitted, so if you're going to be doing
# heavy development with these libs, you may want to look into them.
#
# We go to some configure option pains to avoid polluting the system-level
# Python, and `brew link`ing Cairo which is keg-only by default.