Monthly Archives: March 2009

Get PDF Word Count In Linux

Quick easy way to get the word count of a pdf. # pdfwc.sh # usage ./pdfwc.sh filename.pdf # TMPFILE=___tmpfile.tmp pdftotext $1 $TMPFILE wc $TMPFILE -w rm $TMPFILE

Posted in Off Topic | Tagged , | 2 Comments

Latex Coloured Code Listings

Easy way to include code in your latex document and have the syntax coloured correctly \usepackage{color} \usepackage{listings} \lstset{ tabsize=4, language=matlab, basicstyle=\scriptsize, %upquote=true, aboveskip={1.5\baselineskip}, columns=fixed, showstringspaces=false, extendedchars=true, breaklines=true, prebreak = \raisebox{0ex}[0ex][0ex]{\ensuremath{\hookleftarrow}}, frame=single, showtabs=false, showspaces=false, showstringspaces=false, identifierstyle=\ttfamily, keywordstyle=\color[rgb]{0,0,1}, commentstyle=\color[rgb]{0.133,0.545,0.133}, stringstyle=\color[rgb]{0.627,0.126,0.941}, language=Java } … Continue reading

Posted in Off Topic | Tagged | 2 Comments

Cruise Control Tray For Linux Update

Basic functionality has been implemented with the ability to add project to monitor and receive notifications of the build as and when they occur. At the moment there is not the ability to delete a project that is being monitor … Continue reading

Posted in Off Topic | Tagged , , , , | Leave a comment

Cruise Control.NET Tray Tool on linux

I started looking at creating a port of the cctray tool for CruiseControl.NET but after looking at how it was implemented i decided that it might be easier, and more fun, to implement one myself using mono and GTK#. At … Continue reading

Posted in Off Topic | Tagged , , , , , , | 2 Comments

Removing Eclipse Secure Storage Password

After trying to setup eclipse to use the uni’s proxy settings eclipse set a password everytime a booted up. My own fault for not reading what I was doing but that not the point. Anyway a quick way to remove … Continue reading

Posted in Off Topic | Tagged | 14 Comments