<?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>Sysconfig&#039;s Blog &#187; Development</title>
	<atom:link href="http://sysconfig.ossafe.org/category/dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://sysconfig.ossafe.org</link>
	<description>Linux, BSD, Mac OS, the Internet, Programming, and other things</description>
	<lastBuildDate>Sun, 16 May 2010 23:11:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Why do Twitter clients use Adobe AIR?</title>
		<link>http://sysconfig.ossafe.org/2009/06/why-do-twitter-clients-use-adobe-air/</link>
		<comments>http://sysconfig.ossafe.org/2009/06/why-do-twitter-clients-use-adobe-air/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 11:56:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex/Flash]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://sysconfig.ossafe.org/?p=78</guid>
		<description><![CDATA[@tkramar raised the question on Twitter, why every desktop client for that service seems to be built on top of Adobe Air (here). That&#8217;s something, I also was wondering about. And in fact you often hear people complain: &#8220;Why AIR? Why not a native application?&#8221; Let me try to give the answer while having breakfast. [...]]]></description>
			<content:encoded><![CDATA[<p>@<a href="http://twitter.com/tkramar" target="_blank">tkramar</a> raised the question on Twitter, why every desktop client for that service seems to be built on top of Adobe Air (<a href="http://twitter.com/tkramar/status/2227615696" target="_blank">here</a>). That&#8217;s something, I also was wondering about. And in fact you often hear people complain: <em>&#8220;Why AIR? Why not a native application?&#8221;</em> Let me try to give the answer while having breakfast. <img src='http://sysconfig.ossafe.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><span id="more-78"></span></p>
<p>First we need to look at what <a href="http://www.adobe.com/products/air/" target="_blank">Adobe Air</a> is: It is a run-time environment, ported to all common operating systems, which allows to run applications built with <a href="http://www.adobe.com/products/flex/" target="_blank">Adobe Flex</a> on almost any desktop rather than embedded with a browser (where you can run the same applications with little or no modifications using the well-known Flash Player Plugin).</p>
<p>So, we know that AIR developers use Flex. Why is that? That&#8217;s as easy to answer: Flex targets front-end/GUI designers in the first place. Together with Flex, Actionscript, and Flash, you can build quite neat and shiny user interfaces. Most of the &#8220;business logic&#8221; (I know that sounds funny in this context) is not part of it though. The strength of Flex is to use external data sources like web services. On the one hand, it&#8217;s certainly a limitation, but on the other hand that&#8217;s exactly why it&#8217;s being used for Twitter clients, which don&#8217;t do much more than using Twitter&#8217;s API (web service) to display tweets, subsets of tweets, search results, friends and stalkers (erm followers, of course).</p>
<p>So if you want to bring a desktop application to the market, which heavily depends on web services, Flex is probably one of the fastest ways to get there. And Adobe AIR brings the application to the desktop &#8212; on all common operating systems.</p>
<p>Yes, it&#8217;s proprietary software, and closed source. However, anyone can use it free of charge (the Flex SDK is free, the not required Adobe Flex Builder is not). Pretty similar to PDF and Flash. But the licensing policy is another discussion, anyway.</p>
]]></content:encoded>
			<wfw:commentRss>http://sysconfig.ossafe.org/2009/06/why-do-twitter-clients-use-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Octopus &#8212; Logging Server in C#</title>
		<link>http://sysconfig.ossafe.org/2009/06/octopus-logging-server-in-c/</link>
		<comments>http://sysconfig.ossafe.org/2009/06/octopus-logging-server-in-c/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 19:21:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.the-ally.co.uk/?p=40</guid>
		<description><![CDATA[
I have to admit that I really like C#. The last 4 or 5 months, I&#8217;ve hardly touched any other programming language. And so it happened to be my first choice when I was asked to develop a &#8220;reasonably fast&#8221; logging server.
So what is this Octopus thing about? In a nutshell it&#8217;s a server, which [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>I have to admit that I really like C#. The last 4 or 5 months, I&#8217;ve hardly touched any other programming language. And so it happened to be my first choice when I was asked to develop a &#8220;reasonably fast&#8221; logging server.</p>
<p>So what is this Octopus thing about? In a nutshell it&#8217;s a server, which takes HTTP requests with a defined set of URL parameters, confirms receipt the client, and then asynchronously stores the request into a database. The interesting bit is the part between accepting the request and storing it to the DB. </p>
<p>Basically, we&#8217;ve got three levels of storage: a in-memory queue, a flat file buffer, and the database. The tricky thing was to optimise processing, while still being fault-tolerant. I kind of managed that, I think. Octopus can (depending on the hardware it runs on) easily accept up to 2,000 requests per second, and will store them into either a MySQL or SQLite database at the moment. Please read more about it on the <a href="http://octopus.ossafe.org" target="_blank">Octopus Website</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://sysconfig.ossafe.org/2009/06/octopus-logging-server-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Waking up from hibernation</title>
		<link>http://sysconfig.ossafe.org/2008/09/waking-up-from-hibernation/</link>
		<comments>http://sysconfig.ossafe.org/2008/09/waking-up-from-hibernation/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 23:01:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://blog.the-ally.co.uk/?p=26</guid>
		<description><![CDATA[After years of Systems Administration I have completely forgotten how much I used to like developing in Java. My current employer gave me that opportunity recently. So I took ownership and responsibility to de-hibernate myself (my Java knowledge became a bit rusty) and to start working on a project which separates the website&#8217;s business logic [...]]]></description>
			<content:encoded><![CDATA[<p>After years of Systems Administration I have completely forgotten how much I used to like developing in Java. My current employer gave me that opportunity recently. So I took ownership and responsibility to de-hibernate myself (my Java knowledge became a bit rusty) and to start working on a project which separates the website&#8217;s business logic layer from the database layer. That becomes necessary as we want to re-design our infrastructure in a way that enables us to be as platform independent and as scalable as possible.  </p>
<p>On the one hand, we are not even entirely sure if we&#8217;ll stick to MySQL or switch to any other DB server type, hence we must not use SQL dialect specific code within the application. On the other hand, we want to provide a SOAP endpoint internally, which allows us to access data from all sorts of applications and clearly separates the business logic of all sorts of clients from our actual data store.</p>
<p>In addition, caching of object structures which are mapped against data structures (or tables) would be very neat. Consequently, I suggested and started using Java with Hibernate and JAX-WS on a Glassfish Java Application Server. We might integrate an additional caching layer later. Terracotta is one of the candidates, which integrates seamlessly and can increase speed by factor 2 to 10. </p>
<p>After one week of researching, developing proofs of concept and presenting a first prototype, I am sooo excited about all that. <img src='http://sysconfig.ossafe.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   I always loved Java, and again I remember why.</p>
]]></content:encoded>
			<wfw:commentRss>http://sysconfig.ossafe.org/2008/09/waking-up-from-hibernation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
