Skip to content

{ Monthly Archives } July 2009

Jabref exports to Word 2007 XML

For those of you who don’t know, Jabrefis an open-source, Java based reference manager that allows you to import citations from a number of sources, in a number of formats, and works natively in Bibtex format, the bibliography format of LaTeX. I’ve been using it extensively in my PhD but only recently have I noticed [...]

Changing Subversion working copy version using Windows and Python 3

Made a bit of a boo-boo today… I used the Subclipse plugin regularly within Eclipse to manage my code checkins on my SVN repositories, but I’ve also got TortoiseSVN installed and checked in some modifications to this code using TortoiseSVN, which consequentially upgraded by working copy from Subversion 1.4 to 1.6.
When I attempted to check [...]

Regex to match lines containing multiple strings in Java

I spent a disproportionate amount of time today trying to get my head round some Java regular expression code that would match against certain lines in a log file which had a number of given words in it. Thanks to this entry on Stack Overflow, who posed a similar question, I converted the code from [...]