<?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>Coder CPF_ &#187; Programming</title>
	<atom:link href="http://www.codercpf.be/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codercpf.be</link>
	<description></description>
	<lastBuildDate>Fri, 27 May 2011 10:32:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Boost::python str to std::string</title>
		<link>http://www.codercpf.be/178/boostpython-str-to-stdstring/</link>
		<comments>http://www.codercpf.be/178/boostpython-str-to-stdstring/#comments</comments>
		<pubDate>Fri, 27 May 2011 10:31:55 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=178</guid>
		<description><![CDATA[As with everything in Boost::Python, it might not always be obvious how to best extract certain types to C++ One thing to remember is that most (if not all) C++ types are supported by boost::python::extract So, to extract a std::string object from python, it&#8217;s best to use the extract function again: std::string tmp; tmp = [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/178/boostpython-str-to-stdstring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple cron init.d status checker</title>
		<link>http://www.codercpf.be/166/simple-cron-init-d-status-checker/</link>
		<comments>http://www.codercpf.be/166/simple-cron-init-d-status-checker/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 22:07:19 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=166</guid>
		<description><![CDATA[Simple cron script to check the status of some init.d daemon/script and restart it if necessary, shown in the example with postgresql, but should work with about any init.d script. #!/bin/sh SCRIPT=postgresql /etc/init.d/$SCRIPT status if [ "$?" != "0" ]; then /etc/init.d/$SCRIPT start fi]]></description>
		<wfw:commentRss>http://www.codercpf.be/166/simple-cron-init-d-status-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>boost::python iterating over dictionaries</title>
		<link>http://www.codercpf.be/159/boostpython-iterating-over-dictionaries/</link>
		<comments>http://www.codercpf.be/159/boostpython-iterating-over-dictionaries/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 23:20:43 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=159</guid>
		<description><![CDATA[When working with boost::python, it&#8217;s quickly noticeable the lack of documentation involved in integrating Python in a C++ application, however using boost::python is a lot easier then using the normal Python/C API so it&#8217;s recommended to whomever considers using Python in a C++ application. Tricky The downside of it is the lack of examples, and [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/159/boostpython-iterating-over-dictionaries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Hide flash</title>
		<link>http://www.codercpf.be/146/howto-hide-flash/</link>
		<comments>http://www.codercpf.be/146/howto-hide-flash/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 23:51:58 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=146</guid>
		<description><![CDATA[When using flash and lightbox (and lookalikes) it&#8217;s a common issue that the flash movie which should be under the lightbox pops out of there (often in weird places and not 100%) So, an elegant way to solve this in Javascript would be to have the flash moved or disappeared. Hide it (display none) Using [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/146/howto-hide-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; dynamic vars in classes</title>
		<link>http://www.codercpf.be/43/php-dynamic-vars-in-classes/</link>
		<comments>http://www.codercpf.be/43/php-dynamic-vars-in-classes/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 21:37:03 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=43</guid>
		<description><![CDATA[As I&#8217;m all about python, and pythonic is the way I speak any coding language, I had a challenge in finding a way to dynamically implement new variables in a class. Unlike python, in which this is very simply done by: class MyClass: def __init__(self): self.newvar = 'value' self.newvar2 = 'bla' It&#8217;s quite the challenge [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/43/php-dynamic-vars-in-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQLdb insert queries not working?</title>
		<link>http://www.codercpf.be/39/mysqldb-insert-queries-not-working/</link>
		<comments>http://www.codercpf.be/39/mysqldb-insert-queries-not-working/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 22:39:12 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[MySQLdb]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=39</guid>
		<description><![CDATA[So, you&#8217;re here on some quest to solve an issue where you do any amount of insert queries through MySQLdb but it doesn&#8217;t appear in the database? Well, I had exactly that issue. Took me ages to figure out why after moving an app to another server (with by design the same database, except for [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/39/mysqldb-insert-queries-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Android] Netbeans plugin in the make</title>
		<link>http://www.codercpf.be/26/android-netbeans-plugin-in-the-make/</link>
		<comments>http://www.codercpf.be/26/android-netbeans-plugin-in-the-make/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 05:31:38 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=26</guid>
		<description><![CDATA[Sorry for the late idleness, I&#8217;ve been quite busy elsewhere. Nonetheless, there&#8217;s some nice work going on with the android platform, again. This time someone has published his current work status in creating a Netbeans plugin to emulate the Android OS. Screenshots are found here: http://picasaweb.google.com/joerg.ruethschilling/AndroidPluginForNetbeans I&#8217;m definitely using that one when it&#8217;s out there, [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/26/android-netbeans-plugin-in-the-make/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[DroidDraw] A guide to android widgets</title>
		<link>http://www.codercpf.be/21/droiddraw-a-guide-to-android-widgets/</link>
		<comments>http://www.codercpf.be/21/droiddraw-a-guide-to-android-widgets/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 07:33:52 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[droiddraw]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=21</guid>
		<description><![CDATA[The creator of DroidDraw is certainly busy, for he published another tutorial concerning how-to in certain graphical aspects of Android. This time, it&#8217;s about how Android widgets work. Be sure to read it, it&#8217;s literally a 2 minute read to knowing the deal with Android widgets, great summary.]]></description>
		<wfw:commentRss>http://www.codercpf.be/21/droiddraw-a-guide-to-android-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DroidDraw &#8211; tutorial</title>
		<link>http://www.codercpf.be/20/droiddraw-tutorial/</link>
		<comments>http://www.codercpf.be/20/droiddraw-tutorial/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 19:26:25 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[builder]]></category>
		<category><![CDATA[droiddraw]]></category>
		<category><![CDATA[gui]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=20</guid>
		<description><![CDATA[I&#8217;ve mentioned droiddraw earlier in this blog. Since then, the developer of the only gui building program for android at the moment has been quite busy, and been following &#8220;Release early, release often&#8221; cycles. He&#8217;s also made a tutorial on how to use the gui builder, certainly worth your time! I&#8217;m expecting a great deal [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/20/droiddraw-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android for blind users?</title>
		<link>http://www.codercpf.be/18/android-for-blind-users/</link>
		<comments>http://www.codercpf.be/18/android-for-blind-users/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 17:56:35 +0000</pubDate>
		<dc:creator>cpf_</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.codercpf.be/?p=18</guid>
		<description><![CDATA[Today I saw a post concerning about the seeing impaired people who could use android for the best, if only there was some sort of screen reader software running on Android. Something was said about not being able to implement that because of certain security reasons, but that probably referred to independent software reading what [...]]]></description>
		<wfw:commentRss>http://www.codercpf.be/18/android-for-blind-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

