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
[core] | |
excludesfile = ~/packages/git/etc/ignore | |
quotepath = false | |
[user] | |
email = [email protected] | |
name = Maximilian Gass | |
[alias] | |
sv = !git daemon --reuseaddr --base-path=. --export-all ./.git # serve | |
imagediff = !git-imagediff | |
a = add |
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
24159 execve("./bin/rbx", ["./bin/rbx"], [/* 40 vars */]) = 0 | |
24159 brk(0) = 0x2402000 | |
24159 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f12b0265000 | |
24159 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
24159 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f12b0263000 | |
24159 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
24159 open("/etc/ld.so.cache", O_RDONLY) = 3 | |
24159 fstat(3, {st_mode=S_IFREG|0644, st_size=73692, ...}) = 0 | |
24159 mmap(NULL, 73692, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f12b0251000 | |
24159 close(3) = 0 |
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 | |
import collections | |
import gevent.monkey | |
import gevent.wsgi | |
import httplib | |
class ConnectionCache(collections.defaultdict): | |
def __missing__(self, key): | |
return httplib.HTTPConnection(key) |
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 perl | |
use common::sense; | |
use lib '/home/mxey/code/AnyEvent-MPD/lib'; | |
use autodie qw(:all); | |
use AnyEvent; | |
use AnyEvent::Handle; | |
use AnyEvent::Socket; | |
use AnyEvent::MPD; | |
use IO::Handle; |
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
use common::sense; | |
use AnyEvent::HTTP; | |
use Coro; | |
use Coro::Channel; | |
use Data::Dumper; | |
my $q = Coro::Channel->new(); | |
async { | |
http_get('http://www.chaosdorf.de', |
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
use common::sense; | |
use AnyEvent::HTTP; | |
use Coro::Channel; | |
use Data::Dumper; | |
my $q = Coro::Channel->new(); | |
http_get('http://www.chaosdorf.de', | |
on_header => sub { | |
my($hdr) = @_; |
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 perl | |
use common::sense; | |
use lib 'lib'; | |
use App::Senex::HTTPServer; | |
use AnyEvent::HTTP; | |
use Coro; | |
use Coro::Channel; | |
my $server = App::Senex::HTTPServer->new( | |
port => 8080, |
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
mxey@tuvok:default git|master ~/tm/dizzy % di ../dizzy_0.1.95-1_all.deb | |
(Reading database ... 179137 files and directories currently installed.) | |
Preparing to replace dizzy 0.1.1-1 (using ../dizzy_0.1.95-1_all.deb) ... | |
Unpacking replacement dizzy ... | |
Setting up dizzy (0.1.95-1) ... | |
seeding texture cache in /var/cache/dizzy/textures | |
rendering 27bf5391b7eb9483d35af10ed63cfdfe60d71a98-Ornament-256 (line 240/ 256) | |
rendering 8ae7aeb8671f94aee1242c69f9e6d2ae10db6183-Spots-256 (line 240/ 256) | |
rendering ac1eb2c50c9b3967d552492b324325a0c05fe9eb-Aurora-256 (line 240/ 256) | |
rendering 02704b2d683dcd21982729914e0e549e3c006367-Flowers-256 (line 240/ 256) |
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
apticron report [Mon, 01 Mar 2010 11:57:06 +0100] | |
======================================================================== | |
apticron has detected that some packages need upgrading on: | |
donik.lan.secute.org | |
[ 127.0.1.1 188.40.152.65 ] | |
The following packages are currently pending an upgrade: |
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 System.Exit | |
import qualified XMonad.StackSet as W | |
import qualified Data.Map as M | |
import Data.Ratio ((%)) | |
import XMonad.Actions.CopyWindow | |
import XMonad.Actions.FocusNth | |
import XMonad.Actions.SpawnOn | |
import XMonad.Actions.SwapWorkspaces |
OlderNewer