List moved
Please use https://github.com/bf4/learning to fork and pull changes.
List moved
Please use https://github.com/bf4/learning to fork and pull changes.
| ~ #node.js | |
| [20.16.16] < TheEmpath> so | |
| [20.16.34] < TheEmpath> anyone else have a hot programmer girl in their office? o____O | |
| [20.16.42] < Lorentz> I wiiish | |
| [20.16.48] <@Nexxy> not appropriate. | |
| [20.16.57] »¡« Signoff caaakeeey: #Node.js (Ping timeout: 260 seconds) | |
| [20.17.32] < joshwnj> yeah guys, grow up | |
| [20.17.38] < jerrysv> Nexxy: olynode was fun, you should have gone | |
| [20.18.03] < TheEmpath> my boss came by and said "Here, a new subodinate" and its a very attractive female. the otherwise painfully quite engineering room suddenly came to life and its a problem :X | |
| ~~~~~~~ |
| Latency Comparison Numbers (~2012) | |
| ---------------------------------- | |
| L1 cache reference 0.5 ns | |
| Branch mispredict 5 ns | |
| L2 cache reference 7 ns 14x L1 cache | |
| Mutex lock/unlock 25 ns | |
| Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
| Compress 1K bytes with Zippy 3,000 ns 3 us | |
| Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
| Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
| --colour | |
| -I app |
| [david: compare]$ # at this point we have a stock rails app with no minitest tests and one pending rspec example | |
| [david: compare]$ | |
| [david: compare]$ time rake test | |
| Run options: | |
| # Running tests: | |
| Finished tests in 0.030419s, 0.0000 tests/s, 0.0000 assertions/s. |
| #!/usr/bin/env bash | |
| # Use this one-liner to produce a JSON literal from the Git log: | |
| git log \ | |
| --pretty=format:'{%n "commit": "%H",%n "author": "%aN <%aE>",%n "date": "%ad",%n "message": "%f"%n},' \ | |
| $@ | \ | |
| perl -pe 'BEGIN{print "["}; END{print "]\n"}' | \ | |
| perl -pe 's/},]/}]/' |
| @states = { | |
| AL: "Alabama", | |
| AK: "Alaska", | |
| AZ: "Arizona", | |
| AR: "Arkansas", | |
| CA: "California", | |
| CO: "Colorado", | |
| CT: "Connecticut", | |
| DE: "Delaware", | |
| FL: "Florida", |
| # RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
| # defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
| module Player | |
| describe MovieList, "with optional description" do | |
| it "is pending example, so that you can write ones quickly" | |
| it "is already working example that we want to suspend from failing temporarily" do | |
| pending("working on another feature that temporarily breaks this one") |