Schlock Mercenary, the Online Comic Space Opera

Oh, this is nice….  I nearly didn\’t get it….
There\’s a nice in-joke in Sunday\’s Schlock Mercenary comic…  Namely the last panel\’s quotes:

Now these points of data make a beautiful line.
And we\’re out of Beta!
We\’re releasing on time!

Anyone recognize it?  If so, very good.  All I will say is that I haven\’t listened to much Jonathan Coltran, but I loved his work in Portal.
http://www.schlockmercenary.com/d/20091129.html

Steam has Blobs? Ewww…

Well, I started randomly having Steam report:

Steam.exe (main exception): CMultiFieldBlob(pSerialized): Partial field header at end of record

This happened after windows froze on a lockup during shutdown…  The system froze on Shutdown, and it didn\’t complete shutting down after 10 minutes…. I was forced to force a power off…
To solve this problem:

  1. Exit Steam
  2. Delete your clientregistry.blob file
  3. Reboot your pc
  4. Log back into Steam and let the file recreate itsel

No data is lost, and everything seems to be working fine now…
via Steam problem.. please help.

Hide the Decline? I think hide the mistakes..

I went through the CRU code below, and while I try to stay out of politics, this appears to be a programming issue with Politics embedded in it.
I would hazzard a guess that this started as a cover-up from issues arising from bad programming choices, and unvetted data being used for a while….  And then when someone noticed \”it was too late to fix\” without embarassing people…  Probably the wrong people.
But never the less, if you are curious, take a look… Continue reading

Sneak Peek – ETU: Degrees of Horror

12 to Midnight is presenting a sneak peak at East Texas University: Degrees of Horror. It is a complete setting book for Savage Worlds, and includes plot points, and everything else you need… Except for the basic Savage Worlds core rules…
While this is a sneak peek, and not the complete book, it does have some interesting ideas… Including starting the players off with no wild die… And the plot points appears to be pretty interesting…
Check it out at Sneak Peek – ETU: Degrees of Horror | 12 to Midnight)

HandBrake

HandBrake 0.9.4: Released! or: Not Dead, Just Pining for the Fjords.
Will wonders ever cease?  HandBrake v0.94 is now out, except that the site\’s download section isn\’t working…  (I\’m sure it\’s a planned outage… yeah, right…)

\”Creation comes out of imperfection.\”
There's an old proverb in the video encoding world: \”Speed, size, quality: pick two.\” It means that you always have to make a trade-off between the time it takes to encode a video, the amount of compression used, and the picture quality. Well, this release of HandBrake refuses to compromise. It picks all three.
via HandBrake.

A possible solution for system hang on Safari launch – Mac OS X Hints

Evidently Safari may appear to hang, and cause slow system response if the Safari Cache files have been corrupted.
— Snip —
Recently, any time I tried to run Safari on 10.6 caused all apps and the Finder to hang with the spinning beach ball. Force-quitting Safari stopped the problem, but it would occur again on the next launch. Googling around, I saw many folks reporting similar problems, but no solutions.
The /var/log/system.log file shows something like this when this hang occurs:
Nov 13 09:51:16 bvmbook Safari[394]: INSERT-HANG-DETECTED: Tx time:46.498542, # of Inserts: 0, # of bytes written: 0, Did shrink: YES
Sounds like a database problem. So I looked at which database-type files were opened by Safari, with this in Terminal:
\”

(View the rest of the article at Mac OS X Hints.)

applescript \”Lock Screen\” from another mac on LAN

How can you lock your screen from another Macintosh?
The following applescript will allow you to lock the screen, over the network, from any other macintosh. Just keep in mind, \”Remote Apple Events\” will probably have to be turned on (System Preferences -> Sharing).

property ipNumber : \'Real IP address here\'
property userName : \'real username here\'
property pasword : \'real password entered here\'
set remMachine to \'eppc://\' & userName & \':\' & pasword & \'@\' & ipNumber
tell application \'Finder\' of machine remMachine to do shell script \'/System/Library/CoreServices/Menu Extras/User.menu/Contents/Resources/CGSession -suspend\'\"