Thursday, August 20, 2009

Nokia E71x Maps Howto

this does not require your phone to be unlocked

1. goto nokia.mobi/maps in your phone's browser, download and install the software for 5700 xpress music. start the maps program. (version 1.0)

2. go back to nokia.mobi/maps in your phone's browser, download and install the software for e71. start the maps program. (version 2.0)

3. use the maps updater program from nokia's site to go to version 3.0

4. ...

5. profit.

Sunday, July 05, 2009

Moblin Haiku

Moblin boots with haste
Moblin is buggy as hell
Moblin crashes oft

Sunday, May 10, 2009

Friday, March 13, 2009

Inside the mac os x kernel

Have you ever said that os x has a bsd based kernel or a microkernel? Well you're wrong; you should watch this video.

Tuesday, March 10, 2009

Watchmen Review

~3 hours
~20 minutes of big blue penis
2 fantastic breasts from Harold and Kumar

Overall it's good movie, which will provide future pursuers of higher education many hours of drinking fun.

Thursday, February 26, 2009

Sunday, January 25, 2009

DTV Flow Chart

The consumerist has made an image that perfectly explains what people should do for the DTV transition.




http://consumerist.com/5116811/a-very-simple-flowchart-explaining-the-digital-tv-transition

Thursday, January 01, 2009

Vista fixes 08

I finally upgraded to vista a few weeks back and here are some helpful things I found.

By default vista didn't want to accept that my monitor could do 1280x1024@60Hz and some googling led to this post on the hardforums, unfortunately the fix is specific to nvidia.

I also had to move my router downstairs (cheapest way to get brother's xbox online) and use a wireless adapter on my main computer. needless to say this led to some serious lag spikes in videogames. The problem has been around since xp and the solution was to disable the wireless zeroconf service; the vista service is called wlan autoconfig which works. I also noticed people mentioning a program called vista anti lag written by some german guy whose site is down, I did find it on some german freeware site I never heard of though and it seems to work well. To get the program to work you have to disable your wireless card, then start the program, and then enable the wireless card.

On a completely different note I was watching Necessary Roughness on the tv and I noticed something funny. In the movie the football team of the, at the time fictional, Texas state plays their first game against Southwest; which through the hilarious vagaries of time is now known as Texas State.

Monday, November 24, 2008

Why UH was not invited to the BigXII

Every time John McClain mentions Baylor on his blog there are scores of UH fans who ignorantly claim that UH should have been in the Big12 instead of Baylor. Allow me to quickly explain why UH was not invited to the Big12.

football Baylor Houston
19906-4-110-1
19918-44-7
19927-54-7
1993 5-6 1-9-1
1994 7-5 1-10
1995 7-4 2-9
total40-28-122-43-1

Friday, August 22, 2008

Algorithm For A Modern Artist

I realize that on a certain level the point of art is to elicit emotions. There is a line, however, and this jerk crossed it. I am no great student of art or art history, but from casual observation most art seems to follow certain patterns. Art seems to be almost structured, and I believe I have derived the algorithm which will produce what is today considered art.

#include <iostream>
#include <fstream>
using namespace std;

int main () {
char c, str[256];
ifstream is;

cout << "Enter the name of an existing controversial topic: ";
cin.get (str,256);

is.open (str); // open controversy

while (is.good()) // loop while profit from controversy is possible
{
c = is.get(); // get money from controversy
cout << c;
}

is.close(); // controversy dropped
return 0;
}