The last time it broke (about 6 months ago), it cost me $200 bucks to fix.
Luckily I have a spare HP1115 inkjet, but... damn!
Laser printers shouldn't break.
Anyway, went to buy an inkjet cartridge for the first time lastnight (hey - Liz was feeding candy to the rugrats that came to the door). Holy Geebus Batman! $120 for a color and a black cartridge?
On a different note - there were way too many teenagers at the door lastnight for the candy feeding frenzy. I hate those kids. They just stand there with bags open. no "trick or treat" - just annoyed looks of "give me candy faster you freak".
arrgh.... damn humanity. damn it all....
The annual pub crawl is tomorrow. Here's the schedule for those that want to stop by and have a dozen pints. :)
For whatever reason, there doesn't seem to be a quickstart guide to getting CVS up and running with ProjectBuilder.
Apple's developer site has information on how to get CVS working from command line, but they miss out some ProjectBuilder details - mainly forgetting to set the cvswrappers file so that binary checkins on images and InterfaceBuilder NIB files get checked in properly.
So here's my little howto guide - I'll assume that you already have a simple project that is already created, but not checked into CVS yet.
First - you'll need to add your user to the 'wheel' user group.
For that- you'll need to play with NetInfo. Remember - OSX is more NextStep than BSD so the /etc/groups file won't do the trick for you.
You can find a description of how to navigate through NetInfo here.
The only real trick is to use the "Directory/Insert Value" menu to add a user to a group.
Next - setting up CVS as detailed in Apple's developer guide for CVS.
You'll need to do everything up to but not including "Creating your first project".
Before you go and checkin your project, you'll need to modify the cvswrappers file. Basically this tells CVS how to handle binary files - if you don't do this CVS will mishandle your NIB files as text data and your project will get pooched.
CocoaDev again has a snippet on settting up your cvswrappers file. You can find it here.
Just checkout CVSROOT, go into CVSROOT and copy the default cvswrappers file from /Developer/Tools/cvswrappers over the one in the checked out CVSROOT directory. Checkin with:
> cvs ci cvswrappers
Now you're ready to checkin your project.
Go back to the Apple CVS docs and import your project into CVS as described in "Creating Your First Project". It's important that you import your project from within your project directory!
After your project gets checked in, you'll need to check it out once, so go to the parent directory and checkout your project.