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 sys | |
from subprocess import * | |
# | |
# subprocess.check_output() is new in Python 2.7 | |
# | |
def _check_output(*popenargs, **kwargs): | |
r"""Run command with arguments and return its output as a byte string. |
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
# | |
# /etc/apache2/conf.d/gitweb | |
# | |
Alias /gitweb /var/www/gitweb | |
<Directory /var/www/gitweb> | |
Options ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch | |
AllowOverride All | |
order allow,deny | |
Allow from all |
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 sys, paramiko | |
if len(sys.argv) < 5: | |
print "args missing" | |
sys.exit(1) | |
hostname = sys.argv[1] | |
password = sys.argv[2] |
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
" Vim syntax file | |
" Language: Verbose TAP Output | |
" Maintainer: Rufus Cable <[email protected]> | |
" Remark: Simple syntax highlighting for TAP output | |
" License: | |
" Copyright (c) 2008 Rufus Cable | |
if exists("b:current_syntax") | |
finish | |
endif |
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
//&>/dev/null;x="${0%.*}";[ ! "$x" -ot "$0" ]||(rm -f "$x";cc -o "$x" "$0")&&"$x" $*;exit | |
// Usage: bash ./hello.c | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
printf("Hello world!\n"); | |
return 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
#include <stdlib.h> | |
#include <stdio.h> | |
/* Create a lambda function. Note: unlike lambdas in functional | |
languages, this lambda does not capture the containing | |
environment. Thus, if you access the enclosing environment, you | |
must ensure that the lifetime of this lambda is bound by the | |
lifetime of the enclosing environment (i.e., until the enclosing | |
function returns). This means that if you access local |
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 | |
""" | |
find download links to all PragPub magazines | |
usage: | |
$ ./pragpub_get.py [pdf | html | epub | mobi] > pragpub.lst | |
$ wget -c -i pragpub.lst | |
written by Mathias Lafeldt <[email protected]> |
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 | |
""" | |
find download links to all SE Radio podcasts | |
usage: | |
$ ./seradio_get.py > seradio.lst | |
$ wget -c -i seradio.lst | |
written by Mathias Lafeldt <[email protected]> |
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 | |
""" | |
find download links to all SoftwareArchitekTOUR podcasts | |
usage: | |
$ ./softwarearchitektour_get.py > files.lst | |
$ wget -c -i files.lst | |
written by Mathias Lafeldt <[email protected]> |
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
body { | |
margin: 0; | |
max-width: 100ex; | |
padding: 0 9ex 1ex 4ex; | |
font-family: Helvetica; | |
} | |
h1 { | |
font-size: 20px; | |
} |
OlderNewer