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
match_latencies = c( | |
7.47978949546814, 6.318617582321167, 6.1188719272613525, 7.745437145233154, | |
..., | |
2.361427068710327, 3.1125471591949463) | |
nomatch_latencies = c( | |
1.8395578861236572, 1.9002978801727295, 2.7614076137542725, 4.611708402633667, | |
..., | |
2.752995729446411, 5.312501907348633) |
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
def compute_check_digit(str) | |
str = str.strip.upcase | |
values = str.chars.map do |char| | |
case char | |
when '<' | |
0 | |
when 'A'..'Z' | |
char.ord - 65 + 10 | |
when '0'..'9' | |
char.ord - 48 |
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
require 'benchmark' | |
NUM_TRIALS = 10_000_000 | |
Benchmark.bm(20) do |x| | |
x.report('no concatenation') do | |
NUM_TRIALS.times do | |
y = "onetwothree" | |
end | |
end |
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
# based on fist example at http://wulczer.github.com/txpostgres/usage.html | |
import socket | |
import sys | |
from txpostgres import txpostgres | |
from twisted.internet import reactor, stdio | |
from twisted.python import log, util | |
from twisted.protocols import basic |
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 imaplib | |
import email.parser | |
import pickle | |
import pprint | |
GMAIL_USERNAME = '[email protected]' | |
GMAIL_PASSWORD = 'yourgmailpassword' | |
OLD_SENDER_ADDRESS = '[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
woodrow@woodrow-x200:~/tmp$ cat sort_test | |
1.2.3.4 | |
2.3.4.5 | |
12.3.2.4 | |
12.2.3.4 | |
12.2.3.5 | |
11.2.3.4 | |
1.12.3.4 | |
20.2.3.4 | |
21.2.3.4 |
NewerOlder