Monthly Archives: August 2009

I want to join any class action against Nvidia

If such a thing happens, I want to be a participant. My Dell XPS 1530m which shipped with the faulty part, a G84 based 8400GS-M, is starting to show signs of failure. Dell is simply offering to trade me another broken part under warranty, as all G84 GPUs are faulty by design. I want to [...]

Wachovia dumps Opera support, I dump Wachovia

With Opera 10 just released days ago, I must say you’re severely incompetent if you can’t support a modern Internet browser, but support AOL’s variation of a Web browser by name. Actually, the former is true irrespective of the latter. Starting October 7, 2009, you will not be able to access Wachovia Online Services unless [...]

decorators for ActiveRecord model attributes

Something I’ve always felt was missing from ActiveRecord is the ability to abstract out presentation logic for attributes. For example, you may want to be able to get at an attribute called full_name, but store the constituent parts, first_name and last_name, in your relational database. Thankfully, I am not alone. There’s a ticket on this [...]

Amarok 1.4 for Jaunty

If you can’t stand the new Amarok 2, maybe because it crashes constantly, no longer seems to understand m3u files from gnump3d, or hangs for an inordinate length of time when expanding the search results list from shoutcast, the functional 1.4 release is available as a package now. A big thank you to Bogdan Butnaru [...]

Obama sold us out

What else is new. In other news, today is Thursday: Pressed by industry lobbyists, White House officials on Wednesday assured drug makers that the administration stood by a behind-the-scenes deal to block any Congressional effort to extract cost savings from them beyond an agreed-upon $80 billion. If legislation passes, we’ll see what happens to that [...]

Rails serving an alternate public_path

The introduction of the new Rails.public_path setter seems useful only for page caching particulars. If you want to get Mongrel via script/server to serve up static content from an alternate root on request, you actually need to monkey patch your way into the Rack stuff, specifically Rails::Rack::Static. module Rails module Rack class Static def initialize(app) [...]