<?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>techno.blog(&#34;Dion&#34;) &#187; programming</title>
	<atom:link href="http://almaer.com/blog/tag/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://almaer.com/blog</link>
	<description>blogging about life, the universe, and everything tech</description>
	<lastBuildDate>Tue, 28 Aug 2012 14:41:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Optional typing and dynamic languages</title>
		<link>http://almaer.com/blog/optional-typing-and-dynamic-languages</link>
		<comments>http://almaer.com/blog/optional-typing-and-dynamic-languages#comments</comments>
		<pubDate>Fri, 15 Aug 2008 16:52:19 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[ecmascript]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/optional-typing-and-dynamic-languages</guid>
		<description><![CDATA[After listening to Brendan talk about typing on the latest Open Web Podcast episode on ECMAScript Harmony it got me thinking again about optional typing.
It has always bugged me a little to think of type information in my nice clean dynamic languages (Ruby, JavaScript, Python, Perl, etc.).
Looking at even the simplest of code like this [...]]]></description>
			<content:encoded><![CDATA[<p>After listening to Brendan talk about typing on the <a href="http://openwebpodcast.com/episode-2-brendan-eich-and-arun-ranganathan-on-ecmascript-harmony">latest Open Web Podcast episode on ECMAScript Harmony</a> it got me thinking again about optional typing.</p>
<p>It has always bugged me a little to think of type information in my nice clean dynamic languages (Ruby, JavaScript, Python, Perl, etc.).</p>
<p>Looking at even the simplest of code like this (taken from Mike Chamber&#8217;s <a href="http://www.mikechambers.com/blog/2008/08/14/connecting-to-an-xmpp-jabber-server-with-the-xiff-as3-library/">XMPP server in ActionScript 3</a>)</p>
<pre language="javascript">
var room:Room = new Room(connection);
</pre>
<p>It irks me. Just work out that it is a room already won&#8217;t you? I know you can do it? You CAN do it. So, leave it out in this case.</p>
<p>Although the type information is optional, it seems that a lot of the code that I have seen in AS3 puts types in all over the place. I somewhat like the idea of using types when you really need them, such as for clear documentation of a core library, or some performance issue that you find is an issue (note: that becomes an issue, not one that is assumed!)</p>
<p>Once you open the door though, can people play that way? Is giving the programmer a bit switch of &#8220;shall I put the type in here?&#8221; every few seconds a good thing? Especially when the tools try to put the type in all the time?</p>
<p>I also found it very interesting when Brendan talked about how adding type information can actually hurt performance, sharing an example of when <code>var foo:int</code> doesn&#8217;t do what you actually need. For me, performance is pretty much out of the window, now, and definitely in the future.</p>
<p>So, I lean towards not needing it. But then I flip over the cards and see stuff like this (note: a mock example):</p>
<pre language="javascript">
/**
 * @type Room
 */
var room = new Room(connection);
</pre>
<p>Ugh. Now we have the worst of all words. We are documenting the code out of band. This is often done for some jsdoc-like tool that will generate docs for you. The problems are:</p>
<ul>
<li>The language itself has no idea about this information. The compiler. Nor, runtime. If there was something that could be done for performance, it couldn&#8217;t be</li>
<li>How easy would it be to get this out of date. If you change the type no one is going to complain. There is no validation here.</li>
<li>Way more verbose!</li>
</ul>
<p>This alone makes me think that I would rather have optional types just to avoid any hacks like this.</p>
<p>You?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/optional-typing-and-dynamic-languages/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Lisa Awards: Community Waiting for an Update</title>
		<link>http://almaer.com/blog/lisa-awards-community-waiting-for-an-update</link>
		<comments>http://almaer.com/blog/lisa-awards-community-waiting-for-an-update#comments</comments>
		<pubDate>Sat, 01 Mar 2008 15:54:34 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[awardlisa]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/lisa-awards-community-waiting-for-an-update</guid>
		<description><![CDATA[
Man, what a wait. 10 years and counting? The community has started to take hold and have updated Perl 5 a lot recently, which most people outside of the core community never see as they wait for the Big One. When Perl 6 and Parrot really hit primetime, I wonder what will happen?
What about the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://almaer.com/blog/category/comic"><img src='http://almaer.com/blog/uploads/lisa-communitywaiting.png' alt='Lisa Awards: Community Waiting for an Update' border='0'/></a></p>
<p>Man, what a wait. 10 years and counting? The community has started to take hold and have updated Perl 5 a lot recently, which most people outside of the core community never see as they wait for the Big One. When Perl 6 and Parrot really hit primetime, I wonder what will happen?</p>
<p>What about the <a href="http://almaer.com/blog/category/awardlisa">other awards</a>?</p>
<ul>
<li><a href="http://almaer.com/blog/lisa-awards-lifetime-achievement">Lifetime Achievement</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-community-waiting-for-an-update">Community Waiting for an Update </a></li>
<li><a href="http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime">Biggest Hack for a Language Runtime</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language">Most Original Name for a New Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-format-restrictive-language">Most Format Restrictive Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language">Best Comeback for a Programming Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-overloaded-product-name">Most Overloaded Product Name</a></li>
</ul>
<p>Got some ideas for awards you would give?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/lisa-awards-community-waiting-for-an-update/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lisa Awards: Biggest Hack for a Language Runtime</title>
		<link>http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime</link>
		<comments>http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime#comments</comments>
		<pubDate>Fri, 29 Feb 2008 15:33:07 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[awardlisa]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime</guid>
		<description><![CDATA[
People make fun of the Ruby MRI runtime. The Java and Pythonistas giggle. What is interesting though is how it has been good enough for a lot of people. However, there is no reason for a Ruby runtime to be that slow, so it is great to see the competition across YARV, Rubinious, and of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://almaer.com/blog/category/comic"><img src='http://almaer.com/blog/uploads/lisa-biggesthack.png' alt='Lisa Awards: Biggest Hack for a Language Runtime' border='0'/></a></p>
<p>People make fun of the Ruby MRI runtime. The Java and Pythonistas giggle. What is interesting though is how it has been good enough for a lot of people. However, there is no reason for a Ruby runtime to be that slow, so it is great to see the competition across YARV, Rubinious, and of course JRuby. </p>
<p>The beauty of being slow, is that you have a lot of room to get faster :)</p>
<p>Want to learn about Ruby 1.9? Matz came to Google the other day to talk about it:</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/oEkJvvGEtB4&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/oEkJvvGEtB4&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
What about the <a href="http://almaer.com/blog/category/awardlisa">other awards</a>?</p>
<ul>
<li><a href="http://almaer.com/blog/lisa-awards-lifetime-achievement">Lifetime Achievement</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-community-waiting-for-an-update">Community Waiting for an Update </a></li>
<li><a href="http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime">Biggest Hack for a Language Runtime</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language">Most Original Name for a New Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-format-restrictive-language">Most Format Restrictive Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language">Best Comeback for a Programming Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-overloaded-product-name">Most Overloaded Product Name</a></li>
</ul>
<p>Got some ideas for awards you would give?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lisa Awards: Most Original Name for a New Language</title>
		<link>http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language</link>
		<comments>http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language#comments</comments>
		<pubDate>Thu, 28 Feb 2008 15:06:41 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[awardlisa]]></category>
		<category><![CDATA[d]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language</guid>
		<description><![CDATA[
You have the originally named languages of A, B, and the popular C. Then Bjarne Stroustrup gets clever and goes for C++. Anders comes along with C# and adds the musical touch.
Walter Bright creates a language that &#8220;originates as a re-engineering of C++, but even though it is predominantly influenced by that language, it is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://almaer.com/blog/category/comic"><img src='http://almaer.com/blog/uploads/lisa-languagename.png' alt='Lisa Awards: Most Original Name for a New Language' border='0'/></a></p>
<p>You have the originally named languages of A, B, and the popular C. Then Bjarne Stroustrup gets clever and goes for C++. Anders comes along with C# and adds the musical touch.</p>
<p>Walter Bright creates a language that &#8220;originates as a re-engineering of C++, but even though it is predominantly influenced by that language, it is not a variant of C++. D has redesigned some C++ features and has been influenced by concepts used in other programming languages, such as Java, C# and Eiffel.&#8221;</p>
<p>Walter then named the language &#8230;. <a href="http://en.wikipedia.org/wiki/D_programming_language">D</a>.</p>
<p>Other entrants are of course <a href="http://en.wikipedia.org/wiki/E_programming_language">E</a>, and the very new <a href="http://en.wikipedia.org/wiki/Arc_programming_language">Arc</a>.</p>
<p>What about the <a href="http://almaer.com/blog/category/awardlisa">other awards</a>?</p>
<ul>
<li><a href="http://almaer.com/blog/lisa-awards-lifetime-achievement">Lifetime Achievement</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-community-waiting-for-an-update">Community Waiting for an Update </a></li>
<li><a href="http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime">Biggest Hack for a Language Runtime</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language">Most Original Name for a New Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-format-restrictive-language">Most Format Restrictive Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language">Best Comeback for a Programming Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-overloaded-product-name">Most Overloaded Product Name</a></li>
</ul>
<p>Got some ideas for awards you would give?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Lisa Awards: Most Format Restrictive Language</title>
		<link>http://almaer.com/blog/lisa-awards-most-format-restrictive-language</link>
		<comments>http://almaer.com/blog/lisa-awards-most-format-restrictive-language#comments</comments>
		<pubDate>Wed, 27 Feb 2008 15:50:06 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[awardlisa]]></category>
		<category><![CDATA[fortran]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/lisa-awards-most-format-restrictive-language</guid>
		<description><![CDATA[
Fortran pre-90 was very restrictive. There is the magic of column one, the line numbers, etc. 
The original Fortran was written for the IBM 704 and you programmed it on punch cards which is why the restrictions were in place. Before Fortran, most of the community were coding using assembler, and Fortran was a factor [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://almaer.com/blog/category/comic"><img src='http://almaer.com/blog/uploads/lisa-restrictivelanguage.png' alt='Lisa Awards: Most Format Restrictive Language' border='0'/></a></p>
<p>Fortran pre-90 was very restrictive. There is the magic of column one, the line numbers, etc. </p>
<p>The original Fortran was written for the IBM 704 and you programmed it on punch cards which is why the restrictions were in place. Before Fortran, most of the community were coding using assembler, and Fortran was a factor of 20 more concise. Take that modern Ruby!</p>
<p>There were some close runners up. <a href="http://en.wikipedia.org/wiki/Fortran#Fortran_90">Fortran 90</a> fixed a bunch of these issues, however it was a touch too late.<br />
Some forms of Basic has some of the issues too, namely with the explicit line numbers.</p>
<p>Python should maybe win the award since it is a very modern language, and the restrictiveness that people love or hate are not due to computer needs, but rather a benevolent dictator and his opinions :)</p>
<p>Fortran has also won the award for &#8220;programming language name that sounds like a robot from the future&#8221;.</p>
<p>What about the <a href="http://almaer.com/blog/category/awardlisa">other awards</a>?</p>
<ul>
<li><a href="http://almaer.com/blog/lisa-awards-lifetime-achievement">Lifetime Achievement</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-community-waiting-for-an-update">Community Waiting for an Update </a></li>
<li><a href="http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime">Biggest Hack for a Language Runtime</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language">Most Original Name for a New Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-format-restrictive-language">Most Format Restrictive Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language">Best Comeback for a Programming Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-overloaded-product-name">Most Overloaded Product Name</a></li>
</ul>
<p>Got some ideas for awards you would give?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/lisa-awards-most-format-restrictive-language/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lisa Awards: Best Comeback for a Programming Language</title>
		<link>http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language</link>
		<comments>http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language#comments</comments>
		<pubDate>Tue, 26 Feb 2008 15:35:15 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[erlang]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language</guid>
		<description><![CDATA[
If you had mentioned Erlang a few years ago people would have scoffed unless you were programming a telco switch. Now you have Ruby developers spending time checking it out, and dealing with some of the ugliness of the methodname/1 language itself.
You could argue that JavaScript is making a comeback with the Ajax universe expanding [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://almaer.com/blog/category/comic"><img src='http://almaer.com/blog/uploads/lisa-comebacklanguage.png' alt='Lisa Awards: Best Comeback for a Programming Language' border='0'/></a></p>
<p>If you had mentioned Erlang a few years ago people would have scoffed unless you were programming a telco switch. Now you have Ruby developers spending time checking it out, and dealing with some of the ugliness of the methodname/1 language itself.</p>
<p>You could argue that JavaScript is making a comeback with the Ajax universe expanding all over, but it isn&#8217;t like JavaScript has ever disappeared.</p>
<p>The <em>Academy of Computing and Machinery</em> also looked at Lisp, but that hasn&#8217;t come back yet&#8230; although maybe it will be the language for 2009? Or Smalltalk?</p>
<p>Erlang has previously won awards for &#8220;Best Movie for a Programming Language&#8221;:</p>
<p><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-5830318882717959520&#038;hl=en" flashvars=""> </embed></p>
<p>What about the <a href="http://almaer.com/blog/category/awardlisa">other awards</a>?</p>
<ul>
<li><a href="http://almaer.com/blog/lisa-awards-lifetime-achievement">Lifetime Achievement</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-community-waiting-for-an-update">Community Waiting for an Update </a></li>
<li><a href="http://almaer.com/blog/lisa-awards-biggest-hack-for-a-language-runtime">Biggest Hack for a Language Runtime</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-original-name-for-a-new-language">Most Original Name for a New Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-format-restrictive-language">Most Format Restrictive Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language">Best Comeback for a Programming Language</a></li>
<li><a href="http://almaer.com/blog/lisa-awards-most-overloaded-product-name">Most Overloaded Product Name</a></li>
</ul>
<p>Got some ideas for awards you would give?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/lisa-awards-best-comeback-for-a-programming-language/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Declares</title>
		<link>http://almaer.com/blog/microsoft-declares</link>
		<comments>http://almaer.com/blog/microsoft-declares#comments</comments>
		<pubDate>Thu, 14 Feb 2008 18:45:51 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/microsoft-declares</guid>
		<description><![CDATA[
Paul Krill asked Bill Gates about declarative languages and how they are the future (and ironically the past!). Bill talked about some of the work happening at Microsoft:

&#8220;Most code that&#8217;s written today is procedural code. And there&#8217;s been this holy grail of development forever, which is that you shouldn&#8217;t have to write so much [procedural] [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://almaer.com/blog/category/comic"><img src='http://almaer.com/blog/uploads/msdeclares.png' alt='Microsoft Declares' /></a></p>
<p>Paul Krill asked Bill Gates about <a href="http://www.infoworld.com/article/08/02/11/gates-declarative_1.html">declarative languages</a> and how they are the future (and ironically the past!). Bill talked about some of the work happening at Microsoft:</p>
<blockquote><p>
&#8220;Most code that&#8217;s written today is procedural code. And there&#8217;s been this holy grail of development forever, which is that you shouldn&#8217;t have to write so much [procedural] code,&#8221; Gates said. &#8220;We&#8217;re investing very heavily to say that customization of applications, the dream, the quest, we call it, should take a tenth as much code as it takes today.&#8221;</p>
<p>&#8220;You should be able to do things on a declarative basis,&#8221; Gates continued. But this has not caught on partially because of weak data models &#8212; first Codasyl and then relational. Stronger data models since have emerged, such as rich schemas around XML as well as modeling work being done by Microsoft and others, Gates said. &#8220;We&#8217;re bringing the data models up to be much, much richer, and we think in that environment, a lot of business logic can be done in a declarative form. Now, we haven&#8217;t totally proven this yet. We&#8217;re doing a lot of internal developments ourselves that way,&#8221; including some Microsoft business applications, he said.</p>
<p>&#8220;We&#8217;re not here yet saying that [a declarative language has] happened and you should write a ton less procedural code, but that&#8217;s the direction the industry is going,&#8221; Gates said. &#8220;And, despite the fact that it&#8217;s taken longer than people expected, we really believe in it. It&#8217;s something that will change software development but more like in a five- to eight-year timeframe than overnight,&#8221; he said.
</p></blockquote>
<p>I am guessing that the work of Doug Purdy, ChrisAn, and Don Box is fitting into this world, as well the mentioned work of Brad Lovering.</p>
<p>But&#8230;. maybe the future is a port of <a href="http://commons.apache.org/jelly/">Jelly</a> ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/microsoft-declares/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Larry Wall: Programming is Hard, Let&#8217;s Go Scripting&#8230;</title>
		<link>http://almaer.com/blog/larry-wall-programming-is-hard-lets-go-scripting</link>
		<comments>http://almaer.com/blog/larry-wall-programming-is-hard-lets-go-scripting#comments</comments>
		<pubDate>Sat, 05 Jan 2008 13:40:58 +0000</pubDate>
		<dc:creator>dion</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[larrywall]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/larry-wall-programming-is-hard-lets-go-scripting</guid>
		<description><![CDATA[Larry takes a high level view of the past, present, and future, to create a case for Perl 6.
I hope the future isn&#8217;t so far out that Will Smith is the only person alive to see it&#8230;. along with some Zombies.

Scripting
But basically, scripting is not a technical term. When we call something a scripting language, [...]]]></description>
			<content:encoded><![CDATA[<p>Larry <a href="http://www.perl.com/pub/a/2007/12/06/soto-11.html">takes a high level view of the past, present, and future, to create a case for Perl 6</a>.</p>
<p>I hope the future isn&#8217;t so far out that Will Smith is the only person alive to see it&#8230;. along with some Zombies.</p>
<blockquote><p>
<b>Scripting</b></p>
<p>But basically, scripting is not a technical term. When we call something a scripting language, we&#8217;re primarily making a linguistic and cultural judgment, not a technical judgment.</p>
<p>I see scripting as one of the humanities. It&#8217;s our linguistic roots showing through.</p>
<p><b>Declarational</b></p>
<p>In Lua, an object is just a hash, and there&#8217;s a bit of syntactic sugar to call a hash element if it happens to contain code. Thats all there is. They don&#8217;t even have classes. Anything resembling inheritance has to be handled by explicit delegation.</p>
<p><b>Prototype vs. Class</b></p>
<p>Real organisms just copy their DNA when they reproduce. They don&#8217;t have some DNA of their own, and an @ISA array telling you which parent objects contain the rest of their DNA.</p>
<p><b>Functional or object-oriented</b></p>
<p>Of course, some of us can&#8217;t make up our minds whether we&#8217;d rather emulate the logical Sherlock Holmes or sociable Dr. Watson. Fortunately, scripting is not incompatible with either of these approaches, because both approaches can be made more approachable to normal folk.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/larry-wall-programming-is-hard-lets-go-scripting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
