<?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>lando.blog &#187; Fun</title>
	<atom:link href="http://www.landoweb.com/tag/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.landoweb.com</link>
	<description>The ramblings of an almost madman</description>
	<lastBuildDate>Mon, 28 Jun 2010 09:42:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Cool Text Images</title>
		<link>http://www.landoweb.com/2009/06/08/cool-text-images/</link>
		<comments>http://www.landoweb.com/2009/06/08/cool-text-images/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 14:19:14 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[funny]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[text image]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=312</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2009/06/08/cool-text-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Real Truth About The Financial Crisis</title>
		<link>http://www.landoweb.com/2009/05/19/the-real-truth-about-the-financial-crisis/</link>
		<comments>http://www.landoweb.com/2009/05/19/the-real-truth-about-the-financial-crisis/#comments</comments>
		<pubDate>Tue, 19 May 2009 12:16:17 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[funny]]></category>
		<category><![CDATA[chiefs]]></category>
		<category><![CDATA[financial crisis]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[indians]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[poor lad]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=285</guid>
		<description><![CDATA[Saw this on reddit.com. How true is that..]]></description>
			<content:encoded><![CDATA[<p>Saw this on reddit.com. How true is that..</p>
<p><img class="alignnone size-full wp-image-286" title="contstructionworkers_web" src="http://www.landoweb.com/wp-content/contstructionworkers_web.jpg" alt="contstructionworkers_web" width="600" height="867" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2009/05/19/the-real-truth-about-the-financial-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Java Web Framework</title>
		<link>http://www.landoweb.com/2008/03/31/custom-java-web-framework/</link>
		<comments>http://www.landoweb.com/2008/03/31/custom-java-web-framework/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 20:18:52 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Java Framework]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=70</guid>
		<description><![CDATA[I mentioned a while back that I had the beginnings of a new web framework in Java, and I have managed to get a little bit more work done on it since then. It&#8217;s still not ready to launch anything but as soon as it is I will host it on my machine and let [...]]]></description>
			<content:encoded><![CDATA[<p>I mentioned a while back that I had the beginnings of a new web framework in Java, and I have managed to get a little bit more work done on it since then. It&#8217;s still not ready to launch anything but as soon as it is I will host it on my machine and let you take a look. I have always been a great believer in not reinventing the wheel, so you might be asking &#8220;why the heck have you done this then?&#8221; and the answer is I never intended to do it. I started playing one day, and then started playing some more, adding this and that until it turned into a mini project.</p>
<p><span id="more-70"></span>I do like the idea of completely understanding your chosen framework though because having used a few now it is really annoying not understanding how some things work and having to read all the source code (if available) just to get an idea. That would probably be my biggest problem with Rails. All the &#8220;magic&#8221; gets in the way. I know that the &#8220;magic&#8221; is completely optional, but the problem is everyone gets used to it and show examples using it and then when you want to learn how to overwrite it you have to read the documentation, and most of the time the source code. That&#8217;s one reason for liking PHP as the magic is not there really and it is pretty easy to see where stuff is being loaded from etc. The truth is that I will never like any of them as much as I like Java though. I absolutely love to code in Java and I understand it more than any other language. My problem is that J2EE is just way too much &#8211; way way too much, especially for consumer applications. From what I have heard from Carl, he says that Spring is very good and I believe him as I have had a look at it in the past and was impressed.</p>
<p>I love some of the libraries available in Java and I am trying to integrate them into the framework, such asÂ  Hibernate and apache logging among many others. My main purpose is trying not reinvent things too much. Why try to create n amazing web server? I mean if I spent enough time working on it I am sure that I could, but what&#8217;s the point when Apache is so good and has so many modules available for all purposes? I want to create a simple single threaded web server that I can then then cluster over an apache web server to create hopefully a more easily scalable framework, but at the same time really simple. I am going to be working on a few scripts that will easily create the clusters config files and also the start, restart and stop scripts based on the developers options, a bit like what can be done in Rails with mongrel. There are a few other tools out there that can be used that will monitor particular processes and report, restart or pretty much do whatever you want if they fail, stop or use too much memory. The main task that I have to do is write my own scripting language. I want this to be as simple as possible, and to be honest if there already exists a nice one (I have not yet looked) I will definitely consider integrating that. Although again, I would like to be able to do my own as I would then fully understand how it works and can quickly fix/update it. After all the framework is for me, not everyone else so I don&#8217;t really care what other people would say about what libraries I use.</p>
<p>Anyway, I will keep you up-to-date when things happen but don&#8217;t expect it to be any time soon. I am trying to actually find something which pays and this is not it (well not yet anyway &#8211; I wish <img src='http://www.landoweb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )Â  plus it&#8217;s only for fun (but very interesting).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2008/03/31/custom-java-web-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.530 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-29 22:13:24 -->
