Look what I found!! This is an archive of what my site/life was about 4-5 years ago. For the modern JobyBednar.com, try here.
JobyBednar.com
We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare.
Now, thanks to the Internet, we know that is not true.
- Robert Wilensky

Ruby Development
/root
  ./apple I
  ./articles
  ./code
  ./decode
  ./hobbies
  ./mac
  ./pics
  ./ruby
  ./www



 Use OpenOffice.org
./Objective-C/Append File
NSString* path = @"/tmp/log"; 
NSFileHandle* fh = [NSFileHandle fileHandleForUpdatingAtPath: path]; 
[fh seekToEndOfFile]; 
[fh writeData: [myString dataUsingEncoding: NSUTF8StringEncoding]]; 
[fh synchronizeFile]; 

// fh will be closed when released, when the autorelease pool is drained.