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 | |
import yaml | |
import pprint | |
filename = sys.argv[1] | |
y = yaml.safe_load(open(filename, 'r')) |
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
env -i dash -c '. ./vars.sh; set' | sed -e "/^[a-zA-Z_][a-zA-Z0-9_]*='.*'$/"\!d > vars.py |
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/sh | |
verbose= | |
case "$1" in | |
-v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose) | |
verbose=1 | |
shift ;; | |
esac |
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
$ time env -i bash shell-perf.sh | |
Forking 1000 bash subshells.................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/documentup/latest.min.js"></script> | |
<script type="text/javascript"> | |
DocumentUp.document({ | |
repo: "mlafeldt/PROJECT", | |
travis: true, | |
twitter: [ "mlafeldt" ] |
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
/* From http://stackoverflow.com/questions/9229601/what-is-it-in-c-code */ | |
/* Force a compilation error if condition is true, but also produce a | |
result (of value 0 and type size_t), so the expression can be used | |
e.g. in a structure initializer (or where-ever else comma expressions | |
aren't permitted). */ | |
#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) | |
#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); })) |
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
# From http://stackoverflow.com/questions/6959360/goto-in-python | |
@goto | |
def test1(n): | |
s = 0 | |
label .myLoop | |
if n <= 0: | |
return s |
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 | |
# Finds duplicate adjacent words. | |
use strict ; | |
my $DupCount = 0 ; | |
if (!@ARGV) { | |
print "usage: dups <file> ...\n" ; |
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
vagrant@lucid32:~$ locale | |
locale: Cannot set LC_CTYPE to default locale: No such file or directory | |
locale: Cannot set LC_ALL to default locale: No such file or directory | |
LANG=en_US | |
LC_CTYPE=UTF-8 | |
LC_NUMERIC="en_US" | |
LC_TIME="en_US" | |
LC_COLLATE="en_US" | |
LC_MONETARY="en_US" | |
LC_MESSAGES="en_US" |
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/sh | |
# empty hash table | |
echo "-- hash table --" | |
hash | |
# hash location of commands | |
ifconfig >/dev/null | |
which ls >/dev/null | |
echo "-- hash table --" |