Public Gists by ssokolow

gist: 224847 LCDd.conf for PCIDEA 20x4 U...
Gravatar
Mon Nov 02 22:48:21 -0800 2009
1
2
3
[server]
Driver=CFontzPacket
 
gist: 151572 Python boilerplate from whi...
Gravatar
Tue Jul 21 13:54:50 -0700 2009
1
2
3
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""[application description here]"""
gist: 135673 Modification of PyGTK's Ent...
Gravatar
Wed Jun 24 21:02:03 -0700 2009
1
2
3
#!/usr/bin/env python
"""Modification of PyGTK's EntryCompletion example with shell-like tab completion.
 
gist: 135661 How to get the current sele...
Gravatar
Wed Jun 24 20:09:25 -0700 2009
1
2
3
function getSelectionHTML(selection) {
   var range = (document.all ? selection.createRange() : selection.getRangeAt(selection.rangeCount - 1).cloneRange());
 
gist: 135656 How to fake a gtk.RadioTool...
Gravatar
Wed Jun 24 20:01:22 -0700 2009
1
2
3
# PyGTK doesn't let you set_active(False) on all radio buttons.
# You can work around that by adding a button to the group which will never
# be made visible to the user. (Don't add it to any window)
gist: 135655 xkill-style screensaver-dis...
Gravatar
Wed Jun 24 19:56:38 -0700 2009
1
2
3
#!/bin/sh
# A simple little script which prompts you to click a window and then disables
# the screensaver until it goes away.
gist: 135000 ches's github alias modifie...
Gravatar
Tue Jun 23 21:21:30 -0700 2009
1
2
3
# Bash alias to open Github page for project in current working directory.
# Will use the current active branch if it exists remotely, or falls back to master.