<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/249605_100x75.jpg</url>
		<title>Channel 9 - Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<link></link>
	</image>
	<description>I recently attended Lang.NET 2008 and, as expected, learned a great deal from some of the industry&#39;s finest language and compiler minds.Here, we meet Dan Ingalls and Allen Wirfs-Brock, two legendary Smalltalkers (contributors to the language). Dan Ingalls is well known for his work at Xerox PARC and his contributions along with Alan
 Kay to Smalltalk. Dan is also very passionate about Javascript.&amp;nbsp; So much so, that he&#39;s gone and created a very interesting Javascript-only project named
Lively Kernel. And you can thank Dan for
Bit blit.Allen Wirfs-Brock is currently working on some very interesting language enhancements that he can&#39;t talk about publicly Join us as we discuss a whole range of very interesting topics.Enjoy!Low res file for bandwidth challenged.</description>
	<link></link>
	<language>en</language>
	<pubDate>Sat, 25 May 2013 14:26:08 GMT</pubDate>
	<lastBuildDate>Sat, 25 May 2013 14:26:08 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[Hmmm... I recall the Amiga, Blitter and Cooper!<br /><br /><p>posted by figuerres</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380168770000000</link>
		<pubDate>Thu, 07 Feb 2008 21:34:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380168770000000</guid>
		<dc:creator>figuerres</dc:creator>
	</item>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[
<p>edit: found low resolution copy. Thanks C.</p>
<p>posted by Dark_Halmut</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380371050000000</link>
		<pubDate>Fri, 08 Feb 2008 03:11:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380371050000000</guid>
		<dc:creator>Dark_Halmut</dc:creator>
	</item>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[
<p>Great discussion. Having assimilated the recent group of language discussions with people like Dan, Allen, Erik, Giland and others; it seems a natural commonality has appeared. All the pieces exist that we need, but we just need a&nbsp;good chef to mix the cake.
</p>
<p>It seems the problem domain is:<br />1) Many core, threads, and locking&nbsp;problem.<br />2) Shared state problem.<br />3) Local/remote message passing arch. </p>
<p>It seems to follow that the &quot;ingredients&quot; of next lang arch need to be:<br />1) Read-only message based arch at core.<br />2) Message loop as primary in/out of all classes (e.g Erlang).<br />3) Local model same as remote model so distributed apps are same (i.e. Volta like).<br />4) A dedication to above in keeping the rules and not allowing leakage. </p>
<p>Thought experiment:<br />1) All objects, and messages, are read-only external to the owner. So if I pass &quot;this&quot; (class1) as a message to class2, a copy of class1 is made (by the system) and passed to the class2 in-queue (by the system). Class2 can not set state in original class1 as
 it has only a local copy. All this is enforced by the runtime. class2 is the only class that can get this message.&nbsp; Multicast is handled with multiple copies of class1 sent to many classes. Class1 now becomes local state of class2 as long as it wants to keep
 it. The only way to change state is local - by handling messages. </p>
<p>2) Each class message loop is single-threaded. So locks are mostly gone. Classes can be created on separate threads for concurrency. Coordination is done via message passing and/or some root controller/state class.
</p>
<p>3) All In-Messages are handled by a message loop in the class (ala windows message loop). Something like CCR and/or Linq message popping is used to handle messages processed by type or some predicate using lambda functions. Something like setting properties
 just become a message handled by the class, but publicly looks like a simple property setter.
</p>
<p>4) Remote access becomes same pattern as local access - no surface difference. The arch handled all the comm goo below (ala Volta).
</p>
<p>Features:<br />1) All objects become services handling messages.<br />2) Remoting is as simple as local&nbsp;in-proc.<br />3) Shared state is mostly solved.<br />4) Very parallel by design.<br />5) Async streaming and pipelining become very natural.<br />6) Very dynamic in nature. Objects can be removed and replaced in the system at runtime because of the loose message passing and queue model.<br />7) Events are&nbsp;replaced because not needed. Same behavior is handled by async messages.<br /><br />-<br />W</p>
<p>posted by staceyw</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380434200000000</link>
		<pubDate>Fri, 08 Feb 2008 04:57:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380434200000000</guid>
		<dc:creator>staceyw</dc:creator>
	</item>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[Cozy interesting discussion. Here's a presentation of Lively Kernel: <a href="http://www.youtube.com/watch?v=gGw09RZjQf8">http&#58;&#47;&#47;www.youtube.com&#47;watch&#63;v&#61;gGw09RZjQf8</a><p>posted by esoteric</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380934500000000</link>
		<pubDate>Fri, 08 Feb 2008 18:50:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633380934500000000</guid>
		<dc:creator>esoteric</dc:creator>
	</item>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[
<blockquote>
<div class="quoteAuthor">esoteric wrote:</div>
<div class="quoteBody">Cozy interesting discussion. Here's a presentation of Lively Kernel: <a href="http://www.youtube.com/watch?v=gGw09RZjQf8">http&#58;&#47;&#47;www.youtube.com&#47;watch&#63;v&#61;gGw09RZjQf8</a></div>
</blockquote>
<br /><br />Or you can play with it <a href="http://research.sun.com/projects/lively/index.xhtml">
live here</a>.<br /><p>posted by evildictaitor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633381237640000000</link>
		<pubDate>Sat, 09 Feb 2008 03:16:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633381237640000000</guid>
		<dc:creator>evildictaitor</dc:creator>
	</item>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[Excellent Talk, Good stuff but i tend to agree what charles said, developers like real programming languages not the dynamic sort of......<br /><br />Lets see where this all goes in to future...<br /><br />Learn't most important thing from video was use :-<a href="http://www.live.com">http://www.live.com</a>&nbsp;<br /><br />Thx, for all the cool stuff...<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><p>posted by gaurav.net</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633383310850000000</link>
		<pubDate>Mon, 11 Feb 2008 12:51:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633383310850000000</guid>
		<dc:creator>gaurav.net</dc:creator>
	</item>
	<item>
		<title>Re: Dan Ingalls and Allen Wirfs-Brock: On Smalltalk, Lively Kernel, Javascript and Programming the Inter</title>
		<description>
			<![CDATA[Ah yes... Javascript's ubiquity is fantastic,&nbsp;runs on every browser... <a href="http://research.sun.com/projects/lively/#supported">
except on IE</a> it seems (at least for the moment)<br /><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /><p>posted by Flatliner</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633384180080000000</link>
		<pubDate>Tue, 12 Feb 2008 13:00:08 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/Dan-Ingalls-and-Allen-Wirfs-Brock-On-Smalltalk-Lively-Kernel-Javascript-and-Programming-the-Inter#c633384180080000000</guid>
		<dc:creator>Flatliner</dc:creator>
	</item>
</channel>
</rss>