B!? Links

Links to interesting stuff, elsewhere on the internet RSS

Archives

Labels

Thu, Dec 9
permalink
Thu, Dec 2
permalink
Thu, Dec 2
permalink
Fri, Nov 26
permalink
Thu, Nov 11
permalink
Tue, Aug 10
permalink

We decided to add another perspective to this discussion – we checked out the impact of the Death Grip on the level of radiation a user is exposed to. We checked this on several devices in parallel – the iPhone 4.0, the BlackBerry 9700, and the Android Nexus One.

Thu, Aug 5
permalink

GrandPerspective is a small utility application for Mac OS X that graphically shows the disk usage within a file system. It can help you to manage your disk, as you can easily spot which files and folders take up the most space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to the file’s size. Files in the same folder appear together, but their placement is otherwise arbitrary.

Thu, Aug 5
permalink

Inspired by Jef Raskin, our zoomable user interface shows you all the stuff on your computer on a single surface. Using zoom and pan to view, arrange and open documents feels so right.

Thu, Jul 22
permalink
Wed, Dec 30
permalink
Mon, Aug 10
permalink
Mon, Aug 10
permalink

“I have 2 problems with this

  1. I have to learn and start using this new language to talk about tests
  2. I have to learn a whole new syntax to write tests”

    #RSpec describe Account, “ when first created” do before do @account = Account.new end it “should have a balance of $0” do @account.balance.should eql(Money.new(0, :dollars)) end after do @account = nil end end # Test::Unit class AccountTest < Test::Unit::TestCase def setup @account = Account.new end def test_should_have_a_balance_of_0_dollars assert @account.balance == Money.new(0, :dollars) end def teardown @account = nil end end

RSpec == Yoda-speak?

Mon, Aug 10
permalink

We live in a day and age where many people still believe that our world is mostly deterministic, and that through action we can and will fix all of our problems, regardless of whether or not a solution is really possible.

Mon, Aug 10
permalink
Mon, Aug 10
permalink

“What’s the best Rails testing framework? The one that makes your testing life most enjoyable, of course. For me, this has been RSpec, but I’m beginning to prefer Shoulda.”

Mon, Aug 10
permalink
Mon, Aug 10
permalink

“ThoughtWorks started using Ruby for production projects in 2006, from then till the end of 2008 we had done 41 ruby projects.”

Tue, Aug 4
permalink
Mon, Aug 3
permalink
Sun, Aug 2
permalink

A while ago I was discussing some software architectural options with a fellow developer and we ran into a little hitch with our conversation. Put quite simply, the word ‘dynamic’ has a couple of possible meanings. He was using it one way, and I was off on a complete different definition.