<?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</title>
	<atom:link href="http://www.andreabelvedere.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andreabelvedere.com</link>
	<description>Coding, Life</description>
	<lastBuildDate>Thu, 30 Oct 2014 20:46:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.4</generator>
	<item>
		<title>python singleton</title>
		<link>http://www.andreabelvedere.com/coding/python-singleton</link>
		<comments>http://www.andreabelvedere.com/coding/python-singleton#respond</comments>
		<pubDate>Fri, 11 May 2012 11:52:13 +0000</pubDate>
		<dc:creator><![CDATA[andrea belvedere]]></dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=722</guid>
		<description><![CDATA[A version of python singleton pattern, it is not very pretty and breaks a bunch of pep 20, but in some cases is useful. Singleton Pattern 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class Singleton&#40;object&#41;: __instance = &#123;&#125; &#160; def __new__&#40;cls, *args, **kwargs&#41;: if cls.__name__ not in [&#8230;]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/python-singleton/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>listening to posix style signals</title>
		<link>http://www.andreabelvedere.com/coding/listening-to-posix-style-signals</link>
		<comments>http://www.andreabelvedere.com/coding/listening-to-posix-style-signals#respond</comments>
		<pubDate>Thu, 08 Dec 2011 10:47:08 +0000</pubDate>
		<dc:creator><![CDATA[andrea belvedere]]></dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=664</guid>
		<description><![CDATA[A quick self reminder. #include &#60;stdio.h&#62; #include &#60;string.h&#62; #include &#60;signal.h&#62; &#160; void handler&#40;int signal&#41; &#123; printf&#40;&#34;Signal: %s\n&#34;, strsignal&#40;signal&#41;&#41;; if &#40;signal == SIGABRT&#41; &#123; raise&#40;SIGKILL&#41;; // can't be caught or ignored &#125; &#125; &#160; int main&#40;int argc, char *argv&#91;&#93;&#41; &#123; signal&#40;SIGABRT, handler&#41;; // Abort signal&#40;SIGFPE, handler&#41;; // Floating-Point Exception signal&#40;SIGILL, handler&#41;; // Illegal Instruction signal&#40;SIGINT, handler&#41;; [&#8230;]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/listening-to-posix-style-signals/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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><![CDATA[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 [&#8230;]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/git-memo/feed</wfw:commentRss>
		<slash:comments>1</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><![CDATA[andrea belvedere]]></dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[GD]]></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 [&#8230;]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/tic-text-image-converter/feed</wfw:commentRss>
		<slash:comments>6</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><![CDATA[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>2</slash:comments>
		</item>
		<item>
		<title>Web Font Tester</title>
		<link>http://www.andreabelvedere.com/besides/web-font-tester</link>
		<comments>http://www.andreabelvedere.com/besides/web-font-tester#comments</comments>
		<pubDate>Sun, 18 Jan 2009 10:50:34 +0000</pubDate>
		<dc:creator><![CDATA[andrea belvedere]]></dc:creator>
				<category><![CDATA[besides]]></category>

		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=342</guid>
		<description><![CDATA[The quick brown fox jumps over the lazy dog ! Font Name &#160;(i.e. Arial, Courier etc.) Font Size ptpxem Bold &#160; &#160;]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/besides/web-font-tester/feed</wfw:commentRss>
		<slash:comments>1</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><![CDATA[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 [&#8230;]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/feed</wfw:commentRss>
		<slash:comments>8</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#respond</comments>
		<pubDate>Wed, 11 Jun 2008 07:26:03 +0000</pubDate>
		<dc:creator><![CDATA[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 [&#8230;]]]></description>
		<wfw:commentRss>http://www.andreabelvedere.com/coding/compile-emacs-mode-extensions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
