<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Joe's Development thoughts</title>
	<atom:link href="http://joethoughts.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://joethoughts.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 05 Dec 2008 14:24:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='joethoughts.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Joe's Development thoughts</title>
		<link>http://joethoughts.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://joethoughts.wordpress.com/osd.xml" title="Joe&#039;s Development thoughts" />
	<atom:link rel='hub' href='http://joethoughts.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JavaFX: statically typed javascript</title>
		<link>http://joethoughts.wordpress.com/2008/12/05/javafx-statically-types-javascript/</link>
		<comments>http://joethoughts.wordpress.com/2008/12/05/javafx-statically-types-javascript/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 09:26:53 +0000</pubDate>
		<dc:creator>joethoughts</dc:creator>
				<category><![CDATA[javaFx]]></category>

		<guid isPermaLink="false">http://joethoughts.wordpress.com/?p=7</guid>
		<description><![CDATA[Hi everybody I was introducing the JavaFX syntax to some friend, and i told him: &#8220;be warned, while it is called JavaFX ,it is NOT Java&#8221; , then i thought: ok , if it is not java,what is it? after a while ,a small smile came to my face ,Ohhhh&#8230;. it is not Java, it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joethoughts.wordpress.com&amp;blog=5749808&amp;post=7&amp;subd=joethoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi everybody</p>
<p>I was introducing the JavaFX syntax to some friend, and i told him: &#8220;be warned, while it is called JavaFX ,it is NOT Java&#8221; , then i thought: ok , if it is not java,what is it? after a while ,a small smile came to my face ,Ohhhh&#8230;. it is not Java, it IS javascript, a statically typed version of the javascript language</p>
<p>you don&#8217;t believe me&#8230;, ok , consider the following java script variable definition</p>
<p><code> var name="Joe";</code></p>
<p>then add type information to express that the name variable is actually of String type</p>
<p><code> var name:String="Joe";</code></p>
<p>surprise, this is a 100% legal and valid JavaFX syntax,<br />
let&#8217;s try another one: function definition<br />
<code><br />
function sum(i,j){<br />
}</code></p>
<p>again, add type information to variables and to function return type<br />
<code><br />
function sum(i:Integer,j:Integer):Integer{<br />
}<br />
</code><br />
again this is how functions are defined in the JavaFX syntax<br />
need another example? let&#8217;s consider the JSON notation<br />
Javascript:</p>
<pre>{
    name:"joe",
    age:30
    favourites:[
        "java","javafx"
    ]
}</pre>
<p>again add type information</p>
<pre>User{
    name:"joe",
    age:30
    favourites:[
        "java","javafx"
    ]
}</pre>
<p>and again this is the Object literal notation of JavaFX and it&#8217;s really considered their power tool for declarative programming, and the way which make GUI and animation coding a lot easier</p>
<p>also, JavaFX designers doesn&#8217;t even try to make the syntax compatible with their primary language:Java<br />
consider the for iteration syntax<br />
<code>for(i:Integer in collection){}</code><br />
note the in keyword,this is not the java syntax<br />
<code>for(Integer i : collection){}</code></p>
<p>finally, i would like to ask a question, is this intended? or just by chance? i mean does sun mean to bring a language familiar to designers(javascript) and add type information required by the JVM runtime,does this benefit the platform as a whole by introducing new players (javascript web developers) to the game,or it will make the java developers(the first class target) work in an unfamiliar environment</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joethoughts.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joethoughts.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joethoughts.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joethoughts.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joethoughts.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joethoughts.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joethoughts.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joethoughts.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joethoughts.wordpress.com&amp;blog=5749808&amp;post=7&amp;subd=joethoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joethoughts.wordpress.com/2008/12/05/javafx-statically-types-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e7dc0f771bf4e8fd981bf5badf13198b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">joethoughts</media:title>
		</media:content>
	</item>
		<item>
		<title>JavaFX bad impression,it&#8217;s not even in JavaFx</title>
		<link>http://joethoughts.wordpress.com/2008/12/05/javafx-bad-impressionits-not-in-javafx/</link>
		<comments>http://joethoughts.wordpress.com/2008/12/05/javafx-bad-impressionits-not-in-javafx/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 07:17:14 +0000</pubDate>
		<dc:creator>joethoughts</dc:creator>
				<category><![CDATA[javaFx]]></category>

		<guid isPermaLink="false">http://joethoughts.wordpress.com/?p=3</guid>
		<description><![CDATA[Hi all This is the first day of javaFX official life,as its official launch was few hours ago , so as a java fan, i go to javaFX  homepage and grabbed all the downloads(IDE,Production suite,SDK) while downloading , i went to there demos page  www.javafx.com/samples/, then i was shocked&#8230; the page is a nice looking, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joethoughts.wordpress.com&amp;blog=5749808&amp;post=3&amp;subd=joethoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi all</p>
<p>This is the first day of javaFX official life,as its official launch was few hours ago , so as a java fan, i go to javaFX  homepage and grabbed all the downloads(IDE,Production suite,SDK) while downloading , i went to there demos page  <a href="http://www.javafx.com/samples/">www.javafx.com/samples/</a>, then i was shocked&#8230; the page is a nice looking, album like collection of the JavaFX samples,i said WOWWWW this is impressive,BUT wait&#8230;. it is not implemented in JavaFX ,it is a javascript photo album modified to show JavaFX screenshots,<br />
DAMN, can&#8217;t sun engineers eat their own dog food?!!!!!!!<br />
I think if the JavaFX creators can&#8217;t use javaFX for their RIA needs, how they expect to convince the community that it is suitable for the job</p>
<p>I was always a java fan , and i think the technology behind JavaFX can make a great difference in the RIA market, but strange behaviour like that deviate the community and affect the credibility of the product and the team behind it</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joethoughts.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joethoughts.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joethoughts.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joethoughts.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joethoughts.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joethoughts.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joethoughts.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joethoughts.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joethoughts.wordpress.com&amp;blog=5749808&amp;post=3&amp;subd=joethoughts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joethoughts.wordpress.com/2008/12/05/javafx-bad-impressionits-not-in-javafx/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e7dc0f771bf4e8fd981bf5badf13198b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">joethoughts</media:title>
		</media:content>
	</item>
	</channel>
</rss>
