Sunday, December 31, 2006

University of Wisconsin, Madison

From their CS graduate application page:

Is the GRE Computer-Based Test acceptable, or must I take the Paper-Based Test version?

You may take the Computer-Based Test though, because of a recent security breach in the computer-based General Test, the paper-based test is strongly advised.


Security breach? Hmmm.

Saturday, December 30, 2006

Simple Apple Mail Bug

Open Mail.
Minimize the header (press the button on the upper right).
Close the Mail window (press the red button on the upper left).
Open the Mail window (press the Mail icon in the Dock).
Maximize the header (press the button on the upper right).

A mysterious box appears to the left of the search field.

Microsoft's Marketing Acumen

I think Microsoft could use some help in the marketing department.



Hmm, there's something wrong here. Typically, advertisers on tech website are gender neutral. Why does Microsoft want to tell people their pregnant?



In case your HTML is a bit rusty, I'll give you a hint. There's a syntax error near the end.

And, why don't the lines line up with the line numbers in the left gutter? Check out line 30. Smells like a Photoshop.

Friday, December 29, 2006

Samsung

For years, notebook technology has been advancing at an incredible pace. Processors grew in speed exponentially, along with hard drive capacities, and mobile multicore computing made a huge splash with the Core Duo. In contrast, the biggest headline for batteries this year was that the current generation has a tendency to explode.

Samsung is going to give laggard consumer notebook battery technology and needed boost next year with, get this, a battery that will last an entire month!



They also have one that doesn't look like a cordless docking station, but it only lasts a week.

article

Tuesday, December 19, 2006

Day 6

This is the 6th day my home has been without hot water, heat, food, and electricity.

Living in the labs isn't so bad, actually.

Thursday, December 14, 2006

Installing Ruby on Rails the Easy Way

I created this script to install Ruby on Rails on OS X 10.4. It should also work on Ubuntu or other types of Linux as long as you have Bash.

First, have MySQL and gcc installed.

Then, open the Terminal and use this command:
sudo curl http://students.washington.edu/kgc/ror.sh|bash

After a few minutes you should see something like this:
Select which gem to install for your platform
1. mysql 2.7.1 (mswin32)
2. mysql 2.7 (ruby)
3. mysql 2.6 (ruby)
4. mysql 2.5.1 (ruby)
5. Cancel installation

Select the option highest on the list that has (ruby) in the description. In this case it's 2.

Here's what the script installs:
readline 5.2
ruby 1.8.5
rubygems 0.9.0
rails
fastcgi 2.4.0
ruby-fcgi 0.8.7
pcre 6.7
lighttpd 1.4.11
mysql native bindings

If you have any problems, leave a comment and I'll see what I can do.

If this helped you, please Digg it. That way it's more likely to help others as well.

The script is an updated version of the process found here.