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 socket | |
def sockrecv(sock): | |
d = '' | |
while not d or d[-1] != '\n': | |
d += sock.recv(8192) | |
return d | |
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 XMonad | |
import XMonad.Config.Gnome | |
import XMonad.Hooks.DynamicLog | |
import XMonad.Hooks.EwmhDesktops | |
import XMonad.Hooks.ManageDocks | |
import XMonad.Layout.ToggleLayouts as TL | |
import XMonad.Layout.PerWorkspace | |
import XMonad.Layout.NoBorders | |
import XMonad.Layout.ResizableTile | |
import XMonad.Util.Run(spawnPipe) |
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
# Basic setup (direct imap) | |
source ~/.mutt/imap-creds | |
set folder="imaps://mail.inoi.fi:993/" | |
set spoolfile="imaps://mail.inoi.fi:993/INBOX" | |
set postponed="+INBOX.Drafts" | |
set record="imaps://mail.inoi.fi:993/INBOX.Sent" | |
set query_command= "abook --mutt-query '%s'" | |
macro index,pager A "<pipe-message>abook --add-email-quiet<return>" "add the sender address to abook" |
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 | |
# This code is public domain and can be freely used. | |
# | |
# This script echoes all replies it has received that are either | |
# prefixed or suffixed with @username | |
# | |
# Requirements: | |
# Python 2.5+ | |
# python-twitter: http://code.google.com/p/python-twitter/ | |
# simplejson: http://www.undefined.org/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
# Copyright (c) 2009 Inoi oy | |
# Permission is hereby granted, free of charge, to any person | |
# obtaining a copy of this software and associated documentation | |
# files (the "Software"), to deal in the Software without | |
# restriction, including without limitation the rights to use, | |
# copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the | |
# Software is furnished to do so, subject to the following | |
# conditions: |
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
start on runlevel 2 | |
start on runlevel 3 | |
start on runlevel 4 | |
start on runlevel 5 | |
stop on shutdown | |
exec /usr/bin/sudo -u www-data \ | |
PHP_FCGI_CHILDREN=5 \ | |
PHP_FCGI_MAX_REQUESTS=125 \ | |
/usr/bin/php-cgi -q -b 127.0.0.1:9000 |
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 | |
from r12950.app1.models import A | |
print 'foobar' |
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 random | |
from datetime import datetime | |
import struct | |
import binascii | |
class SequentialID(object): | |
def __init__(self): | |
self.rng = random.Random() | |
self.reinit() |
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 trombi | |
from tornado.ioloop import IOLoop | |
ioloop = IOLoop.instance() | |
f = open('onemb.zero') | |
db = trombi.from_uri('http://localhost:5984/test') | |
def doc_created(doc): |
OlderNewer