<?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/"
	>

<channel>
	<title>Tech Blog - Jonathan Holloway</title>
	<atom:link href="http://blog.oogly.co.uk/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.oogly.co.uk</link>
	<description>www.oogly.co.uk</description>
	<pubDate>Wed, 10 Mar 2010 06:11:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing And Running Fabric On Windows</title>
		<link>http://blog.oogly.co.uk/builddeploy/installing-and-running-fabric-on-windows</link>
		<comments>http://blog.oogly.co.uk/builddeploy/installing-and-running-fabric-on-windows#comments</comments>
		<pubDate>Thu, 17 Dec 2009 04:18:26 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Build and Deployment]]></category>

		<category><![CDATA[fabric]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[pycrypto]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[pywin32]]></category>

		<category><![CDATA[win32api]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=271</guid>
		<description><![CDATA[I recently had to setup Fabric (http://docs.fabfile.org/0.9.0/) for doing deployment from my Windows machine at home.
Setting it up under Linux is very very easy but for some reasons there are a number of
issues you have to overcome when installing on Windows.  I followed this page to start:
http://docs.fabfile.org/0.9.0/installation.html
First up a standard Python install (I used [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to setup Fabric (<a href="http://docs.fabfile.org/0.9.0/">http://docs.fabfile.org/0.9.0/</a>) for doing deployment from my Windows machine at home.<br />
Setting it up under Linux is very very easy but for some reasons there are a number of<br />
issues you have to overcome when installing on Windows.  I followed this page to start:</p>
<p><a href="http://docs.fabfile.org/0.9.0/installation.html">http://docs.fabfile.org/0.9.0/installation.html</a></p>
<p>First up a standard Python install (I used 2.6.2) and setup tools 0.6c11:</p>
<p><a href="http://pypi.python.org/pypi/setuptools">http://pypi.python.org/pypi/setuptools</a></p>
<p>and create a simple fabric script (fabfile.py)</p>
<p><code>from fabric.api import local, env, put<br />
env.hosts = ["elephant@babar.net:40"]<br />
env.show = ['debug']<br />
def deploy():<br />
	print &#8220;Deploying&#8230;&#8221;;<br />
	put(&#8221;fabtest.txt&#8221;, &#8220;/tmp/fabtest.txt&#8221;);<br />
	print &#8220;All Done&#8230;&#8221;;</code></p>
<p>From there:</p>
<p><code>easy_install fabric</code></p>
<p>will result in:</p>
<p><code>...<br />
Installed f:\python26\lib\site-packages\fabric-0.9.0-py2.6.egg<br />
Processing dependencies for fabric<br />
Searching for pycrypto>=1.9<br />
Reading http://pypi.python.org/simple/pycrypto/<br />
Reading http://pycrypto.sourceforge.net<br />
Reading http://www.amk.ca/python/code/crypto<br />
Best match: pycrypto 2.0.1<br />
Downloading http://www.amk.ca/files/python/crypto/pycrypto-2.0.1.tar.gz<br />
Processing pycrypto-2.0.1.tar.gz<br />
Running pycrypto-2.0.1\setup.py -q bdist_egg --dist-dir f:\docume~1\admini~1\loc<br />
als~1\temp\easy_install-clrpu1\pycrypto-2.0.1\egg-dist-tmp-1wszmf<br />
error: Setup script exited with error: Unable to find vcvarsall.bat</code></p>
<p>You can solve this in a number of ways, the easiest of which is to install the binary for pycrypto manually from here:</p>
<p><a href="http://www.voidspace.org.uk/downloads/pycrypto-2.0.1.win32-py2.6.exe">http://www.voidspace.org.uk/downloads/pycrypto-2.0.1.win32-py2.6.exe</a></p>
<p>Next, try running fabric using: fab -f fabfile.py deploy.  This results in:</p>
<p><code>Traceback (most recent call last):<br />
  File "F:\Python26\Scripts\fab-script.py", line 8, in <module><br />
    load_entry_point(&#8217;fabric==0.9.0&#8242;, &#8216;console_scripts&#8217;, &#8216;fab&#8217;)()<br />
  File &#8220;f:\python26\lib\site-packages\setuptools-0.6c9-py2.6.egg\pkg_resources.p<br />
y&#8221;, line 277, in load_entry_point<br />
  File &#8220;f:\python26\lib\site-packages\setuptools-0.6c9-py2.6.egg\pkg_resources.p<br />
y&#8221;, line 2180, in load_entry_point<br />
  File &#8220;f:\python26\lib\site-packages\setuptools-0.6c9-py2.6.egg\pkg_resources.p<br />
y&#8221;, line 1913, in load<br />
  File &#8220;build\bdist.win32\egg\fabric\main.py&#8221;, line 17, in <module><br />
  File &#8220;build\bdist.win32\egg\fabric\api.py&#8221;, line 9, in <module><br />
  File &#8220;build\bdist.win32\egg\fabric\context_managers.py&#8221;, line 12, in <module><br />
  File &#8220;build\bdist.win32\egg\fabric\state.py&#8221;, line 125, in <module><br />
  File &#8220;build\bdist.win32\egg\fabric\state.py&#8221;, line 74, in _get_system_username</p>
<p>ImportError: No module named win32api</code></p>
<p>Install the pywin32 extensions from here:</p>
<p><a href="http://sourceforge.net/projects/pywin32/files/">http://sourceforge.net/projects/pywin32/files/</a></p>
<p>and finally run fabric again (fab -f fabfile.py deploy), the script should run fine this time&#8230;</p>
<p><code>All Done...<br />
Done.<br />
Disconnecting from babar.net:40... done.</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/builddeploy/installing-and-running-fabric-on-windows/feed</wfw:commentRss>
		</item>
		<item>
		<title>MySQLdb - EnvironmentError: mysql_config not found</title>
		<link>http://blog.oogly.co.uk/java/mysqldb-environmenterror-mysql_config-not-found</link>
		<comments>http://blog.oogly.co.uk/java/mysqldb-environmenterror-mysql_config-not-found#comments</comments>
		<pubDate>Tue, 21 Jul 2009 06:00:36 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[libmysqlclient]]></category>

		<category><![CDATA[mysql debian]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=236</guid>
		<description><![CDATA[Had a bit of a snag installing MySQLdb tonight, which is required when installing Django.  I ran into the following error when trying to install the MySQLdb egg under Debian Lenny.
EnvironmentError: mysql_config not found
When trying to install MySQL-python
It was fixed by installing the libmysqlclient15-dev package and the installing the egg again:

sudo apt-get install libmysqlclient15-dev
easy_install MySQL_python-1.2.3c1-py2.5-linux-i686.egg

Package [...]]]></description>
			<content:encoded><![CDATA[<p>Had a bit of a snag installing MySQLdb tonight, which is required when installing Django.  I ran into the following error when trying to install the MySQLdb egg under Debian Lenny.</p>
<p><code>EnvironmentError: mysql_config not found<br />
When trying to install MySQL-python</code><br />
It was fixed by installing the <strong>libmysqlclient15-dev package</strong> and the installing the egg again:</p>
<p><code><br />
sudo apt-get install libmysqlclient15-dev<br />
easy_install MySQL_python-1.2.3c1-py2.5-linux-i686.egg<br />
</code></p>
<p>Package details here:</p>
<p><a href="http://packages.debian.org/search?searchon=contents&amp;keywords=mysql_config&amp;mode=path&amp;suite=stable&amp;arch=any">http://packages.debian.org/search?searchon=contents&amp;keywords=mysql_config&amp;mode=path&amp;suite=stable&amp;arch=any</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/java/mysqldb-environmenterror-mysql_config-not-found/feed</wfw:commentRss>
		</item>
		<item>
		<title>Oogly - &#8220;A Brand of Interest&#8221;</title>
		<link>http://blog.oogly.co.uk/design/oogly-a-brand-of-interest</link>
		<comments>http://blog.oogly.co.uk/design/oogly-a-brand-of-interest#comments</comments>
		<pubDate>Tue, 07 Apr 2009 17:05:15 +0000</pubDate>
		<dc:creator>Caroline</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Logo Design]]></category>

		<category><![CDATA[Oogly]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=224</guid>
		<description><![CDATA[It is always exciting to have your work noticed, and respected, by other designers&#8230;so today Oogly are happy to say we are featured on David Pache&#8217;s article &#8220;100 Brands of Interest&#8220;.

As David comments, &#8220;It can be the easiest thing to create a logo for a client but when it comes to assessing what style of [...]]]></description>
			<content:encoded><![CDATA[<p>It is always exciting to have your work noticed, and respected, by other designers&#8230;so today <a href="ww.oogly.co.uk">Oogly</a> are happy to say we are featured on David Pache&#8217;s article &#8220;<b>100 Brands of Interest</b>&#8220;.</p>
<p><img src="http://oogly.co.uk/ooglyImages/oogly_tree.gif"/></p>
<p>As David comments, &#8220;It can be the easiest thing to create a logo for a client but when it comes to assessing what style of identity can best represent yourself or your business, this is a different matter altogether. It is tempting to use your own brand as a showcase of all your best techniques and ideas but this must be balanced with modesty and professionalism to gain the correct tone for your business image.&#8221; </p>
<p>Check out the full article (including our logo) here: <a href="http://www.dache.ch/dache/comments/100_Brands_of_Interest_II/">http://www.dache.ch/dache/comments/100_Brands_of_Interest_II/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/design/oogly-a-brand-of-interest/feed</wfw:commentRss>
		</item>
		<item>
		<title>Pastebin - CakePHP + SyntaxHighlighter + Eclipse Plugin</title>
		<link>http://blog.oogly.co.uk/java/pastebin-cakephp-syntaxhighlighter-eclipse-plugin</link>
		<comments>http://blog.oogly.co.uk/java/pastebin-cakephp-syntaxhighlighter-eclipse-plugin#comments</comments>
		<pubDate>Tue, 10 Mar 2009 05:40:57 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[cakephp]]></category>

		<category><![CDATA[eclipse]]></category>

		<category><![CDATA[eclipse feature]]></category>

		<category><![CDATA[paste bin]]></category>

		<category><![CDATA[pastebin]]></category>

		<category><![CDATA[pbin]]></category>

		<category><![CDATA[syntaxhighlighter]]></category>

		<category><![CDATA[update site]]></category>

		<guid isPermaLink="false">http://tech.oogly.co.uk/?p=41</guid>
		<description><![CDATA[I’ve revamped the pastebin website (http://pbin.oogly.co.uk) - which is based on CakePHP (a model view controller PHP framework) and SyntaxHighlighter (http://alexgorbatchev.com/wiki/SyntaxHighlighter).  I also created an Eclipse plugin to interface with the website.

A pastebin allows you to share a patch/code selection/text selection with other people without having to resort to email/instant messenger.  You can either interact [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve revamped the pastebin website<strong><a href="http://pbin.oogly.co.uk"> (http://pbin.oogly.co.uk</a></strong>) - which is based on <a href="http://cakephp.org/"><strong>CakePHP</strong> </a>(a model view controller PHP framework) and SyntaxHighlighter (<a href="http://alexgorbatchev.com/wiki/SyntaxHighlighter"><strong>http://alexgorbatchev.com/wiki/SyntaxHighlighter</strong></a>).  I also created an Eclipse plugin to interface with the website.</p>
<p><img class="alignnone size-full wp-image-221" title="pbin-sel5" src="http://blog.oogly.co.uk/wp-content/uploads/2009/03/pbin-sel5.png" alt="pbin-sel5" width="614" height="426" /></p>
<p>A pastebin allows you to share a patch/code selection/text selection with other people without having to resort to email/instant messenger.  You can either interact with pastebin via the URL or above or install the Eclipse plugin.  If you&#8217;ve installed the Eclispe plugin you then right click on the code/text you want to share and select <strong>Pastebin-&gt;Create Pastebin </strong>from the menu.  More instructions and screenshots are available on the website.</p>
<p>The Eclipse architecture is a little strange to start with, the support it provides via the extensions framework is easy enough to understand, although I&#8217;m a little confused now that they&#8217;ve announced declarative services and their bizarre use of OSGi.  The plugin uses the <strong>org.eclipse.ui.popupmenus</strong> extension.  Dependency wise, I used the Eclipse UI and runtime along with the JFace Textfield components to provide the URL for the created pastebin.  The main plugin itself is made up of an Activator class along with a NewPastebinAction class which implements <strong>IObjectActionDelegate</strong> which provides a run(<strong>IAction</strong> action) method.  This obtains the current selection and checks to see whether it is a TextSelection (editor content selection) or a <strong>StructuredSelection</strong> (a package explorer/navigator file selection).</p>
<p>The selection is then wrapped in a simple domain object and passed to a web client facade that uses the <strong>Apache HttpClient </strong>(<a href="http://hc.apache.org/httpclient-3.x/">http://hc.apache.org/httpclient-3.x/</a>) framework to provide connectivity with the pastebin website.</p>
<p>Finally, it uses a custom <strong>OkInputDialog</strong> to present the pastebin URL back to the user.</p>
<p>It’s not perfect at present (I need to unpick the dependency on the JDT plugin for the StructuredSelection), but it serves as a first attempt at creating a Eclipse plugin and understanding the internals of the Eclipse API.   Also, it unfortunately does not autodetect the file type and convert it into the internal pastebin format.</p>
<p>Packaging the plugin was very straightforward.  It involved using the File-&gt;Export function provided by Eclipse to package it into an appropriate JAR file.  Alternatively, you can publish an update site, I did this by creating a new feature project (and adding the plugin to it) then exporting the <a href="http://pbin.oogly.co.uk/update">the update site</a> using Eclipse.</p>
<p>I&#8217;m going to take the pastebin as a starting point for more collaborative features.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/java/pastebin-cakephp-syntaxhighlighter-eclipse-plugin/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress Contact Forms</title>
		<link>http://blog.oogly.co.uk/wordpress/contact-form</link>
		<comments>http://blog.oogly.co.uk/wordpress/contact-form#comments</comments>
		<pubDate>Wed, 18 Feb 2009 08:44:37 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[CAPTCHA]]></category>

		<category><![CDATA[contact form 7]]></category>

		<category><![CDATA[improved-include-page]]></category>

		<category><![CDATA[include page]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[quiz]]></category>

		<category><![CDATA[subscribe]]></category>

		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=200</guid>
		<description><![CDATA[Generating a contact form for a website can be a rather tedious job.  To make things easier there are a number of Wordpress plugins available, one in particular which is rather good is Contact Form 7.  This allows you to create a form and generate a number of tags for display on that [...]]]></description>
			<content:encoded><![CDATA[<p>Generating a contact form for a website can be a rather tedious job.  To make things easier there are a number of Wordpress plugins available, one in particular which is rather good is <a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a>.  This allows you to create a form and generate a number of tags for display on that form, e.g. email address, name, comments&#8230;</p>
<p><img class="alignnone size-full wp-image-204" title="contactform71" src="http://blog.oogly.co.uk/wp-content/uploads/2009/02/contactform71.png" alt="contactform71" width="600" height="399" /></p>
<p>You can then include this on your Wordpress site via a new post or page using the following syntax:</p>
<p><code>[contact-form 1 "ContactForm"]</code></p>
<p>It supports CAPTCHA, simple quizzes, various different components for generating surveys, contact forms etc&#8230;  It also supports localization of messages so that you can customize the error messages and text displayed.</p>
<p>One issue I did find with it however was that I wanted to embed the contact form in a template.  At first this doesn&#8217;t seem to be possible unless you use another plugin.  I used <a href="http://wordpress.org/extend/plugins/improved-include-page/installation/">Improved include page</a> which allows you to include a wordpress page in a template.  By creating a new page with a contact form embedded it&#8217;s very easy to include this page in your template:</p>
<p>And you have a contact form which can be embedded in the footer of your page or wherever you choose to put it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/wordpress/contact-form/feed</wfw:commentRss>
		</item>
		<item>
		<title>Terminator Terminal</title>
		<link>http://blog.oogly.co.uk/sysadmin/terminator-terminal</link>
		<comments>http://blog.oogly.co.uk/sysadmin/terminator-terminal#comments</comments>
		<pubDate>Tue, 10 Feb 2009 16:03:57 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Terminal]]></category>

		<category><![CDATA[terminator]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=181</guid>
		<description><![CDATA[I&#8217;ve been using a terminal called Terminator for the last few months instead of the terminal that&#8217;s bundled with Ubuntu.  The main reason for this was to take advantage of easy split window creation to enable multiple terminals on the same screen.  This is provided along with tabbed windows, but there also a number of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using a terminal called <a title="Terminator" href="https://launchpad.net/terminator/+download">Terminator</a> for the last few months instead of the terminal that&#8217;s bundled with Ubuntu.  The main reason for this was to take advantage of easy split window creation to enable multiple terminals on the same screen.  This is provided along with tabbed windows, but there also a number of other notable features.  I struggled to find a set of shortcut keys for Terminator initially, so there are a few below along with some explanation of the feature:</p>
<p><code>CTRL+SHIFT+e</code> - Split terminal horizontally<br />
<code>CTRL+SHIFT+o </code>- Split terminal vertically<br />
<code>CTRL+SHIFT+T</code> - Open a new tab<br />
<code>CTRL+Tab</code> - Switch terminals<br />
<code>CTRL+SHIFT+w</code> - Close currently selected terminal window<br />
<code>CTRL+SHIFT+q</code> - Close all terminals<br />
<code>CTRL+SHIFT+z</code> - Maximize currently selected terminal window<br />
<code>CTRL+SHIFT+Left Arrow</code> - Move split (dragbar) to the left<br />
<code>CTRL+SHIFT+Right Arrow</code> - Move split (dragbar) to the right<br />
<code>CTRL+SHIFT+Up Arrow</code> - Move split (dragbar) up<br />
<code>CTRL+SHIFT+Down Arrow</code> - Move split (dragbar) down<br />
<code>CTRL+SHIFT++</code> - Increase text size in the terminal<br />
<code>CTRL+SHIFT+-</code> - Decrease text size in the terminal<br />
<code>CTRL+SHIFT+0</code> - Restore text size in the terminal<br />
<code>CTRL+Right Click</code> - moves a window, release the CTRL key to finalise the window position.<br />
<code>F11</code> - Fullscreen view</p>
<p>You can also get these using <man command> to look at all possible options for terminator.  Overall it&#8217;s a good replacement for the bog standard terminal with some added features.  </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/sysadmin/terminator-terminal/feed</wfw:commentRss>
		</item>
		<item>
		<title>Postfix and Aliases</title>
		<link>http://blog.oogly.co.uk/sysadmin/postfix-and-aliases</link>
		<comments>http://blog.oogly.co.uk/sysadmin/postfix-and-aliases#comments</comments>
		<pubDate>Tue, 03 Feb 2009 04:00:01 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[aliases]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[newaliases]]></category>

		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=188</guid>
		<description><![CDATA[Just a quite post on a simple Postfix installation and some steps that tripped me up a little recently.
I installed a basic version of Postfix on Debian and didn&#8217;t want to go through the hassles of configuring a MySQL database for managing users etc&#8230;  I decided to just use the simple aliases file to [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quite post on a simple Postfix installation and some steps that tripped me up a little recently.</p>
<p>I installed a basic version of Postfix on Debian and didn&#8217;t want to go through the hassles of configuring a MySQL database for managing users etc&#8230;  I decided to just use the simple aliases file to manage users.  To do this I needed to specify the following in my main.cf file:</p>
<p><code><br />
myhostname = example.co.uk<br />
mydomain = example.co.uk<br />
myorigin = example.co.uk<br />
alias_maps = hash:/etc/aliases<br />
alias_database = hash:/etc/aliases<br />
mydestination = $myhostname, $mydomain, localhost.$mydomain, mail.example.co.uk<br />
</code></p>
<p>and this in my /etc/aliases file:</p>
<p><code><br />
postmaster: root<br />
root: example@gmail.com<br />
example: example@gmail.com<br />
</code></p>
<p>I also ran into two more issues with the aliases file:</p>
<p><strong>1. Dictionary issue with /etc/aliases</strong><br />
<code>postfix/smtpd[19065]: fatal: open dictionary: expecting &#8220;type:name&#8221; form instead of&#8230;</code></p>
<p>The issue here was that Postfix couldn&#8217;t read the aliases file.  It just needed to convert the /etc/aliases file into the /etc/aliases.db file.  The question was how, the answer, like this:</p>
<p><code>sudo newaliases; sudo postfix reload </code><br />
<strong><br />
2. Aliases database out of sync</strong><br />
<code>database /etc/aliases.db is older than source file /etc/aliases</code><br />
The aliases database was not up to date with the aliases file.  To fix this I ran the commands above.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/sysadmin/postfix-and-aliases/feed</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Tools - Woo Hoo!</title>
		<link>http://blog.oogly.co.uk/community/twitter-tools-woo-hoo</link>
		<comments>http://blog.oogly.co.uk/community/twitter-tools-woo-hoo#comments</comments>
		<pubDate>Sat, 24 Jan 2009 03:55:59 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<category><![CDATA[integration]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[twitter-tools]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=171</guid>
		<description><![CDATA[So this is an initial post from Wordpress using the twitter-tools plugin which allows you to integrate Wordpress and Twitter (and vice versa)&#8230;
http://wordpress.org/extend/plugins/twitter-tools/
so this new post should result in a new tweet being created in Twitter : )
]]></description>
			<content:encoded><![CDATA[<p>So this is an initial post from Wordpress using the twitter-tools plugin which allows you to integrate Wordpress and Twitter (and vice versa)&#8230;</p>
<p>http://wordpress.org/extend/plugins/twitter-tools/</p>
<p>so this new post should result in a new tweet being created in Twitter : )</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/community/twitter-tools-woo-hoo/feed</wfw:commentRss>
		</item>
		<item>
		<title>Lynx and Persistent Cookies</title>
		<link>http://blog.oogly.co.uk/sysadmin/lynx-and-persistent-cookies</link>
		<comments>http://blog.oogly.co.uk/sysadmin/lynx-and-persistent-cookies#comments</comments>
		<pubDate>Wed, 21 Jan 2009 03:33:06 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[cookies]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[lynx]]></category>

		<category><![CDATA[persistent]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=165</guid>
		<description><![CDATA[Just a quick write up here on persistent cookies and lynx.  I was having an issue where lynx was prompting me to accept cookies from Google, Gmail etc&#8230; all of the time.  I solved this by enabling persistent cookies for lynx 1.8.5.  
To do this, you can put the following in lynx.cfg [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick write up here on persistent cookies and lynx.  I was having an issue where lynx was prompting me to accept cookies from Google, Gmail etc&#8230; all of the time.  I solved this by enabling persistent cookies for lynx 1.8.5.  </p>
<p>To do this, you can put the following in lynx.cfg file which resides in your user home directory:</p>
<p><code><br />
SET_COOKIES:TRUE<br />
ACCEPT_ALL_COOKIES:TRUE<br />
PERSISTENT_COOKIES:TRUE<br />
COOKIE_FILE:~/.lynx_cookies<br />
COOKIE_SAVE_FILE:~/.lynx_cookies<br />
</code></p>
<p>This will store cookies in the .lynx_cookies file.  It will also accept all cookies (you may want to omit this and enable cookies for specific domains which is also possible).  For more information on the lynx configuration file and the various options see the link below:</p>
<p>One more note, this doesn&#8217;t have to go in the lynx.cfg file, you can also put it in a .lynxrc file, but you then may have to alias lynx to read from that file, possibly in .bashrc or .bash_profile, up to you:</p>
<p><code><br />
alias lynx="lynx -cfg=$HOME/.lynxrc"<br />
</code></p>
<p>And that&#8217;s about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/sysadmin/lynx-and-persistent-cookies/feed</wfw:commentRss>
		</item>
		<item>
		<title>Eclipse Shortcut Keys</title>
		<link>http://blog.oogly.co.uk/java/eclipse-shortcut-keys</link>
		<comments>http://blog.oogly.co.uk/java/eclipse-shortcut-keys#comments</comments>
		<pubDate>Tue, 06 Jan 2009 01:53:24 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[bindings]]></category>

		<category><![CDATA[cheat sheet]]></category>

		<category><![CDATA[eclipse monkey]]></category>

		<category><![CDATA[eclipse shortcut keys]]></category>

		<category><![CDATA[java development]]></category>

		<category><![CDATA[mousefeed]]></category>

		<category><![CDATA[shortcut]]></category>

		<guid isPermaLink="false">http://blog.oogly.co.uk/?p=136</guid>
		<description><![CDATA[I&#8217;ve found a few Eclipse shortcut tutorials around that explain how to access features through shortcuts in Eclipse. One of the most useful I&#8217;ve found, and use all the time is the old CTRL+SHIFT+R shortcut for opening a resource.  I&#8217;ve noticed that there are a number of these documented within the Eclipse help menu here:
Help [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found a few Eclipse shortcut tutorials around that explain how to access features through shortcuts in Eclipse. One of the most useful I&#8217;ve found, and use all the time is the old CTRL+SHIFT+R shortcut for opening a resource.  I&#8217;ve noticed that there are a number of these documented within the Eclipse help menu here:</p>
<p style="text-align: center;">Help Contents &gt; Java Development User Guide &gt; Reference &gt; Menus and Actions</p>
<p style="text-align: left;">You can also view a list of common shortcut keys using the shortcut:</p>
<p style="text-align: center;">CTRL+SHIFT+L</p>
<p style="text-align: center;"><a href="http://blog.oogly.co.uk/wp-content/uploads/2009/01/shortcutkeys.jpg"><img class="alignnone size-medium wp-image-140" title="shortcutkeys" src="http://blog.oogly.co.uk/wp-content/uploads/2009/01/shortcutkeys.jpg" alt="" width="267" height="300" /></a></p>
<p style="text-align: left;">From here you can also access the key bindings menu by hitting CTRL+SHIFT+L again (as indicated in the diagram).  This allows you to remap the key bindings or setup new key bindings.  Eclipse also supports Emacs type bindings.</p>
<p>There are also a number of cheat sheets on the internet that you can print out and stick on the wall (or cubicle or whatever) to help you out. I&#8217;ve not found an editable template for these so I created my own in Microsoft Word format which can be found below.  This includes a list of the shortcuts I commonly use on a day to day basis.</p>
<p style="text-align: center;"><a href="http://blog.oogly.co.uk/downloads/eclipsesk.doc">http://blog.oogly.co.uk/downloads/eclipsesk.doc</a></p>
<p>The one annoying thing about shortcuts is that you can&#8217;t create them for new actions (I found this annoying because I wanted a shortcut for Checkstyle-&gt;Check Code With Checkstyle).  However, this functionality is available in the form of <a href="http://www.eclipse.org/proposals/eclipse-monkey/">Eclipse Monkey</a> (formally Groovy Monkey) which allows you to automate repetitive tasks.</p>
<p>Finally there is another option for memorising shortcuts in the form of <a href="http://www.mousefeed.com/">Mousefeed </a>- this displays the shortcut for the action you have recently carried out allowing you to memorise it for next time.</p>
<p>Hope that helps with your magical shortcut trickery.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oogly.co.uk/java/eclipse-shortcut-keys/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
