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
Your post advocates a | |
( ) technical ( ) legislative (X) market-based (X) vigilante ( ) form-based | |
approach to fighting spam. Your idea will not work. Here is why it won't work. (One or more of the following may apply to your particular idea, and it may have other flaws which used to vary from state to state before a bad federal law was passed.) | |
( ) Spammers can easily use it to harvest email addresses | |
( ) Mailing lists and other legitimate email uses would be affected | |
( ) No one will be able to find the guy or collect the money | |
( ) It is defenseless against brute force attacks |
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
Root Bird | |
Gilberto Grape | |
Artie Shawberry | |
Kiwi Holliday | |
Peachmo | |
John Cola-trane | |
Don Wild Cherry | |
Vince Guavaldi | |
Dave Bruberry | |
Cab Colaway |
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
user_id = 2 | |
def error(request, failure): | |
return 'error' | |
def parse(request): | |
def _response(r): | |
request.response = r | |
def _error(f): | |
r = error(request, f) |
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
foo | |
bar | |
baz | |
qux | |
quux | |
frobnitz | |
frob | |
frotz | |
frobnule |
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
function parse_svn_branch { | |
if [ -d '.svn' ]; then | |
ref=$(svn info | grep URL | awk -F/ '{print $NF}' 2> /dev/null) || return | |
cur=$(pwd | awk -F/ '{print $NF}' 2> /dev/null) || return | |
if [ $ref != $cur ]; then | |
echo -ne "\xE2\x9C\xB6${ref}" | |
fi | |
fi | |
} |
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
function parse_svn_branch { | |
if [ -d '.svn' ]; then | |
ref=$(svn info | grep URL | awk -F/ '{print $NF}' 2> /dev/null) || return | |
cur=$(pwd | awk -F/ '{print $NF}' 2> /dev/null) || return | |
if [ $ref != $cur ]; then | |
echo "#$ref" | |
fi | |
fi | |
} |
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 math | |
def get_confidence_interval(p, n, alpha=0.5): | |
assert p >= 0 and p <= 1 | |
assert alpha > 0 and alpha < 1 | |
z = pnorm(1-alpha/2) | |
return (p + (math.pow(z, 2)/(2*n)) - z * math.sqrt((p * (1 - p) + (math.pow(z, 2)/(4*n)))/n)) |
stinkfoot
muffinman
grandwazoo
unclemeat
zombywoof
zootallures
lumpygravy
mudshark
jazzdischarge
partyhat
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
function parse_git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo "#"${ref#refs/heads/} | |
} | |
export PS1="\u@\h:\w\[\e[31;40m\]\$(parse_git_branch)\[\e[0m\] \$ " |