Pages
Blogroll
Tags
ASP.NET Brighton Uni C# cctray CruiseControl.NET django eclipse Fedora 10 Fedora 11 gtk IIS IIS7 javascript jquery jqunit latex LaunchPad Linux Mobile Broadband mono MonoDevelop MSSQL MVC NAnt nautilus Network Manager NHibernate nmock nunit php pirate plugin podcast python Service Broker shell script SQL svn tux droid ubuntu UMLDraw unit testing VS.NET Wireless wordpress-
Recent Posts
Meta
Archives
- January 2012 (3)
- May 2011 (2)
- March 2011 (1)
- August 2010 (1)
- April 2010 (1)
- March 2010 (1)
- January 2010 (2)
- October 2009 (1)
- September 2009 (3)
- August 2009 (2)
- July 2009 (4)
- June 2009 (7)
- May 2009 (6)
- April 2009 (7)
- March 2009 (5)
- February 2009 (4)
- December 2008 (4)
- November 2008 (4)
- October 2008 (5)
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
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
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
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
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