<?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>frencaze &#187; Open Source</title>
	<atom:link href="http://blog.frencaze.com/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.frencaze.com</link>
	<description></description>
	<lastBuildDate>Wed, 17 Mar 2010 05:20:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Releasing SecureSocket</title>
		<link>http://blog.frencaze.com/2010/03/releasing-securesocket/</link>
		<comments>http://blog.frencaze.com/2010/03/releasing-securesocket/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 05:20:21 +0000</pubDate>
		<dc:creator>Jerome Poichet</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://blog.frencaze.com/?p=96</guid>
		<description><![CDATA[Releasing SecureSocket a small Objective-C/Cocoa API to UNIX TCP sockets with SSL support.
Can be found on github at http://github.com/poitch/SecureSocket
I basically been trying to write simple client to different protocols (IMAP, SMTP, NNTP &#8230;), most of which has support for both SSL and not SSL and well I&#8217;m sure there are similar solutions out there, but [...]]]></description>
			<content:encoded><![CDATA[<p>Releasing SecureSocket a small Objective-C/Cocoa API to UNIX TCP sockets with SSL support.</p>
<p>Can be found on github at <a href="http://github.com/poitch/SecureSocket">http://github.com/poitch/SecureSocket</a></p>
<p>I basically been trying to write simple client to different protocols (IMAP, SMTP, NNTP &#8230;), most of which has support for both SSL and not SSL and well I&#8217;m sure there are similar solutions out there, but this seems to be working just fine for me for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frencaze.com/2010/03/releasing-securesocket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Releasing DJParser, a simple Objective-C JSON parser</title>
		<link>http://blog.frencaze.com/2010/01/releasing-djparser-an-simple-objective-c-json-parser/</link>
		<comments>http://blog.frencaze.com/2010/01/releasing-djparser-an-simple-objective-c-json-parser/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 01:15:19 +0000</pubDate>
		<dc:creator>Jerome Poichet</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://blog.frencaze.com/?p=91</guid>
		<description><![CDATA[After going through the pain of trying to integrate other JSON parsers with my different iPhone projects, I realized it is a fairly annoying task. It&#8217;s not impossible and I eventually got it to work, but when I do quick prototype applications, I really don&#8217;t want to go through that pain.
So to solve that problem [...]]]></description>
			<content:encoded><![CDATA[<p>After going through the pain of trying to integrate other JSON parsers with my different iPhone projects, I realized it is a fairly annoying task. It&#8217;s not impossible and I eventually got it to work, but when I do quick prototype applications, I really don&#8217;t want to go through that pain.</p>
<p>So to solve that problem I created a pure Objective-C JSON parser, it is self-contained, and uses NSScanner only. It should work for Cocoa on the Mac and on the iPhone as well. Basically just drop the 2 files into your project and you can start parsing JSON.</p>
<p>This probably shouldn&#8217;t be used in a &#8220;big&#8221; project, though for small payloads I&#8217;m sure it can just do fine. It was really not designed to be performant or optimized, just functional and easy to drop in any project.</p>
<p>It is <a href="http://github.com/poitch/DJParser">hosted</a> on GitHub, and the license is basically free of use, you can give me attribution if you want to, but I&#8217;m not expecting this to be used in actual released applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frencaze.com/2010/01/releasing-djparser-an-simple-objective-c-json-parser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Releasing source code of MVC PHP web framework</title>
		<link>http://blog.frencaze.com/2009/05/releasing-source-code-of-mvc-php-web-framework/</link>
		<comments>http://blog.frencaze.com/2009/05/releasing-source-code-of-mvc-php-web-framework/#comments</comments>
		<pubDate>Sun, 17 May 2009 06:24:49 +0000</pubDate>
		<dc:creator>Jerome Poichet</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[dokin]]></category>

		<guid isPermaLink="false">http://blog.frencaze.com/?p=38</guid>
		<description><![CDATA[I have long wanted to release some of my work under some open source license and so I&#8217;m starting with my personal implementation of an MVC PHP web framework.
I wanted something very light, quick to setup, that would run on most hosting services so I wrote my own Model View Controller framework.
This framework was actually [...]]]></description>
			<content:encoded><![CDATA[<p>I have long wanted to release some of my work under some open source license and so I&#8217;m starting with my personal implementation of an MVC PHP web framework.</p>
<p>I wanted something very light, quick to setup, that would run on most hosting services so I wrote my own Model View Controller framework.</p>
<p>This framework was actually used to power a Top 5 (Photo Category) Facebook Application, and a Top 5 (Overall) Bebo Application, so it is somewhat mature. I&#8217;m sure there are issues that I&#8217;m hoping to fix in future releases. I had code spread out and gathered everything for this release, so I haven&#8217;t been able to test everything.</p>
<p>Anyway the name of the framework is dokin and can be found <a href="http://frencaze.com/source" onclick="javascript:urchinTracker('blog/dokin');">here</a>.</p>
<p>It definitely needs work on the documentation part.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frencaze.com/2009/05/releasing-source-code-of-mvc-php-web-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
