Monthly Archives: January 2009

Do Not Taunt Happy Fun Ball 1

I seem to enjoy all things happy fun ball related. It’s a shame NBC won’t allow the Youtube clip to stay online.

Has SaaS Killed Open Source? 10

I’ve been thinking about SaaS (in the form of Spinn3r) and how it relates to Open Source for the past few months and I think I’ve come to some interesting conclusions. I think SaaS might be a strong competitor to Open Source in that it’s cheaper and higher quality in a number of situations. Apparently, [...]

The Death of the Hard Drive 0

Not literally, but you can hear the sounds of some dead and dying hard drives here… I hope to have SSD replace all the HDDs in our cluster so that we never have to hear these sounds again.

SplitLRU Patch in Kernel 2.6.28 – Must Have for MySQL and InnoDB 1

If you’re running MySQL with InnoDB and an in-memory buffer pool, and having paging issues, you probably should upgrade to 2.6.28 ASAP. We’ve been running it for about three months now. We’re still not able to use 100% of the memory without paging – more like 95%. However, this is a vast improvement over only [...]

A Change in Robots.txt 0

Change is in the air. Including the robots.txt at whitehouse.gov: User-agent: * Disallow: /includes/ I wonder if Eric Schmidt had something to do with this… he was slated for a cabinet position but turned it down at the last minute. It’s no secret that Google employees have given a LOT of money to Obama. Spinn3r [...]

A Web Architecture Monitoring iPhone Application 3

We use Nagios and SMS to alert for any anomaly within Spinn3r. This allows us to catch issues VERY early and preempt any potential site outage for our customers. For example, if we notice that are robots are falling 60-120 seconds behind this usually means something bad is happening. In most situation we track it [...]

Btrfs Merged in Linux 2.6.29 0

Looks like Btrfs made it into 2.6.29. Which is pretty sweet because as Btrfs stabilizes it means that a large future port isn’t necessary. What’s Btrfs? It’s a compelling ZFS alternative for Linux designed to work with Linux from day zero (as opposed to being ported from Open Solaris). The most compelling feature for me [...]

What value does this function return? 7

What value does this function return? Java has the same behavior. [sourcecode language='python'] def test(): try: return 0 finally: return 1 [/sourcecode]