Author Archive

wide wide world of characters

Tuesday, September 11th, 2007

I was getting a lot of “Wide character in print” errors from a perl script. A little googling led me to this page and the solution. In short, I was printing unicode characters to an I/O layer that did not support unicode, hence the error. Adding a call to binmode solved this.

example:

open(FILEHANDLE, “>$filename”);
binmode(FILEHANDLE, “:utf8”);
printf(FILEHANDLE, “Hello World!n”);

3 walls and a sore back

Monday, September 10th, 2007

I put up some more walls this weekend. This will be a play/storage area and is off the media room.

basement-001.jpg basement-002.jpg basement-003.jpg

xbox info

Sunday, September 2nd, 2007

I was recently given an original xbox in an unknown state of repair. Here are some links I found.

http://xbox.bula.nu/

http://warmcat.com/milksop/index.html

Toy OS

Thursday, July 26th, 2007

Here are some links about writing a simple boot sector program.