Saturday, June 18, 2011, 09:47 PM
Misc
Bazaar has built-in support for working with SVN. You can do things like:
bzr branch https://path.to/svn/repo localfolderand you can use it as a local bzr branch, then
bzr push to push the changes to svn as a single commit, and
bzr pull to merge upstream changes into your local branch.
[ add comment ] ( 68 views ) permalink
Monday, May 16, 2011, 09:49 AM
Misc
The "-S" parameter to du lists each folders total on it's own, rather then including subfolders. Very useful for finding which specific folder has all the files in it.
[ add comment ] ( 49 views ) permalink
The 9.0.1 Plesk packages for Debian 4.0 will install and work on Debian 5.0, EXCEPT for psa-proftpd (OpenSSL library version issue). The psa-proftpd package from 9.2.3 (first version with official Debian 5.0 support) will install correctly into Plesk 9.0.1 and appears to work correctly.
[ add comment ] ( 58 views ) permalink
Friday, February 11, 2011, 04:41 PM
Misc
I used these instructions to make
WGA play nice with my TinyXP VM install. I used the "copy-paste into registry file" method described. I also blocked 65.55.28.12 at my network firewall, which may or may not have been required for this to work.
[ add comment ] ( 120 views ) permalink
Python, Doxygen and Graphviz
Wednesday, January 5, 2011, 07:41 PM
Misc
Wrote a Python utility to parse Doxygen XML output and produce class relationships, using the same data as CALL_GRAPH. This produces a map of "which classes call functions on other classes", versus what Doxygen produces is "this function calls these other functions". Still needs work, currently it includes more then just classes, and needs to handle global functions correctly.
[ add comment ] ( 57 views ) permalink