<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>Postwork</title>
	<atom:link href="http://www.postwork.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.postwork.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 14:46:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Minify CSS and JS for WordPress with WP-Minify</title>
		<link>http://www.postwork.co.uk/2010/07/minify-css-and-js-for-wordpress-with-wp-minify/</link>
		<comments>http://www.postwork.co.uk/2010/07/minify-css-and-js-for-wordpress-with-wp-minify/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:46:55 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.postwork.co.uk/?p=100</guid>
		<description><![CDATA[I&#8217;ve been using the wp-minify plugin for wordpress to compress and combine all my CSS and Javascript files. It&#8217;s a 2 minute install and worked straight out of the box for me. It even minified the script I use to grab my twitter feed. This is from the README Upload the plugin to your plugins [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using the <a href="http://wordpress.org/extend/plugins/wp-minify/">wp-minify</a> plugin for wordpress to compress and combine all my CSS and Javascript files. It&#8217;s a 2 minute install and worked straight out of the box for me. It even minified the script I use to grab my twitter feed.</p>
<p>This is from the README</p>
<ol>
<li>Upload the plugin to your plugins folder: &#8216;wp-content/plugins/&#8217;</li>
<li>Make sure &#8216;wp-content/plugins/wp-minify/cache&#8217; is writeable by the web server. (try &#8216;chmod 777 wp-content/plugins/wp-minify/cache&#8217;)</li>
<li>Activate the &#8216;WP Minify&#8217; plugin from the Plugins admin panel.</li>
<li>You will probably have broken JavaScript calls, so following the following [tutorial](http://omninoggin.com/wordpress-posts/how-to-troubleshoot-wp-minify/) and exclude problematic JavaScripts from WP Minify.</li>
<li>(optional) For better performance, modify &#8220;$min_cachePath&#8221; in &#8220;wp-content/plugins/wp-minify/min/config.php&#8221; to point to &#8220;/full/path/to/wp-content/plugins/wp-minify/cache&#8221;.</li>
</ol>
<p>Enjoy your faster blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postwork.co.uk/2010/07/minify-css-and-js-for-wordpress-with-wp-minify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch replace the subversion entries file with find, perl and xargs</title>
		<link>http://www.postwork.co.uk/2010/07/batch-replace-subversion-entries-file-with-find-perl-and-xargs/</link>
		<comments>http://www.postwork.co.uk/2010/07/batch-replace-subversion-entries-file-with-find-perl-and-xargs/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 15:31:12 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[cli]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[sysadmin]]></category>
		<guid isPermaLink="false">http://www.postwork.co.uk/?p=80</guid>
		<description><![CDATA[I recently moved all my personal sites from a rather hefty VPS based in Chicago over to a small tiddly little slicehost VPS. So far, so good. It&#8217;s running Fedora 13 which is more closely mirroring some of the servers I run for my day job as well so that is a small bonus (although [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved all my personal sites from a rather hefty <a href="http://serveraxis.com/">VPS based in Chicago</a> over to a small tiddly little <a href="http://www.slicehost.com/">slicehost</a> VPS. So far, so good. It&#8217;s running Fedora 13 which is more closely mirroring some of the servers I run for my <a href="http://www.adcast.tv">day job</a> as well so that is a small bonus (although I would still rather be running CentOS but hey ho).</p>
<p>One of the functions of my VPS is to act as my subversion repository for a mountain of code I look after. Setting up subversion this time, I took the chance to tidy up some of the URL scheme&#8217;s I had in place (or lack thereof) and now everything is fine and dandy. Except, all my old projects on multiple servers dotted around the globe now had the wrong URL&#8217;s in all the <code>.svn/entries</code> files. A combination of Perl, find and xargs to the rescue and this command will do an in-place search and replace of all your <code>entries</code> files in a flash.</p>
<p>Open up your <a href="http://iterm.sourceforge.net/">favourite terminal</a> and navigate to the root of the directory you want to fix and run the following command</p>
<pre>% find . -print | grep entries | xargs perl -pi -e 's/\/old\/URL/new/URL/g'</pre>
<p>You can make backup&#8217;s of the files you are modifying like so</p>
<pre>% find . -print | grep entries | xargs perl -pi.bak -e 's/old\/URL/new/URL/g'</pre>
<p>Enjoy your new subversion server and the hours of free time you just saved.</p>
<p><strong><span style="color: #33cccc;">EDIT</span></strong>:</p>
<p>It&#8217;s been pointed out to me by <a href="http://twitter.com/oletange/">Ole Tange</a> that my use of xargs is dangerous. Strictly speaking it is with those command line switches. It won&#8217;t handle files with special characters or newlines in them properly. (however, in this case I knew I didn&#8217;t have any and was being lazy) Anyway, a more complete version would be as follows.</p>
<pre>find . -name "entries" -print0 | xargs -0 perl -pi -e 's/\/old\/URL/new/URL/g'</pre>
<p>Ole also points to a tool I haven&#8217;t used before &#8211;  <a href="http://www.gnu.org/software/parallel/">GNU Parallel</a> &#8211; which could be a drop in, safe replacement for xargs (if you use it right&#8230;) and has some other nice features too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postwork.co.uk/2010/07/batch-replace-subversion-entries-file-with-find-perl-and-xargs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best, top ten Mac OSX software and apps (for me)</title>
		<link>http://www.postwork.co.uk/2010/07/the-best-top-ten-must-have-mac-osx-software-for-me/</link>
		<comments>http://www.postwork.co.uk/2010/07/the-best-top-ten-must-have-mac-osx-software-for-me/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 07:24:03 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[osx]]></category>
		<category><![CDATA[software]]></category>
		<guid isPermaLink="false">http://www.postwork.co.uk/?p=8</guid>
		<description><![CDATA[The following is a list of paid and free software for the Mac most of which I couldn&#8217;t get by any day without. Enjoy.. Chrome - I&#8217;ve been a Firefox user since 0.9*ish and before. I like Chrome now &#8211; for most things. I still can&#8217;t quite ditch Firebug. (I never really got comfortable with [...]]]></description>
			<content:encoded><![CDATA[<p>The following is a list of paid and free software for the Mac most of which I couldn&#8217;t get by any day without. Enjoy..</p>
<ul>
<li><strong><a href="http://www.google.com/chrome">Chrome</a> </strong>- I&#8217;ve been a Firefox user since 0.9*ish and before. I like Chrome now &#8211; for most things. I still can&#8217;t quite ditch <a href="https://addons.mozilla.org/en-US/firefox/addon/1843/">Firebug</a>. (I never really got comfortable with Safari although it is probably the best looking). <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.mozilla.com/firefox/"><strong>Firefox</strong></a> &#8211; Install <a href="https://addons.mozilla.org/en-US/firefox/addon/1843/">Firebug</a> and <a href="http://adblockplus.org">Adblock Plus</a> and away you go. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.transmissionbt.com/"><strong>Transmission</strong></a> &#8211; I confess to never really using any other mac Bittorrent clients in anger on the mac, but I for sure have this. It works. Well. Install it. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.panic.com/TRANSMIT/"><strong>Transmit</strong></a> &#8211; Well, this app is not free, but I like to support MY industry sometimes. This is one of those times. If you want a free alternative, install <a href="http://filezilla-project.org/">Filezilla</a> (it&#8217;s ok but not great &#8211; I <a href="http://www.adcast.tv">look after some FTP servers</a> for a living and it has some annoying quirks and looks like a dog&#8217;s dinner). This seems to get more press nowadays - <a href="http://cyberduck.ch/">Cyberduck</a>. I prefer Transmit. To be honest, who needs an FTP client now a days (I still do, but I transfer alot of LARGE files). For updating code, version control is your friend (or even <a href="http://torrentfreak.com/facebook-uses-bittorrent-and-they-love-it-100625/">Bittorrent</a>). <span style="color: #ff0000;">Paid
<p></span></li>
<li><a href="http://macromates.com/"><strong>Textmate</strong></a> &#8211; This is the best text (read PHP, Python, Javascript, CSS and HTML) editor for the Mac. It&#8217;s long overdue for an overhaul but it does everything I need and more thanks to some great plugins. How much fancier can a text editor get anyway? <span style="color: #ff0000;">Paid
<p></span></li>
<li><a href="http://www.photoshop.com/"><strong>Photoshop</strong></a> &#8211; There are some other image editing softwares around that are getting a good name now a days - <a href="http://www.pixelmator.com/">Pixelmator</a> comes to mind &#8211; but I have yet to try any of them. I still use Photoshop. I keep trying to migrate to Fireworks but laziness keeps me on Photoshop. <span style="color: #ff0000;">PAID!
<p></span></li>
<li><a href="http://wb.mysql.com/"><strong>MySQL Workbench</strong></a> &#8211; This is the updated GUI from MySQL&#8230; and it is very good. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://iterm.sourceforge.net/"><strong>iTerm</strong></a>- I prefer this to the Terminal.app bundled with Snow Leopard, mainly for the text selection when clicking in the terminal with a mouse &#8211; it works the way rxvt did which I like. The audible and visual bells are nicer too. On the other hand, I don&#8217;t think it handles huge histories so well as Terminal.app (It&#8217;s uses Cocoa, maybe this is why?). <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.pascal.com/software/freeruler/"><strong>Free Ruler</strong></a> &#8211; This is a really old app &#8211; requires Rosetta to run &#8211; but it is free. It is a set of screen callipers so you can measure stuff &#8211; like pixels when building a webpage. Great. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://store.steampowered.com/"><strong>Steam</strong></a> &#8211; I must admit, I am a late comer to Valve games, but they are great. Install it and go download Half Life 2. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.virtualbox.org/"><strong>VirtualBox</strong></a> &#8211; Since Snow Leopard, I have switched form Parallels to VirtualBox. It&#8217;s free (for now, although Sun was recently bought by Oracle&#8230;) and seems to work fine for all I need it for &#8211; which is testing IE* and running <a href="http://billyad2000.co.uk/">XBMC Media Companion</a>. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://adium.im/"><strong>Adium</strong></a> &#8211; Great IM client. Looks gorgeous, hugely customisable, free supports multiple accounts and services. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.tweetdeck.com/"><strong>TweetDeck</strong></a> &#8211; If you like to take it up the twitter, then this is the best client I have seen. The way you can manage users, lists and searches changes the way twitter looks and acts into something slightly interesting. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://colloquy.info/"><strong>Colloquy</strong></a> &#8211; If you still need to hop on IRC, this is the nicest, mac-like client around. Easy on the eyes while doing everything I need it to do (which ain&#8217;t much). <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.rogueamoeba.com/audiohijackpro/"><strong>Audio Hijack Pro</strong></a> &#8211; This paid for program is excellent. It allows you to record whatever is coming across your sound card. It supports multiple formats and qualities (mp3, AAC, Apple Lossless, sadly no FLAC). It also supports tagging and effects although I have never used any as I am usually ripping a Spotify stream or something (of which I have already bought a copy of&#8230;) <span style="color: #ff0000;">Paid
<p></span></li>
<li><a href="http://www.spotify.com"><strong>Spotify</strong></a> &#8211; This lets you find and stream music for free. There is a paid for version as well which gets rid of the ads (audible ads mind you) and other things like offline playlists and supports for mobiles. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://perian.org/"><strong>Perian</strong></a> &#8211; This app allows quicktime to playback a bunch of formats (DIVX, FLV, MKV, etc) it couldn&#8217;t otherwise do &#8211; cos it&#8217;s retarded. Install it and forget about it. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://handbrake.fr/"><strong>Handbrake</strong></a> &#8211; Great video transcoding app. Really simple to use and does a good job with most of the default settings so ripping a DVD for the most part is inserting it and hitting go. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.jthink.net/jaikoz/"><strong>Jaikoz Audio Tagger</strong></a> &#8211; I used this app recently as my music collection had become a tad ungainly after years and years of adding music from a ton of different sources. Tags were all over the place. I tried a number of different apps and they all seemed to do a half assed job of automatically correcting them. I had even tried Jaikoz before with little succes. However as of 3.6 I think it is great. I ripped my whole collection (16000+ songs) in just shy of 2 days and it looks sweet. Buy it if you like to be tidy. <span style="color: #ff0000;">Paid
<p></span></li>
<li><a href="http://code.google.com/p/flukeformac/"><strong>Fluke</strong></a> &#8211; This app makes it possible play FLAC&#8217;s in iTunes. It supports tags, track numbers, artists etc. The bext thing about it is, it doesn&#8217;t alter the original FLAC. Very good. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://tmkk.hp.infoseek.co.jp/xld/index_e.html"><strong>XLD</strong></a> &#8211; This is the deFacto tool for encoding lossless audio on the Mac (E.g. CD&#8217;s). This will spit out perfect FLAC&#8217;s along with log files of what went wrong/right. <span style="color: #00ff00;">Free
<p></span></li>
<li><a href="http://www.unrarx.com/">UnRarX</a> &#8211; Does what it says on the tin. It unrar&#8217;s stuff. The best one for handling large files and multiple files I have found. And it is <span style="color: #00ff00;">Free</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.postwork.co.uk/2010/07/the-best-top-ten-must-have-mac-osx-software-for-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world! (again)</title>
		<link>http://www.postwork.co.uk/2010/06/hello-world/</link>
		<comments>http://www.postwork.co.uk/2010/06/hello-world/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 09:57:30 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[stuff]]></category>
		<guid isPermaLink="false">http://www.postwork.co.uk/?p=1</guid>
		<description><![CDATA[Oh hi! I&#8217;ve installed wordpress again (version 3.0 if you&#8217;re interested) and a lush new theme from mono-lab. I&#8217;m not a prolific blogger so I am not expecting much content here, I just liked the theme &#8211; and hated my old site.]]></description>
			<content:encoded><![CDATA[<p>Oh hi! I&#8217;ve installed wordpress again (version 3.0 if you&#8217;re interested) and a lush new theme from <a title="mono-lab" href="http://www.mono-lab.net">mono-lab</a>. I&#8217;m not a prolific blogger so I am not expecting much content here, I just liked the theme &#8211; and hated my old site.<a href="http://www.mono-lab.net"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.postwork.co.uk/2010/06/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
