Status
screenshots/videos/online info? /cc
Location
Washington, DC
Subscribe to GeoRSS Subscribe to KML


Apple

Deskpose

Published in Apple, Web


Deskbrowse ScreenshotDeskpose is a really useful application for quickly accessing specific webpages. It’s actually a rather full-featured browser, but within *very* easy reach. - in fact.

This is great as another ‘dashboard’ (don’t sue me Apple) for accessing web services, like home automation or television recordings.

Get it with all haste. And it’s open-source. As they put it very well: “Open like the open roads”. Though I don’t think I can take home, rearrange, and redistribute the open roads. hrm…. or can I?


‘Think Different’ is so very relative

Published in Apple, Conference, Observation


Dell, Think DifferentThe old mantra of “Think Different” used to mean one thing. However, it now means something very different in certain venues. I’ve noticed this trend growing steadily as I attend conferences, but I don’t think I’ve heard it as pronounced (at a non-apple specific meeting) as it was at this:

By our best estimates, over 90% of the 550 people at RailsConf 2006 are using Apple laptops.

We decided to reward those willing to take a stand against the norm and compute different.

See the Flickr Stream


Setting up and Testing Rails apps on Mac OS X

Published in Apple, Programming, Rails, Web


I’ve been rapidly prototyping and developing a lot of Ruby on Rails applications. I don’t want to run lots of WebBrick servers, or configure lighty. I’d rather just use apache for local development, which is much quicker and doesn’t involve ports, and explicitly running stand-alone servers.

The instructions below are the quick, and bare-bones steps needed to get a rails app up for development on a Mac OS X machine.

Create your rails application

$ rails ~/Projects/myapp

Edit your apache config file

You need to setup your apache to know how to handle the /myapp URL request. Put the following at the bottom of your httpd.conf file.

/etc/httpd/httpd.conf


FastCgiServer /Users/username/Projects/myapp/public/dispatch.fcgi
    -idle-timeout 120 -initial-env RAILS_ENV=development -processes 1
Alias /myapp/ "/Users/username/Projects/myapp/public/"
Alias /myapp "/Users/username/Projects/myapp/public/"

<directory /Users/username/Projects/myapp/public/>
  Options ExecCGI FollowSymLinks
  AllowOverride all
  Order allow, deny
  Allow from all
</directory>

Restart Apache

After you’ve edited the file, you need to restart apache:
$ sudo apachectl graceful

Set the rails base address

Now you need to let rails know what the base address is for the URL’s:
~/Projects/myapp/public/.htaccess

RewriteBase /myapp

Test that it works

Navigate your browser to http://localhost/myapp, and you should see the happy Welcome aboard


DashSaver v1.2 released – Universal Binary

Published in Apple, Cocoa, Dashboard


I recently recompiled and released DashSaver as a Universal Binary. It now will run fine on Intel and PowerPC computers.

Go give it a download. There are still two major feature requests:

  1. Secure screensaver – when ‘Ask for password on wake’ is turned on, it will hide the dashboard
  2. Dual Screens – the semi-transparent, colored background under DashSaver won’t show up on the second monitor

You can also catch a great audio review of DashSaver over at the MacReview Cast (mp3, it’s at the beginning, the first reviewed freeware app)

Expect more features coming up soon.


KDE to run Dashboard Widgets

Published in Apple, Dashboard, Linux


KDE, a desktop environment for Linux will support the HTML Canvas element in the next release (KDE 4). What does this mean to you, the user? The KDE Team’s goal is to run Apple Dashboard Widgets on Linux!

Widgets themselves are nothing special. Having developed one and dug through, modified, and working on more, they are just a collection of HTML and Javascript that happens to show up very nicely in a big dynamic webpage called Dashboard

This will be nice since currently only KonfabulatorYahoo! Widgets are cross-platform.