<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: The most important programming language today	</title>
	<atom:link href="https://programmingzen.com/the-most-important-programming-language-today/feed/" rel="self" type="application/rss+xml" />
	<link>https://programmingzen.com/the-most-important-programming-language-today/</link>
	<description>Meditations on programming, startups, and technology</description>
	<lastBuildDate>Wed, 20 Aug 2014 01:52:46 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Meteor is going to be big		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-28542</link>

		<dc:creator><![CDATA[Meteor is going to be big]]></dc:creator>
		<pubDate>Wed, 20 Aug 2014 01:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-28542</guid>

					<description><![CDATA[[&#8230;] than four years ago, I called JavaScript the most important language today. I stand by that &#8211; admittedly somewhat sensationalistic &#8211; assessment. JavaScript [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] than four years ago, I called JavaScript the most important language today. I stand by that &#8211; admittedly somewhat sensationalistic &#8211; assessment. JavaScript [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bakibilla		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-27737</link>

		<dc:creator><![CDATA[Bakibilla]]></dc:creator>
		<pubDate>Tue, 12 Jun 2012 09:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-27737</guid>

					<description><![CDATA[I would to learn Java so i want to know how market demand on java now a days]]></description>
			<content:encoded><![CDATA[<p>I would to learn Java so i want to know how market demand on java now a days</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Toni Lovergood		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-27686</link>

		<dc:creator><![CDATA[Toni Lovergood]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 23:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-27686</guid>

					<description><![CDATA[Merely  wanna  input that you have a very nice   site, I  enjoy  the  design and style  it  actually stands out.]]></description>
			<content:encoded><![CDATA[<p>Merely  wanna  input that you have a very nice   site, I  enjoy  the  design and style  it  actually stands out.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sylwester		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-27684</link>

		<dc:creator><![CDATA[Sylwester]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 08:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-27684</guid>

					<description><![CDATA[I developed server side javascipt in the 90s that were run on iPlanet application server so the idea is not new.

Today a language usually imply a runtime. JavaScript has a VM. Java has its own VM. Python might start using Parrot together with Perl6, but somewhere down the line we should split up language (as a way of explaining the idea you want to achieve) with the runtim (native, parrot, .net VM, java VM, ...)...

Think how great it would be if I could use a .net library and some java classes to create a python script that does something without having to port anything and if i find it too slow I can compile it to run nativly on my ARM cellphone.]]></description>
			<content:encoded><![CDATA[<p>I developed server side javascipt in the 90s that were run on iPlanet application server so the idea is not new.</p>
<p>Today a language usually imply a runtime. JavaScript has a VM. Java has its own VM. Python might start using Parrot together with Perl6, but somewhere down the line we should split up language (as a way of explaining the idea you want to achieve) with the runtim (native, parrot, .net VM, java VM, &#8230;)&#8230;</p>
<p>Think how great it would be if I could use a .net library and some java classes to create a python script that does something without having to port anything and if i find it too slow I can compile it to run nativly on my ARM cellphone.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nico		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-9721</link>

		<dc:creator><![CDATA[Nico]]></dc:creator>
		<pubDate>Sat, 12 Jun 2010 23:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-9721</guid>

					<description><![CDATA[Why not use Java applets on the client side? There are a few interesting examples where this works wonderful, e.g.
the &#039;go&#039; server of the popular game,
http://www.gokgs.com/applet.jsp
or an interesting thing is an online design tool (these are usually done in flash) http://designer.weebmeister.com/en/example-ultima-edition 
both really uniquely extend the web-experience of the user and have a well-tested, typed oo-language below. 
hmm, it&#039;s similar to playing a video, it was done as swf since thats a reliable way of playing them before the html5 specification came and it&#039;s still widely used.
If you look at the js team of the opera browser, it&#039;s interesting that they&#039;ve implemented a js to native conversion in order speed up execution time in the browser engine, same thing as the java hotspot virtual machine uses...
regards nico]]></description>
			<content:encoded><![CDATA[<p>Why not use Java applets on the client side? There are a few interesting examples where this works wonderful, e.g.<br />
the &#8216;go&#8217; server of the popular game,<br />
<a href="http://www.gokgs.com/applet.jsp" rel="nofollow ugc">http://www.gokgs.com/applet.jsp</a><br />
or an interesting thing is an online design tool (these are usually done in flash) <a href="http://designer.weebmeister.com/en/example-ultima-edition" rel="nofollow ugc">http://designer.weebmeister.com/en/example-ultima-edition</a><br />
both really uniquely extend the web-experience of the user and have a well-tested, typed oo-language below.<br />
hmm, it&#8217;s similar to playing a video, it was done as swf since thats a reliable way of playing them before the html5 specification came and it&#8217;s still widely used.<br />
If you look at the js team of the opera browser, it&#8217;s interesting that they&#8217;ve implemented a js to native conversion in order speed up execution time in the browser engine, same thing as the java hotspot virtual machine uses&#8230;<br />
regards nico</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: CdnGuy		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-9679</link>

		<dc:creator><![CDATA[CdnGuy]]></dc:creator>
		<pubDate>Sat, 12 Jun 2010 03:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-9679</guid>

					<description><![CDATA[The most important programming language is English (or whatever the native tongue is where you are). So many projects have been derailed by people not understanding the syntax of this ubiquitous language in which programmers and other stakeholders should be proficient. How many times have you heard something like, &quot;I know that&#039;s what the requirements said, but that&#039;s not what I meant. Fix it.&quot;?
I heard it one time too many, and now I no longer do programming for anyone but myself.]]></description>
			<content:encoded><![CDATA[<p>The most important programming language is English (or whatever the native tongue is where you are). So many projects have been derailed by people not understanding the syntax of this ubiquitous language in which programmers and other stakeholders should be proficient. How many times have you heard something like, &#8220;I know that&#8217;s what the requirements said, but that&#8217;s not what I meant. Fix it.&#8221;?<br />
I heard it one time too many, and now I no longer do programming for anyone but myself.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Unobtrusive JavaScript in Rails 3 &#8211; Simone Carletti&#39;s Blog		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-9601</link>

		<dc:creator><![CDATA[Unobtrusive JavaScript in Rails 3 &#8211; Simone Carletti&#39;s Blog]]></dc:creator>
		<pubDate>Tue, 08 Jun 2010 11:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-9601</guid>

					<description><![CDATA[[...] Rails 3 forces developers to have a deeper JavaScript knowledge than in the past. Don&#8217;t underestimate the importance of this task, it&#8217;s an excellent chance to learn something more about the today most important programming language. [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Rails 3 forces developers to have a deeper JavaScript knowledge than in the past. Don&#8217;t underestimate the importance of this task, it&#8217;s an excellent chance to learn something more about the today most important programming language. [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Fill		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-9410</link>

		<dc:creator><![CDATA[Fill]]></dc:creator>
		<pubDate>Wed, 26 May 2010 22:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-9410</guid>

					<description><![CDATA[I remember years ago when you tried to search for a JS reference, you would often wind up at Netscape&#039;s reference which confusingly defaulted you to the reference for server-side scripting and not client-side.]]></description>
			<content:encoded><![CDATA[<p>I remember years ago when you tried to search for a JS reference, you would often wind up at Netscape&#8217;s reference which confusingly defaulted you to the reference for server-side scripting and not client-side.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alan F		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-9331</link>

		<dc:creator><![CDATA[Alan F]]></dc:creator>
		<pubDate>Thu, 20 May 2010 23:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-9331</guid>

					<description><![CDATA[You are able to write Linux Desktop applications using JavaScript via Seed and GJs.

You can also create graphical front-ends using a combination of HTML and CSS using JQuery via SeedKit rather than using traditional graphical toolkit API’s. I have created a log viewer as an example and created a wee tutorial. Links are here:

http://alsaf1.wordpress.com/2010/05/20/seedkit-tutorial-sort-of/

http://alsaf1.wordpress.com/2010/05/13/first-seedkit-program-sort-of/

http://live.gnome.org/SeedKit]]></description>
			<content:encoded><![CDATA[<p>You are able to write Linux Desktop applications using JavaScript via Seed and GJs.</p>
<p>You can also create graphical front-ends using a combination of HTML and CSS using JQuery via SeedKit rather than using traditional graphical toolkit API’s. I have created a log viewer as an example and created a wee tutorial. Links are here:</p>
<p><a href="http://alsaf1.wordpress.com/2010/05/20/seedkit-tutorial-sort-of/" rel="nofollow ugc">http://alsaf1.wordpress.com/2010/05/20/seedkit-tutorial-sort-of/</a></p>
<p><a href="http://alsaf1.wordpress.com/2010/05/13/first-seedkit-program-sort-of/" rel="nofollow ugc">http://alsaf1.wordpress.com/2010/05/13/first-seedkit-program-sort-of/</a></p>
<p><a href="http://live.gnome.org/SeedKit" rel="nofollow ugc">http://live.gnome.org/SeedKit</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sdt		</title>
		<link>https://programmingzen.com/the-most-important-programming-language-today/#comment-9281</link>

		<dc:creator><![CDATA[sdt]]></dc:creator>
		<pubDate>Mon, 17 May 2010 00:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://antoniocangiano.com/?p=1164#comment-9281</guid>

					<description><![CDATA[1995 - Brendan Eich reads up on every mistake ever made in designing a programming language, invents a few more, and creates LiveScript. Later, in an effort to cash in on the popularity of Java the language is renamed JavaScript. Later still, in an effort to cash in on the popularity of skin diseases the language is renamed ECMAScript.

:)

http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html]]></description>
			<content:encoded><![CDATA[<p>1995 &#8211; Brendan Eich reads up on every mistake ever made in designing a programming language, invents a few more, and creates LiveScript. Later, in an effort to cash in on the popularity of Java the language is renamed JavaScript. Later still, in an effort to cash in on the popularity of skin diseases the language is renamed ECMAScript.</p>
<p>🙂</p>
<p><a href="http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html" rel="nofollow ugc">http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
