<?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>Stuf</title>
	<atom:link href="http://stuf.ro/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuf.ro</link>
	<description>About Technology</description>
	<lastBuildDate>Sun, 13 Nov 2011 20:57:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Preventing Flash Builder debugger timeouts in Firefox</title>
		<link>http://stuf.ro/preventing-flash-builder-debugger-timeouts-in-firefox/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=preventing-flash-builder-debugger-timeouts-in-firefox</link>
		<comments>http://stuf.ro/preventing-flash-builder-debugger-timeouts-in-firefox/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 20:57:12 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=921</guid>
		<description><![CDATA[If the debug session terminates unexpectedly when using the Flash Builder debugger to debug a Flash project in Firefox, this problem can be solved by going to about:config and changing dom.ipc.plugins.timeoutSecs from its default value to -1.]]></description>
		<wfw:commentRss>http://stuf.ro/preventing-flash-builder-debugger-timeouts-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing the background of an UINavigationBar</title>
		<link>http://stuf.ro/customizing-the-background-of-an-uinavigationbar/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=customizing-the-background-of-an-uinavigationbar</link>
		<comments>http://stuf.ro/customizing-the-background-of-an-uinavigationbar/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 02:23:11 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=883</guid>
		<description><![CDATA[To customize the background image of the navigation bar, you can create a separate class extending UINavigationBar and override its drawRect method. To do that, first create a new class named STNavigationBar with the following definition in the STNavigationBar.h file: @interface STNavigationBar : UINavigationBar &#123; &#125; Then, implement the drawRect method in the STNavigationBar.m file: [...]]]></description>
		<wfw:commentRss>http://stuf.ro/customizing-the-background-of-an-uinavigationbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Determining CPU endianness at runtime</title>
		<link>http://stuf.ro/determining-cpu-endianness-at-runtime/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=determining-cpu-endianness-at-runtime</link>
		<comments>http://stuf.ro/determining-cpu-endianness-at-runtime/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 23:04:56 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=876</guid>
		<description><![CDATA[Since the short 1 is represented as 00 00 00 01 on big endian machines and 01 00 00 00 on little endian machines, it&#8217;s a rather straight forward matter to detect the endianness of a machine, by simply looking at how it stores a short. #include &#60;stdio.h&#62; &#160; int main&#40;&#41; &#123; unsigned short i [...]]]></description>
		<wfw:commentRss>http://stuf.ro/determining-cpu-endianness-at-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting a remote branch in git</title>
		<link>http://stuf.ro/deleting-a-remote-branch-in-git/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=deleting-a-remote-branch-in-git</link>
		<comments>http://stuf.ro/deleting-a-remote-branch-in-git/#comments</comments>
		<pubDate>Tue, 31 May 2011 14:08:05 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=874</guid>
		<description><![CDATA[To delete a remote branch, run: git push origin :branch]]></description>
		<wfw:commentRss>http://stuf.ro/deleting-a-remote-branch-in-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the Android emulator temporary directory</title>
		<link>http://stuf.ro/how-to-change-the-android-emulator-temporary-directory/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-change-the-android-emulator-temporary-directory</link>
		<comments>http://stuf.ro/how-to-change-the-android-emulator-temporary-directory/#comments</comments>
		<pubDate>Tue, 03 May 2011 01:08:21 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=834</guid>
		<description><![CDATA[If you&#8217;d like the Android emulator to store its temporary files in a directory different from /tmp/android (maybe you&#8217;re sharing your computer with someone else that needs to run the emulator and you both want to run it at the same time), then there&#8217;s unfortunately no other way to do it but to change it [...]]]></description>
		<wfw:commentRss>http://stuf.ro/how-to-change-the-android-emulator-temporary-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applying page margins in EPUB with CSS</title>
		<link>http://stuf.ro/applying-page-margins-in-epub-with-css/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=applying-page-margins-in-epub-with-css</link>
		<comments>http://stuf.ro/applying-page-margins-in-epub-with-css/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 13:07:53 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[EBooks]]></category>
		<category><![CDATA[EPUB]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=826</guid>
		<description><![CDATA[Recently, pretty much all ebook readers adopted the @page CSS rule (including Adobe Digital Editions), making the proprietary Adobe Page Templates obsolete when trying to set margins. Therefore, if you want to set a margin of 1.5em, all you need to do is use the following CSS rule: @page { margin: 1.5em; &#125;]]></description>
		<wfw:commentRss>http://stuf.ro/applying-page-margins-in-epub-with-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Calling C code from Java using JNA</title>
		<link>http://stuf.ro/calling-c-code-from-java-using-jna/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=calling-c-code-from-java-using-jna</link>
		<comments>http://stuf.ro/calling-c-code-from-java-using-jna/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 22:48:03 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=814</guid>
		<description><![CDATA[I recently wrote an article about calling C code from Java using JNI. Another way to call C code from Java is to use Java Native Access, which makes things significantly easier. First off, we&#8217;ll need to write the C library. Create a ctest.c file containing a simple helloFromC function: /* ctest.c */ &#160; #include [...]]]></description>
		<wfw:commentRss>http://stuf.ro/calling-c-code-from-java-using-jna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing photos from iPhone on Mac OS X</title>
		<link>http://stuf.ro/importing-photos-from-iphone-on-mac-os-x/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=importing-photos-from-iphone-on-mac-os-x</link>
		<comments>http://stuf.ro/importing-photos-from-iphone-on-mac-os-x/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 13:44:28 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=810</guid>
		<description><![CDATA[To copy your photos from iPhone without synchronizing with iTunes: Open &#8220;Preview&#8221; (you can find it in the Applications folder) Choose File &#62; Import from iPhone Choose the folder in the &#8220;Import To&#8221; dropdown Click &#8220;Import All&#8221; (or select the ones you wish to import and click &#8220;Import&#8221;)]]></description>
		<wfw:commentRss>http://stuf.ro/importing-photos-from-iphone-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling C code from Java using JNI</title>
		<link>http://stuf.ro/calling-c-code-from-java-using-jni/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=calling-c-code-from-java-using-jni</link>
		<comments>http://stuf.ro/calling-c-code-from-java-using-jni/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 22:53:15 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=790</guid>
		<description><![CDATA[In this tutorial we&#8217;ll be creating a Java application calling code from a native library. We&#8217;ll have a Java application called HelloWorld which will call the function helloFromC from a shared library named &#8220;ctest&#8220;, using Java Native Interface. First off, we&#8217;ll create a file named HelloWorld.java to contain the HelloWorld class. /* HelloWorld.java */ &#160; [...]]]></description>
		<wfw:commentRss>http://stuf.ro/calling-c-code-from-java-using-jni/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ignoring local changes with Git</title>
		<link>http://stuf.ro/ignoring-local-changes-with-git/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ignoring-local-changes-with-git</link>
		<comments>http://stuf.ro/ignoring-local-changes-with-git/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 21:13:52 +0000</pubDate>
		<dc:creator>Radu</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://stuf.ro/?p=775</guid>
		<description><![CDATA[If you have configuration files or any other files in the local repository that you would like to keep as they are without the danger of adding them by mistake in a commit, you can specify that using the local git exclude file and update-index.]]></description>
		<wfw:commentRss>http://stuf.ro/ignoring-local-changes-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

