<?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>andrea belvedere &#187; coding</title>
	<atom:link href="http://www.andreabelvedere.com/category/coding/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andreabelvedere.com</link>
	<description>Coding, Life</description>
	<lastBuildDate>Wed, 19 May 2010 01:24:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>git memo</title>
		<link>http://www.andreabelvedere.com/coding/git-memo</link>
		<comments>http://www.andreabelvedere.com/coding/git-memo#comments</comments>
		<pubDate>Thu, 25 Mar 2010 06:10:00 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=446</guid>
		<description><![CDATA[Git, in my opinion, is undoubtedly the best version control system, mostly, but not only, for its distributed nature, and the way branching and merging are handled.
However having used subversion for many years I find git learning curve a real pain, some of the commands are slightly arcane, therefore not easy to remember.
In this post [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/git-memo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TIC &#8211; Text Image Converter</title>
		<link>http://www.andreabelvedere.com/coding/tic-text-image-converter</link>
		<comments>http://www.andreabelvedere.com/coding/tic-text-image-converter#comments</comments>
		<pubDate>Mon, 20 Apr 2009 09:19:26 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[GD]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=356</guid>
		<description><![CDATA[This is a php5 library (two classes) I wrote to convert TrueType Font text into an image, using the GD library.
The project is hosted and can be downloaded from github: http://github.com/hayate/tic  (it includes an example, documentation and some free fonts)
or using git: git clone git://github.com/hayate/tic.git
Documentation is also available online here: http://www.andreabelvedere.com/docs/tic/
To extend the library [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/tic-text-image-converter/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>subversion propset svn:ignore</title>
		<link>http://www.andreabelvedere.com/coding/subversion-propset-svnignore</link>
		<comments>http://www.andreabelvedere.com/coding/subversion-propset-svnignore#comments</comments>
		<pubDate>Thu, 02 Apr 2009 18:12:42 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=351</guid>
		<description><![CDATA[This is a quick self-reminder on propset svn:ignore command.
To ignore all content in directory foo but not the directory:
svn propset svn:ignore '*' foo
To ignore the directory and its content:
svn propset svn:ignore 'foo' . 
]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/subversion-propset-svnignore/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zend_Layout example</title>
		<link>http://www.andreabelvedere.com/coding/zend_layout-example</link>
		<comments>http://www.andreabelvedere.com/coding/zend_layout-example#comments</comments>
		<pubDate>Mon, 20 Oct 2008 11:51:29 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=125</guid>
		<description><![CDATA[This example focuses on 3 aspects of the Zend Framework (v1.6):
the Zend_Layout mechanism, modules and helpers, including the ActionStack helper and a custom helper. (Please note that there is no Smarty involved in this example).
The main objective of this post is to demonstrate how components of ZF work together to produce a simple application, for [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/zend_layout-example/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Scrolling Text: the JavaScript Way</title>
		<link>http://www.andreabelvedere.com/coding/scrolling-text-the-javascript-way</link>
		<comments>http://www.andreabelvedere.com/coding/scrolling-text-the-javascript-way#comments</comments>
		<pubDate>Tue, 14 Oct 2008 21:55:15 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=107</guid>
		<description><![CDATA[I am developing a site and on one of the pages I added an updateable (from a custom CMS) scrolling text banner.
The client was really impressed and asked me to make one on the front page as well.
I thought of sharing this because although to make a scrolling text banner in javascript is quite easy [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/scrolling-text-the-javascript-way/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A better Zend Framework &amp; Smarty integration</title>
		<link>http://www.andreabelvedere.com/coding/a-better-zend-framework-smarty-integration</link>
		<comments>http://www.andreabelvedere.com/coding/a-better-zend-framework-smarty-integration#comments</comments>
		<pubDate>Fri, 03 Oct 2008 14:14:10 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[smarty]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=12</guid>
		<description><![CDATA[Since the first post on this series I have been working with the Zend Framework and Smarty extensively and I have greatly improved my previous integration between Smarty template engine and ZF.
I have prepared and example that you can download from the following link:
 the compressed file includes the ZF and Smarty packages.
The zip file [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/a-better-zend-framework-smarty-integration/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Linux pipe find with rm</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm</link>
		<comments>http://www.andreabelvedere.com/coding/linux-pipe-find-rm#comments</comments>
		<pubDate>Sat, 13 Sep 2008 14:15:58 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16</guid>
		<description><![CDATA[find /path/to/dir -name name_of_file_to_match &#124; xargs /bin/rm
I use often the above command to clean a directory from all the back up files created by emacs, so for example if I am developing a site at: /var/www/a-site/ then at the end of the day or at the beginning of a new one I clean up the [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Gallery2 Forum module update</title>
		<link>http://www.andreabelvedere.com/coding/gallery2-forum-module-update</link>
		<comments>http://www.andreabelvedere.com/coding/gallery2-forum-module-update#comments</comments>
		<pubDate>Mon, 16 Jun 2008 13:21:05 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[gallery2]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=11</guid>
		<description><![CDATA[With the help of Serban Constantinescu (that recently joined the project) the forum module for gallery 2 is at its second (but still rather beta) release, we are now at version 0.1.6.
Please find the new project page here: http://galleryforum.sourceforge.net/
and an experimental demo site here: http://galleryforum.abelvedere.com/main.php
]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/gallery2-forum-module-update/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Compile emacs mode extensions</title>
		<link>http://www.andreabelvedere.com/coding/compile-emacs-mode-extensions</link>
		<comments>http://www.andreabelvedere.com/coding/compile-emacs-mode-extensions#comments</comments>
		<pubDate>Wed, 11 Jun 2008 07:26:03 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=10</guid>
		<description><![CDATA[Occasionally I want to compile a new mode for emacs but I can never remember the command so here it is:
M-x byte-compile-file [RET]
This is: press the &#8220;Esc&#8221; key (top left on my keyboard), then the letter x, then type &#8220;byte-compile-file&#8221; and press the return key.
or to compile all .el files in a directory:
[ESC] x byte-recompile-directory [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/compile-emacs-mode-extensions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework and Smarty integration</title>
		<link>http://www.andreabelvedere.com/coding/zend-framework-smarty-integration</link>
		<comments>http://www.andreabelvedere.com/coding/zend-framework-smarty-integration#comments</comments>
		<pubDate>Sat, 10 May 2008 13:37:09 +0000</pubDate>
		<dc:creator>andrea belvedere</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[smarty]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=8</guid>
		<description><![CDATA[I have been using Smarty (php template engine) for quite some time but  I am really new to Zend Framework, in fact I started using it for the first time yesterday.
To do the integration i found two very good articles:

http://devzone.zend.com/node/view/id/120
http://kpumuk.info/php/zend-framework-using-smarty-as-template-engine/

However both articles refer to an older version of Zend Framework and they are a [...]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/zend-framework-smarty-integration/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>
