<?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; cool</title>
	<atom:link href="http://www.landoweb.com/tag/cool/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>HipHop Your Way To PHP</title>
		<link>http://www.landoweb.com/2010/02/04/hiphop-your-way-to-php/</link>
		<comments>http://www.landoweb.com/2010/02/04/hiphop-your-way-to-php/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:30:41 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=432</guid>
		<description><![CDATA[A few days ago facebook released (under opensource) their HipHop for PHP source code transformer. I remember first reading about this from an interview with a facebook employee on reddit. She mentioned that one guy was pretty much rewriting PHP to work on C++, which at the time sounded like they were working on some [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://developers.facebook.com/hiphop-php/"><img class="alignleft size-full wp-image-433" title="HipHop_logo_white" src="http://www.landoweb.com/wp-content/HipHop_logo_white.png" alt="" width="213" height="278" /></a>A few days ago facebook released (under opensource) their <a title="HipHop for PHP" href="http://developers.facebook.com/hiphop-php/" target="_blank">HipHop for PHP</a> source code transformer. I remember first reading about this from an interview with a facebook employee on reddit. She mentioned that one guy was pretty much rewriting PHP to work on C++, which at the time sounded like they were working on some compiler. The actual product though is different, they basically convert the PHP source into C++ code, and then you can use your compiler of choice (probably g++) to get it up and running. I know something about this area as my final year project at uni I created a code transformer that would take a web script in PHP -&gt; JSP -&gt; ASP and convert it into any of the others. You could basically go in any direction &#8211; plus you could add in new modules for other languages that would allow you to transfer between even more. This was far from completion (I had it working for about 50% of common functionality) but I proved that it could be done &#8211; I also showed that you could optimize the code quite significantly. I basically added rules that would find common coding patterns and transform these in the AST (abstract syntax tree). Transforming to the new language was relatively easy as the tree was already in a good shape and the transformer knew how to properly express the tree in the most optimized way. The way I see it &#8211; HipHop has the opportunity to not only transform but optimize the hell out of the code as well. They say that in practice they are seeing a 50% CPU decrease and much better memory overhead.</p>
<p>I believe that the current version is compatible with PHP5.1 and they are quickly looking to get it compatible with 5.2. There are also some bits that it wont do, such as the rarely used eval() statement and function exists checking &#8211; these are things that they cant link to as they don&#8217;t know they exist, therefore can&#8217;t compile against</p>
<p>I have always liked PHP and have watched it get better and better to the point of it being a very professional tool in the right hands. I still regularly use PHP for my own applications that I need to get out the door quickly and effciently. What makes this interesting to me is that I can also look at it as a tool of choice for applications where I wouldn&#8217;t have before used PHP. I will have to play with it a bit and see what it can do. I think it will get more interesting when they get a version that can run on Apache/lighttd etc.</p>
<p>Go and <a title="HipHop for PHP Repo" href="http://github.com/facebook/hiphop-php/wikis" target="_blank">get the code for yourself</a> and check out the video for further information.</p>
<p><object id="utv129269" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="386" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="utv_n_271242" /><param name="flashvars" value="loc=%2F&amp;autoplay=false&amp;vid=4409735" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.ustream.tv/flash/video/4409735" /><embed id="utv129269" type="application/x-shockwave-flash" width="480" height="386" src="http://www.ustream.tv/flash/video/4409735" allowscriptaccess="always" allowfullscreen="true" flashvars="loc=%2F&amp;autoplay=false&amp;vid=4409735" name="utv_n_271242"></embed></object></p>
<p>For more information on the technical challenges they face scaling Facebook, take a <a title="HipHop for Faster PHP" href="http://terrychay.com/article/hiphop-for-faster-php.shtml" target="_blank">look at this article</a> which goes into a deep enough description.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2010/02/04/hiphop-your-way-to-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Very Cool Real Life Halflife Game</title>
		<link>http://www.landoweb.com/2009/08/07/very-cool-real-life-halflife-game/</link>
		<comments>http://www.landoweb.com/2009/08/07/very-cool-real-life-halflife-game/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 15:02:40 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[funny]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[experiments]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[half life]]></category>
		<category><![CDATA[real shooting]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=354</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/WNZCS-coZjY&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/WNZCS-coZjY&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2009/08/07/very-cool-real-life-halflife-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Want Some Guice? Yes Please..</title>
		<link>http://www.landoweb.com/2009/06/12/want-some-guice-yes-please/</link>
		<comments>http://www.landoweb.com/2009/06/12/want-some-guice-yes-please/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 10:09:36 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[Google Guice]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Java Framework]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=328</guid>
		<description><![CDATA[I don&#8217;t know if you guys ever watch the Google IO presentations but if you don&#8217;t you should because sometimes you find a gem. Guice is one of those gems. Guice is a lightweight Java dependency injection framework (not another one I hear you cry) but it does look very interesting. Take a look at [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if you guys ever watch the Google IO presentations but if you don&#8217;t you should because sometimes you find a gem. <a title="Google Guice" href="http://code.google.com/p/google-guice/" target="_blank">Guice</a> is one of those gems. <a title="Google Guice" href="http://code.google.com/p/google-guice/" target="_blank">Guice</a> is a lightweight Java dependency injection framework (not another one I hear you cry) but it does look very interesting. Take a look at the video if you have time.</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/hBVJbzAagfs&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/hBVJbzAagfs&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /></object></p>
<p>Those of you that read this blog regularly will know that I have been moaning about Java web development for a while because it takes more time setting stuff up than it does actually coding the thing and it puts me off. I have been threatening the world that I would be working on my own framework but I now may not have to because <a title="Google Guice" href="http://code.google.com/p/google-guice/" target="_blank">Guice</a> actually seems to have most of the things that I was looking for. I am going to take a further look and see if their are any more cool things or any concerns.</p>
<p>It fits well with the new <a title="Google Java App Engine API" href="http://code.google.com/appengine/docs/java/gettingstarted/" target="_blank">Java app engine api</a> as you would expect and the very cool thing I liked is <a title="Google Web Toolkit" href="http://code.google.com/webtoolkit/" target="_blank">GWT</a> with GIN that can actually compile your modules/injections to Javascript so that they can be used to write the client side interface. I found that rather cool. There are a few pieces missing such as the ability to compile down method injections but in the video they confirmed this is coming soon. I now think that the app engine has finally reached the stage where I would be interested in releasing apps onto it and would recommend it to others. Yeah there are plenty of concerns about data privacy but the same can be said with any cloud environment and especially one that is hosted in the USA. As far as I see it, as long as your app is not storing data critical to national safety I don&#8217;t see a problem <img src='http://www.landoweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, I am currently setting it up, will write an app, release it onto the app engine and write something about it here with any insights I may have.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2009/06/12/want-some-guice-yes-please/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Google Wave</title>
		<link>http://www.landoweb.com/2009/06/01/google-wave/</link>
		<comments>http://www.landoweb.com/2009/06/01/google-wave/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 19:11:26 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Rantings]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[google web toolkit]]></category>
		<category><![CDATA[gwt]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wave]]></category>
		<category><![CDATA[waves]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=306</guid>
		<description><![CDATA[I have been taking a look at Google Wave and it looks very interesting. I am interested in taking a look but will most likely never get the time to. I bet some really cool things will be done with it. It&#8217;s not such a leap forward as they would like you to think but [...]]]></description>
			<content:encoded><![CDATA[<p>I have been taking a look at <a title="Google Wave" href="http://wave.google.com/" target="_blank">Google Wave</a> and it looks very interesting. I am interested in taking a look but will most likely never get the time to. I bet some really cool things will be done with it. It&#8217;s not such a leap forward as they would like you to think but it is very cool and cleverly well done. I might get around to writing a bot because they can&#8217;t be that hard compared to writing your own wave system. The cool thing is that the client was all written using <a title="Google Web Toolkit" href="http://code.google.com/webtoolkit/" target="_blank">Google Web Toolkit</a> (GWT) and they doubted that they would have been able to do it using anything else. It just goes to show the actual power of using GWT. People seem to be getting confused about it though having read other reviews and twitter traffic. It is not a service but a protocol and it is open source. The system they were showing was their implementation of the protocol.</p>
<p>It makes me laugh that the crowd has been shouting out that Google should buy Twitter over the last months, but I can see now why they havn&#8217;t been bothered. They had this under wrap for some time now and it has the capability of being pretty big. It is a very good collaboration, wiki, communication and loads of other stuff system because it is extensible and an open protocol. It will be interesting when multiple implementations are connected to each other and data is shared between multiple systems. You are also able to write services for it from the <a title="Google App Engine" href="http://code.google.com/appengine/" target="_blank">App Engine</a> so it will be interesting to see the power of apps that you will be able to create using just their tools and infrastructure.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2009/06/01/google-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spotify On Android &#8211; Very Cool!</title>
		<link>http://www.landoweb.com/2009/05/29/spotify-on-android-very-cool/</link>
		<comments>http://www.landoweb.com/2009/05/29/spotify-on-android-very-cool/#comments</comments>
		<pubDate>Fri, 29 May 2009 16:43:53 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Rantings]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[free music streaming]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[music mobile application]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=298</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="385" data="http://www.youtube.com/v/7ALGPknOsiU&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7ALGPknOsiU&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2009/05/29/spotify-on-android-very-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing To New Host (MediaTemple)</title>
		<link>http://www.landoweb.com/2008/08/28/changing-to-new-host-mediatemple/</link>
		<comments>http://www.landoweb.com/2008/08/28/changing-to-new-host-mediatemple/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:08:51 +0000</pubDate>
		<dc:creator>Landon</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Purpose]]></category>
		<category><![CDATA[Rantings]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[landoweb]]></category>
		<category><![CDATA[MediaTemple]]></category>

		<guid isPermaLink="false">http://www.landoweb.com/?p=168</guid>
		<description><![CDATA[Just to let you know that I now have my new media temple account opened and I have changed the DNS over to the new one. You will know when it has changed over because this post will not exist and there will be a new one also saying that it has completed. Unless you [...]]]></description>
			<content:encoded><![CDATA[<div class="description">Just to let you know that I now have my new media temple  account opened and I have changed the DNS over to the new one. You will know  when it has changed over because this post will not exist and there will be a  new one also saying that it has completed. Unless you get there before I manage  to write a new post that is.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.landoweb.com/2008/08/28/changing-to-new-host-mediatemple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.975 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-29 21:50:57 -->
