Archive for the ‘Software’ Category

Chrome Update Server not available (error: 11)

How to fix the Google Chrome “update server not available (error: 11)” problem.

sudo rm -r /Library/Google
sudo rm -r ~/Library/Google

I suppose it’s a versioning problem, there are still old config (plist) files present on the system. By removing these, and others, Chrome can reconnect to the proper server again.
Note: I’m just using the Chrome product of [...]

Boost on Snow Leopard (x86_64) howto

To install Boost on Snow Leopard using a package manager, like Fink, makes life very easy. Problem when ‘making’ a Cpp or C file using the G++ (gcc), shipped with Xcode (3.2.4), it creates binaries using the x86_64 architecture, and boost of Fink is not. The default installation and packages of Fink are 32-bit or [...]

XML parser C# (CutFish) project

I’ve launched my own opensource XML parsing project for Windows (.net 3.5) called: CutFish. It’s written in C# (Sharp C), opensource and available at SourceForge.net.
The Developer assigns the full XML file path, and the parser encapsulates Elements, and Attributes inside wrapping objects. These wrapping Objects can be iterated through in two directions: up and down. This [...]