<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:ymaps="http://api.maps.yahoo.com/Maps/V2/AnnotatedMaps.xsd">

<channel>
	<title>The Codebelay Blog &#187; Erlang</title>
	<atom:link href="http://www.codebelay.com/blog/category/erlang/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codebelay.com/blog</link>
	<description>Safely Reach New Tech Heights Through Our Startup Insights</description>
	<lastBuildDate>Wed, 25 Jan 2012 19:12:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Twitter: Thoughts That Are Hard to Fit Into 140 Characters</title>
		<link>http://www.codebelay.com/blog/2010/06/01/twitter-thoughts-that-are-hard-to-fit-into-140-characters/</link>
		<comments>http://www.codebelay.com/blog/2010/06/01/twitter-thoughts-that-are-hard-to-fit-into-140-characters/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 09:20:36 +0000</pubDate>
		<dc:creator>barce</dc:creator>
				<category><![CDATA[Erlang]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[TechBiz]]></category>
		<category><![CDATA[WebApps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.codebelay.com/blog/?p=786</guid>
		<description><![CDATA[What are the limits of expressing thoughts in Twitter? Here&#8217;s a powerful but inefficient (when run) thought that can be expressed on Twitter, a quick sort in Erlang in 126 characters. qsort([]) -> []; qsort([Pivot&#124;T]) -> qsort([X &#124;&#124; X]]></description>
			<content:encoded><![CDATA[<p></p><p>What are the limits of expressing thoughts in Twitter?</p>
<p>Here&#8217;s a powerful but inefficient (when run) thought that can be expressed on Twitter, a quick sort in Erlang in 126 characters.</p>
<div style="padding: 5px 5px 5px 5px; background: #000; color: #fff;">
qsort([]) -> [];<br />
qsort([Pivot|T]) -><br />
   qsort([X || X <- T, X < Pivot])<br />
   ++ [Pivot] ++<br />
   qsort([X || X <- T, X >= Pivot]).
</div>
<p>A lot of Perl one-liners can fit into a tweet &#8211; powerful and useful ones.</p>
<p>Haikus can be expressed in a tweet.</p>
<p>The answer to the question, &#8220;What form of body language do most FBI interrogators consider to be the most telling?&#8221; can be answered in a tweet.</p>
<p>A marriage proposal can be answered in a tweet.</p>
<p>You can propose the concept of a hash tag in a tweet:</p>
<p><a href="http://www.flickr.com/photos/25419820@N00/1236321800"><img src="http://farm2.static.flickr.com/1410/1236321800_a275c8e8c2.jpg" alt="hashtag proposal" /><br />
</a></p>
<p>However, there are many thoughts that seem to be difficult to fit into a tweet:</p>
<ul>
<li>The Pythagorean Theorem and one of its many proofs
<li>Anselm&#8217;s Ontological Proof for God&#8217;s Existence
<li>Merge Sort in Ruby
<li>Merge Sort in PHP
<li>Why you should or shouldn&#8217;t outsource
<li>What qualities make a great tech  hire
<li>Well-thought out political proofs
<li>How to subtly tell someone something in an indirect way with the only others knowing being those in the know
<li>A legally-binding, work contract &#8211; It would be amazing if you could!
<li>The mechanism for how DNA works
</ul>
<p>Twitter encourages the laconic expression of thought which means plenty of affirmations, aphorisms, insults, congratulations, and reminders that can display any combination of sharp wit, pointed humor, and succinctness of expression. The <em>mot juste</em> becomes very important with the constraint of 140 characters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codebelay.com/blog/2010/06/01/twitter-thoughts-that-are-hard-to-fit-into-140-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quicksort in Erlang</title>
		<link>http://www.codebelay.com/blog/2009/04/12/a-quicksort-in-erlang/</link>
		<comments>http://www.codebelay.com/blog/2009/04/12/a-quicksort-in-erlang/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 23:07:54 +0000</pubDate>
		<dc:creator>barce</dc:creator>
				<category><![CDATA[Erlang]]></category>

		<guid isPermaLink="false">http://www.codebelay.com/blog/?p=552</guid>
		<description><![CDATA[qsort([]) -> []; qsort([Pivot&#124;T]) -> &#160;&#160; qsort([X &#124;&#124; X L=[234,322,233,5,1000]. %% [234,322,233,5,1000] %% %% 3> lib_misc:qsort(L). %% %% qsort will return: %% [5,233,234,322,1000]]]></description>
			<content:encoded><![CDATA[<p></p><div style="background: #000; color: #fff; margin: 5px 5px 5px 5px; padding: 5px 5px 5px 5px;">
<p>qsort([]) -> [];<br />
qsort([Pivot|T]) -><br />
&nbsp;&nbsp;  qsort([X || X <- T, X < Pivot])<br />
&nbsp;&nbsp;  ++ [Pivot] ++<br />
&nbsp;&nbsp;  qsort([X || X <- T, X >= Pivot]).</p>
<p>%% Let L be a list of unsorted numbers.<br />
%% 2> L=[234,322,233,5,1000].<br />
%% [234,322,233,5,1000]<br />
%%<br />
%% 3> lib_misc:qsort(L).<br />
%%<br />
%% qsort will return:<br />
%% [5,233,234,322,1000]</p>
</div>
<p><br/><br />
<br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codebelay.com/blog/2009/04/12/a-quicksort-in-erlang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.273 seconds -->

