

<?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>Gilles Ruppert</title>
	<atom:link href="http://latower.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://latower.com</link>
	<description>a.k.a. elduderino78</description>
	<lastBuildDate>Sat, 03 Oct 2009 22:25:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Integrating JSLint for vim</title>
		<link>http://latower.com/2009/10/integrating-jslint-for-vim/</link>
		<comments>http://latower.com/2009/10/integrating-jslint-for-vim/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 22:25:08 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JSLint]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://latower.com/?p=94</guid>
		<description><![CDATA[A couple of months ago I moved away from TextMate and started using vim for most of my text editing needs. I love TextMate, but I needed a powerful text editor that is also available on other operating systems.
Overall I love vim: it has a steep learning curve, but it&#8217;s very powerful.If you are touch-typing [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months ago I moved away from TextMate and started using vim for most of my text editing needs. I love TextMate, but I needed a powerful text editor that is also available on other operating systems.</p>
<p>Overall I love vim: it has a steep learning curve, but it&#8217;s very powerful.If you are touch-typing and loath the mouse as much as I do, it&#8217;s fantastic. But I found myself missing out on some of TextMate&#8217;s great bundles, and JSLint integration is one of them. After some googling around and looking at different solutions, this is the one that was easiest to install and I like the functionality.</p>
<p>First <a title="Download and install JSLint" href="http://www.javascriptlint.com/download.htm" target="_blank">download</a> &amp; install JavaScript Lint. On OSX &amp; Linux, you can do so by copying the resulting folder into your PATH. I put it in /usr/local/bin/.</p>
<p>Then <a title="Download JavaScript Lint vim plugin" href="http://www.vim.org/scripts/script.php?script_id=2578" target="_blank">get the JavaScriptLint vim plugin</a> by Joe Stelmach and restart vim.</p>
<p>Off you go. When you save a JavaScript file in vim, you will get a window with JSLint warnings. If you want to configure JSLint to show/hide certain errors, you can edit the config (jsl.default.conf) in the folder. You might want to backup the file before editing it.</p>
<p>Happy linting!</p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2009/10/integrating-jslint-for-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading the Subversion command line client on Mac OSX Leopard</title>
		<link>http://latower.com/2009/05/upgrading-subversion-on-osx/</link>
		<comments>http://latower.com/2009/05/upgrading-subversion-on-osx/#comments</comments>
		<pubDate>Wed, 20 May 2009 23:04:13 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://latower.com/?p=75</guid>
		<description><![CDATA[OSX Leopard ships with Subversion 1.4.x by default. Since then, SVN has had 2 major upgrades (merge tracking anyone?). To make things easy, there is a binary available at Collab.net. But unfortunately you need to do some work yourself.
The path of the built in Subversion command line client is different to the one that the Collab.net Community [...]]]></description>
			<content:encoded><![CDATA[<p>OSX Leopard ships with Subversion 1.4.x by default. Since then, SVN has had 2 major upgrades (merge tracking anyone?). To make things easy, there is a binary available at <a href="http://www.open.collab.net/downloads/community/">Collab.net</a>. But unfortunately you need to do some work yourself.</p>
<p>The path of the built in Subversion command line client is different to the one that the Collab.net Community binary is installed to. The following steps will fix this. </p>
<p>Disclaimer &#8211; Be careful: when you use the Terminal you are flying without a safety net! No undo &amp; no restore from trash. Do this at your own risk and don&#8217;t forget to have an up-to-date backup!!!</p>
<ol>
<li>install the binary downloaded to Collab.net</li>
<li>open your Terminal and check which version of SVN you are using by typing <code>svn --version</code>. This should say 1.4.x</li>
<li>check which installed instance of SVN the OS is using by typing <code>which svn</code>. This will return the path to the SVN version you are using, which probably is <code>/usr/local/bin/svn</code></li>
<li>check whether the Collab.net version is installed by going to it: <code>cd /opt/subversion/bin</code>. Doing an <code>ls</code> should show you the subversion files</li>
<li>Backup the current svn location: by going to it (<code>cd /usr/local/bin</code>) and copying it to your desktop or wherever you fancy (<code>mv svn* ~/Desktop/</code>)</li>
<li>now you need to create <a href="http://en.wikipedia.org/wiki/Symbolic_link">symlinks</a> to the Collab.net binaries:
<ul>
<li><code>ln -s /opt/subversion/bin/svn svn</code></li>
<li><code>ln -s /opt/subversion/bin/svnadmin svnadmin</code></li>
<li><code>ln -s /opt/subversion/bin/svndumpfilter svndumpfilter</code></li>
<li><code>ln -s /opt/subversion/bin/svnlook svnlook</code></li>
<li><code>ln -s /opt/subversion/bin/svnserve svnserve</code></li>
<li><code>ln -s /opt/subversion/bin/svnsync svnsync</code></li>
<li><code>ln -s /opt/subversion/bin/svnversion svnversion</code></li>
</ul>
</li>
<li>That should be it</li>
</ol>
<p>The beauty is that you only need to do this once. The next time you upgrade your Subversion client, the symlinks will just point to the updated files and everything should be fine. As I said earlier though: only do this if you feel comfortable on the command line.</p>
<p><ins datetime="2009-05-27T23:06:12+00:00">UPDATE: I have been told that some people seem to have SVN installed in <code>/usr/bin/</code>. Just use the path that is returned by the <code>which svn</code> command. You might also need to use <code>sudo</code> to run some of the command (i.e. move).</ins></p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2009/05/upgrading-subversion-on-osx/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jQuery list paginator plugin &#8211; Elpaginator</title>
		<link>http://latower.com/2009/01/jquery-list-paginator-plugin-elpaginator/</link>
		<comments>http://latower.com/2009/01/jquery-list-paginator-plugin-elpaginator/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 16:24:08 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://latower.com/2009/01/jquery-list-paginator-plugin-elpaginator/</guid>
		<description><![CDATA[I know it&#8217;s been a while. I started about 5 posts, but haven&#8217;t finished any of them&#8230; 
Hopefully this makes up for it: as a treat for the new year, I thought a little jQuery plugin that I wrote would be handy for some people: please welcome Elpaginator!
What it does:
It looks for a ul or ol [...]]]></description>
			<content:encoded><![CDATA[<p>I know it&#8217;s been a while. I started about 5 posts, but haven&#8217;t finished any of them&#8230; </p>
<p>Hopefully this makes up for it: as a treat for the new year, I thought a little jQuery plugin that I wrote would be handy for some people: please welcome Elpaginator!</p>
<h2>What it does:</h2>
<p>It looks for a <code>ul</code> or <code>ol</code> within a wrapper &amp; adds pagination depending on the maximum number of items specified.</p>
<h2>Features:</h2>
<ul>
<li>paginates if there are more items than the user specified</li>
<li>displays number of items left or pages, i.e. 1-10, 11-20, etc or 1, 2, etc</li>
<li>html of pagination is fully configurable (wrapper need to contain class of <code>page-list</code>!)</li>
<li>the number of the list item if ordered list is used is correct (uses start attribute that is deprecated, but there is no real alternative yet as IE6 &amp; 7 don&#8217;t support CSS for this yet)</li>
<li>support for <code>ul</code> &amp; <code>ol</code></li>
<li>very lightweight (less than 200 lines WITH lots of comments)</li>
</ul>
<p> </p>
<p>You can find the <a href="http://svn.latower.com/main/trunk/elpaginator/jquery.elpaginator.js">elpaginator script</a> &amp; a <a href="http://svn.latower.com/main/trunk/elpaginator/index.html">demo page</a> in <a href="http://svn.latower.com/main/trunk/elpaginator/index.html">my repository</a>.</p>
<h2>Options</h2>
<p>This is how you initialise the pagination:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#wrapper'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">elpaginator</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Possible Options are:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#wrapper'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">elpaginator</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
    MAX<span style="color: #339933;">:</span> <span style="color: #CC0000;">10</span><span style="color: #339933;">,</span>  <span style="color: #006600; font-style: italic;">// maximum number of items per pagination</span>
    list<span style="color: #339933;">:</span> <span style="color: #3366CC;">'ol'</span><span style="color: #339933;">,</span>   <span style="color: #006600; font-style: italic;">// whether it's an ul or ol. Default: ul</span>
    style<span style="color: #339933;">:</span> <span style="color: #3366CC;">'items'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// other value is pages -&gt; show 1-5 6-10, etc, or 1, 2,</span>
    paginationHTML<span style="color: #339933;">:</span> <span style="color: #3366CC;">'&lt;div class=&quot;pagination&quot;&gt;&lt;ul class=&quot;page-list&quot;&gt;&lt;/ul&gt;&lt;/div&gt;'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// HTML for the pagination. Is appended to the wrapper</span>
    paginationListItemHTML<span style="color: #339933;">:</span> <span style="color: #3366CC;">'&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;/a&gt;&lt;/li&gt;'</span> <span style="color: #006600; font-style: italic;">// HTML for the pagination items</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>A live example of it working can also be seen on the new <a href="http://www.topgear.com/uk/tv-show">Top Gear site</a> (look at the sidebar for the lap times table).</p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2009/01/jquery-list-paginator-plugin-elpaginator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splitting a long JavaScript String across multiple lines</title>
		<link>http://latower.com/2008/11/splitting-a-long-javascript-string-across-multiple-lines/</link>
		<comments>http://latower.com/2008/11/splitting-a-long-javascript-string-across-multiple-lines/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 14:08:47 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://latower.com/?p=59</guid>
		<description><![CDATA[Whilst reading a comment by Mike DeBoer on Ajaxian about delimiting JavaScript strings with backslashes, I thought it&#8217;s worth mentioning it here as well, if only to remind myself.
String concatenation always creates a new string.
Thus, writing:

 
var str = "This is a long" +
  " string. That's why we want to " +
  " [...]]]></description>
			<content:encoded><![CDATA[<p>Whilst reading a comment by <a href="http://www.mikedeboer.nl/">Mike DeBoer</a> on <a href="http://ajaxian.com/archives/how-to-structure-your-javascript-code#comment-268506">Ajaxian</a> about delimiting JavaScript strings with backslashes, I thought it&#8217;s worth mentioning it here as well, if only to remind myself.</p>
<p>String concatenation always creates a new string.</p>
<p>Thus, writing:</p>
<pre>
 <code>
var str = "This is a long" +
  " string. That's why we want to " +
  " split it over several lines";
 </code>
</pre>
<p>is slower &#038; more memory intensive than writing:</p>
<pre>
 <code>
var str = "This is a long\
 string. That's why we want to\
 split it over several lines";
 </code>
</pre>
<p>Just be careful you don&#8217;t have trailing spaces as that will mess it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2008/11/splitting-a-long-javascript-string-across-multiple-lines/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>JavaScript cookies made easy</title>
		<link>http://latower.com/2008/11/javascript-cookies-made-easy/</link>
		<comments>http://latower.com/2008/11/javascript-cookies-made-easy/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 16:40:50 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://latower.com/?p=34</guid>
		<description><![CDATA[Here is another little script that makes my life a bit easier. It consists of 3 methods that makes working with cookies very straight forward. This script is built on the shoulder of giants: PPK from Quircksmode was the man who did the hard work.
However, rather than creating 3 methods that sit in the global [...]]]></description>
			<content:encoded><![CDATA[<p>Here is another little script that makes my life a bit easier. It consists of 3 methods that makes working with cookies very straight forward. This script is built on the shoulder of giants: <a href="http://www.quirksmode.org/js/cookies.html">PPK from Quircksmode</a> was the man who did the hard work.</p>
<p>However, rather than creating 3 methods that sit in the global namespace, I wanted to use a singleton object that would only add 1 global variable. Since there is no need for private methods, the object literal pattern is appropriate.<br />
In my opinion the names of the methods make it very straight forward to use. Good names mean less looking up, mean less mistakes, mean faster development. Your Technical Project Manager will love you for it <img src='http://latower.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>To create/set a cookie:<br />
<code>cookie.set('name', 'value, 234); // last argument is number of days until expiry. If none is provided, it will get deleted when the browser is closed</code></p>
<p>To get the cookie value:<br />
<code>cookie.get('name');</code></p>
<p>To delete the cookie:<br />
<code>cookie.erase('name');</code></p>
<p>As always, you can <a href="http://svn.latower.com/main/trunk/cookies">download the latest version from my svn repository</a></p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2008/11/javascript-cookies-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TextMate &amp; Subversion 1.5 update problem with conflict</title>
		<link>http://latower.com/2008/10/textmate-subversion-15-update-problem/</link>
		<comments>http://latower.com/2008/10/textmate-subversion-15-update-problem/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 15:12:13 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://latower.com/?p=40</guid>
		<description><![CDATA[We recently upgraded to Subversion 1.5 server at BBC Worldwide. I ended up upgrading my client at the same time with the latest OSX binary from Colabnet.
One weird thing started to happen though: whenever there were conflicts, TextMate wouldn&#8217;t allow me to use the &#8216;Resolve Conflicts with FileMerge&#8230;&#8217;.
Long story short: the interactive mode keeps TextMate [...]]]></description>
			<content:encoded><![CDATA[<p>We recently upgraded to Subversion 1.5 server at BBC Worldwide. I ended up upgrading my client at the same time with the latest OSX binary from Colabnet.<br />
One weird thing started to happen though: whenever there were conflicts, TextMate wouldn&#8217;t allow me to use the &#8216;Resolve Conflicts with FileMerge&#8230;&#8217;.</p>
<p>Long story short: the interactive mode keeps TextMate from getting all the data so you don&#8217;t get the .rxxx &amp; .mine files which are needed for FileMerge to show you the differences.</p>
<p>To fix this is:</p>
<ol>
<li>go into your TextMate Subversion Bundle</li>
<li>go to the &#8216;Update to Newest (HEAD)&#8217; command and add <br/><code>--non-interactive</code> after <code>'#{svn}' update </code></li>
</ol>
<p>You can see the resulting code here (change on line 14).</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">require_cmd <span style="color: #ff0000;">&quot;<span style="color: #007800;">${TM_SVN:=svn}</span>&quot;</span> <span style="color: #ff0000;">&quot;If you have installed svn, then you need to either update your &lt;tt&gt;PATH&lt;/tt&gt; or set the &lt;tt&gt;TM_SVN&lt;/tt&gt; shell variable (e.g. in Preferences / Advanced)&quot;</span>
&nbsp;
<span style="color: #ff0000;">&quot;<span style="color: #007800;">${TM_RUBY:-ruby}</span>&quot;</span> <span style="color: #660033;">-r</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$TM_SUPPORT_PATH</span>/lib/shelltokenize.rb&quot;</span> <span style="color: #cc0000; font-style: italic;">&lt;&lt;END
	svn = ENV['TM_SVN'] || &quot;svn&quot;
	ruby = ENV['TM_RUBY'] || &quot;ruby&quot;
	support = ENV['TM_BUNDLE_SUPPORT']
	paths = TextMate.selected_paths_array
&nbsp;
	# TODO: Ideally, we'd like to use a tooltip for one and not others, but we can't switch from a tooltip
	# to dynamic HTML output (or maybe we could double-fork a process?)
	# if ((paths.size == 1) and not (File.directory? paths[0]))
	#	puts %x{#{svn} update #{TextMate.selected_paths_for_shell}}
	# else
		update = IO.popen(&quot;'#{svn}' update --non-interactive #{TextMate.selected_paths_for_shell}&quot;, 'r')
		format = IO.popen(&quot;'#{ruby}' -- '#{support}/format_status.rb'&quot;, 'w')
		update.each_line { |line| format.puts(line) }
	# end	
END</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># force TM to refresh the current file..</span>
rescan_project</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://latower.com/2008/10/textmate-subversion-15-update-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery plugin autoInputValue &#8211; default input values made easy</title>
		<link>http://latower.com/2008/10/jquery-plugin-autoinputvalue-default-input-values-made-easy/</link>
		<comments>http://latower.com/2008/10/jquery-plugin-autoinputvalue-default-input-values-made-easy/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 22:33:27 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://latower.com/?p=6</guid>
		<description><![CDATA[We all know the problem: the designers are struggling to get the form elements in the space they have or they decide that having labels next to input fields is not really necessary&#8230;
Instead the label is displayed inside the input field &#38; supposed to disappear when the user clicks or focuses on the field.
I&#8217;ve come [...]]]></description>
			<content:encoded><![CDATA[<p>We all know the problem: the designers are struggling to get the form elements in the space they have or they decide that having labels next to input fields is not really necessary&#8230;<br />
Instead the label is displayed inside the input field &amp; supposed to disappear when the user clicks or focuses on the field.</p>
<p>I&#8217;ve come across this quite often lately, so I quickly put a little jQuery plugin together to make my life a bit easier.</p>
<p>It works on input fields and it works just like any other jQuery plugin.</p>
<p>All you need to do is call the plugin with the selectors you are interested in, i.e.<br />
<code>$('input:text.email').autoInputLabel();</code></p>
<p>The options are specified in an object literal &#038; can be:</p>
<ul>
<li><code>blurColor</code> &#8211; colour of the text when the label is displayed</li>
<li><code>focusColor</code> &#8211; colour of the active text, i.e. user input</li>
<li><code>value</code> &#8211; the label that should be displayed</li>
</ul>
<p>By default, the plugin displays the value of the <code>value</code> attribute. If there is none, it checks whether there has been a value provided by the user. Otherwise it looks for the label associated with the input field (that is probably hidden, otherwise why would you use the plugin?). The label needs to be associated to the input field with the <code>for</code> attribute.</p>
<p>The plugin only works on <code>&lt;input type="text"&gt;</code> fields.</p>
<p>You can <strong><a href="http://svn.latower.com/main/trunk/autoInputLabel">download the latest version from my public svn repository</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2008/10/jquery-plugin-autoinputvalue-default-input-values-made-easy/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://latower.com/2008/10/hello-world/</link>
		<comments>http://latower.com/2008/10/hello-world/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 22:19:16 +0000</pubDate>
		<dc:creator>elduderino78</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://latower.com/?p=13</guid>
		<description><![CDATA[Finally: after lots of dithering about I launch my own blog.
Why? 
To write down my ideas &#038; discuss them with fellow interwebbers, make some of my code publicly available for others to use &#38; maybe get more discipline into my thoughts by researching them a bit before I open my mouth.
Hopefully I will also be [...]]]></description>
			<content:encoded><![CDATA[<p>Finally: after lots of dithering about I launch my own blog.</p>
<h3>Why? </h3>
<p>To write down my ideas &#038; discuss them with fellow interwebbers, make some of my code publicly available for others to use &amp; maybe get more discipline into my thoughts by researching them a bit before I open my mouth.<br />
Hopefully I will also be able to help some other developers, just as numerous blogs have helped me out over the past years.</p>
<h3>Who am I?</h3>
<p>My name is Gilles Ruppert, aka <a href="http://twitter.com/elduderino78">elduderino78</a> (ever seen <a href="http://www.imdb.com/title/tt0118715/">The Big Lebowski</a>?). I am a Front-end developer for BBC Worldwide and work on their consumer websites which include:</p>
<ul>
<li><a href="http://www.topgear.com/uk">Top Gear</a></li>
<li><a href="http://www.radiotimes.com">Radiotimes</a></li>
<li><a href="http://www.bbcgoodfood.com">BBC Good Food</a></li>
<li><a href="http://www.gardenersworld.com">Gardeners&#8217; World</a></li>
<li><a href="http://www.loveearth.com">Love Earth</a></li>
</ul>
<p>I am focusing on web standards: <abbr title="Plain Old Semantic HTML">POSH</abbr> HTML, CSS, JavaScript, accessibility &#038; usability. I&#8217;m also doing a little bit of PHP &#038; CakePHP development whenever time allows.<br />
My aim is to become an accessible JavaScript Ninja &#038; for that I&#8217;m devouring pretty much any decent JavaScript book that comes out.</p>
<p>I have probably chosen the worst possible time to start blogging as I will become a dad in about 3 months, but maybe I can keep posting whilst holding the little one in the middle of the night <img src='http://latower.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Cheers,</p>
<p>Gilles</p>
]]></content:encoded>
			<wfw:commentRss>http://latower.com/2008/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
