Getting Powerball drawing data from 11/27/2012 back to 01/07/2009 ...
Got 641775 bytes of Powerball data. Stand by for parsing.
Examining results of 406 drawings...
Top 5 numbers: 20, 41, 32, 59, 22
Top Powerball: 23
Detail:
Regular numbers
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
SELECT whatever | |
FROM tableName | |
WHERE columnToCheck <> CONVERT(columnToCheck USING ASCII) |
This file has been truncated, but you can view the full file.
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 'zip-codes' | |
time_zones_by_zip = { | |
"00501" => "America/New_York", | |
"00544" => "America/New_York", | |
"01001" => "America/New_York", | |
"01002" => "America/New_York", | |
"01003" => "America/New_York", | |
"01004" => "America/New_York", | |
"01005" => "America/New_York", |
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 quick_number_to_currency(num) | |
left, right = sprintf("%.2f", num).split('.') | |
1 while left.sub!(/(\d)(\d\d\d)\b/, '\1' + ',' + '\2') | |
"$#{left}.#{right}" | |
end | |
it "turns 1000 into $1,000.00" do | |
@rt.quick_number_to_currency(1000).should eql("$1,000.00") | |
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
mysql> select * from types_of_work where id < 10 order by bond_category limit 9; | |
+----+------------+-------------------+-----------------------------+---------------+------+ | |
| id | rate_class | general_type | specific_type | bond_category | code | | |
+----+------------+-------------------+-----------------------------+---------------+------+ | |
| 3 | A | All Other Class A | Airports - site preparation | 1 | 49 | | |
| 5 | A | All Other Class A | Airports - site preparation | 2 | 49 | | |
| 1 | A | All Other Class A | Airports - site preparation | 3 | 49 | | |
| 2 | A | All Other Class A | Airports - site preparation | 4 | 49 | | |
| 4 | A | All Other Class A | Airports - site preparation | 5 | 49 | | |
| 7 | A | All Other Class A | Airports - site preparation | 6 | 49 | |
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
describe "truth" do | |
100000.times do | |
it "should not be false" do | |
true.should_not be_false | |
end | |
end | |
end |
Continuously have problems installing rdiscount under Jruby on Mac OS X 10.7 with the Apple Developer Tools.
LD linked library error regarding not being able to find -lbundle.o
The cc compiler is using /usr/local/lib and bundle.o is instead in /usr/lib
The below adds /usr/lib as a path the compiler will check for shared libraries
gem install rdiscount -- --with-ldflags="-R /usr/lib"
RAILS_ENV=production QUEUE=jruby bundle exec rake jobs:work
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
dns-auth-3.centurylinkservices.net 207.14.235.234 Primary | |
dns-auth-4.centurylinkservices.net 67.238.98.162 Secondary | |
dns-auth-5.centurylinkservices.net 74.4.19.187 Secondary |
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://dzone.com/snippets/analyse-binary-log | |
# cat /bin/mylog | |
#!/bin/sh | |
# usage: | |
#$ mylog /mysql-bin-log/db-bin.000223 | |
# 2132 insert into customers | |
# 1887 update userlog_access | |
# 788 insert into gn_commission | |
# 718 insert into con_tab |