This file contains 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
#! /bin/bash | |
# | |
# Put this script in ~/bin/google-chrome for example, then create | |
# a symlink to start using it, for example: | |
# | |
# shell% cd bin | |
# shell% ln -s google-chrome google-chrome-test | |
# shell% ./google-chrome-test | |
# Try to locate Google Chrome |
This file contains 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
PACKAGE_ALIAS = { | |
'DIL': 'DIP', | |
'CERDIP': 'CDIP', | |
'TDSP': 'TCSP', | |
'UCSP': 'BGA', | |
'uMAX': 'SOIC', | |
} | |
PACKAGE_DEFAULT = { | |
'BCC': 'Bump Chip Carrier', | |
'BGA': 'Ball Grid Array', |
This file contains 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
Request.Twitter = new Class({ | |
Extends: Request.JSONP, | |
options: { | |
linkify: true, | |
url: '/twitter/statuses/user_timeline/{term}.json', | |
data: { | |
count: 5 | |
} |
This file contains 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
/* | |
* This requires https://gist.github.com/771026 | |
*/ | |
var Ticker = new Class({ | |
Implements: [Options], | |
options: { | |
delay: 5000 |
This file contains 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
def singleton(cls): | |
instances = {} | |
def instance(): | |
if cls not in instances: | |
instances[cls] = cls() | |
return instances[cls] | |
return instance |
This file contains 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
class Ternary(object): | |
''' | |
Ternary-ish emulation, it looks like C-style ternary operator:: | |
x = a ? b : c | |
In Python we would write:: | |
>>> x = a and b or c |
This file contains 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
#! /usr/bin/python | |
# | |
# compile logo: | |
# | |
# user@bitlair ~$ python bitlair.py > bitlair.svg | |
# user@bitlair ~$ convert bitlair.svg bitlair.png | |
# user@bitlair ~$ aplay tada.wav | |
# | |
LOGO = ''' |
This file contains 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
import json | |
import datetime | |
try: | |
import iso8601 | |
except ImportError: | |
iso8601 = None | |
class FancyJSONEncoder(json.JSONEncoder): | |
_registry = {} |
This file contains 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
#! /usr/bin/env python | |
# | |
# _______ | |
# ____________ _______ _\__ /_________ ___ _____ | |
# | _ _ \ _ | ____\ _ / | |/ _ \ | |
# | / / / / | | | /___/ _ | | / / | |
# |___/___/ /___/____|________|___ | |_| |___|_____/ | |
# \__/ |___| | |
# | |
# |
This file contains 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
#! /usr/bin/env python | |
''' | |
======================= | |
ANSI Screen Rendition | |
======================= | |
Library to help you use ANSI graphics on text terminals, featuring | |
cursor movement and color support. |
OlderNewer