{"id":174,"date":"2008-01-30T10:23:38","date_gmt":"2008-01-30T18:23:38","guid":{"rendered":"http:\/\/wp.colliertech.org\/cj\/?p=174"},"modified":"2008-03-10T10:21:22","modified_gmt":"2008-03-10T18:21:22","slug":"from-langnet-2008-wednesday","status":"publish","type":"post","link":"https:\/\/wp.c9h.org\/cj\/?p=174","title":{"rendered":"From Lang.NET 2008 &#8211; Wednesday"},"content":{"rendered":"<p>0843<br \/>\nAlrighty&#8230; we&#8217;re online.  I checked in on #debian-mono, and meebey had plenty of <a href=\"http:\/\/wiki.colliertech.org\/index.php\/Lang.NET_2008\/Wednesday#IRC_log\">suggestions<\/a> on how to fix the .deb.<\/p>\n<p>0923<br \/>\nThere&#8217;s a talk on IronRuby.  Microsoft is implementing a Ruby compiler on the CLI.  It uses the DLR to do the heavy lifting.  It is currently slow :)<\/p>\n<p>Contributions are being accepted for libraries outside of the core, but not against the implementation of the compiler.<\/p>\n<p><a href=\"http:\/\/rubyforge.org\/projects\/ironruby\">http:\/\/rubyforge.org\/projects\/ironruby<\/a><br \/>\n{<a href=\"mailto:jflam@microsoft.com\">jflam<\/a>,<a href=\"mailto:tomat@microsoft.com\">tomat<\/a>,<a href=\"mailto:jomes@microsoft.com\">jomes<\/a>,<a href=\"mailto:haiboluo@microsoft.com\">haiboluo<\/a>}@microsoft.com<\/p>\n<p>0949<br \/>\nThis talk is on a Ruby compiler\/runtime built on the CLI without using the DLR.  One of the benefits is that it allows for ahead-of-time compiling, unlike implementations which use the DLR.<\/p>\n<p>0951<br \/>\nOn the drive down today, I was contemplating how Perl6 might handle importing modules from &#8220;external&#8221; sources.  It looks like someone else has already thought about this.  Perl6&#8217;s module docs can be found in <a href=\"http:\/\/perlcabal.org\/syn\/S11.html\">Synopsis 11<\/a> of the <a href=\"http:\/\/perlcabal.org\/syn\/\">Official Perl 6 Documentation<\/a>.<\/p>\n<p><a name=\"1016\">1016<\/a><br \/>\nMore thoughts on the issue with the DLR&#8217;s DynamicSite interface and the problem it poses regarding ahead-of-time compiling.  DynamicSite allows fast paths to be determined during runtime.  As methods and operators get used, they get bumped up in the priority.  This allows the runtime to optimize for the user&#8217;s use case without having to hard-code stuff that&#8217;s hard to optimize.  One of the drawbacks is that it makes it difficult to do ahead-of-time compilation.<\/p>\n<p>A possible solution to this would be to serialize the state of the DynamicSite object into an .exe when the runtime exits.  This way, the DynamicSite could be deserialized when next the DLR loads a program for the language.  I don&#8217;t know how feasible this is, but it might be interesting to try.  Theoretically, this concept might make use of Linden Labs&#8217; work on stack serialization, ie Continuations, as a different solution to the same problem.<\/p>\n<p>1029<br \/>\nThe current talk is on F#.  The language reminds me of a blog post on Caml which I read a few years ago in <a href=\"http:\/\/community.livejournal.com\/evan_tech\/\">Evan Martin&#8217;s blog<\/a>.<\/p>\n<p>Seo showed me a version of the F# example running on Debian sid.  Whee.<\/p>\n<p>1053<br \/>\nParsing in F#<br \/>\nHarry Pierson<br \/>\n<a href=\"http:\/\/devhawk.net\">http:\/\/devhawk.net<\/a><br \/>\n<a href=\"mailto:harry.pierson@microsoft.com\">harry.pierson@microsoft.com<\/a><\/p>\n<p>Discussing parsing expression grammars.<br \/>\n1.9.2 of F# includes &#8220;Active Patterns&#8221;, an interesting approach to building compilers.<\/p>\n<p>This has been documented in <a href=\"http:\/\/devhawk.net\">his blog<\/a>.  Here&#8217;s an example from his presentation:<\/p>\n<pre>\r\n\/\/\/ Additive <- Multitive '+' Additive | Multitive\r\nand (|Additive|_|) inp =  match inp with\r\n       | Multitive(v1,Token '+' (Additive(v2, inp))) -> Some(v1+v2)\r\n       | Multitive(v,inp) -> Some(v,inp)\r\n       | _ -> None\r\n<\/pre>\n<p>1113<br \/>\nNeato.  Someone from <a href=\"http:\/\/www.intentsoft.com\/\">Intentional Software<\/a> is presenting a language which includes code written using mathematical representation, diagrams, etc.  They call it &#8220;<a href=\"http:\/\/www.literateprogramming.com\/knuthweb.pdf\">literate programming<\/a>&#8221; and mentioned <a href=\"http:\/\/www-cs-faculty.stanford.edu\/~knuth\/\">Don Knuth<\/a> as the person responsible for the concept which they have implemented.<\/p>\n<p>1118<br \/>\nWhile I&#8217;m watching the presentations, I&#8217;m trying to add ToyScript to the prebuild.xml file and see if I can get it integrated into the .deb distribution.<\/p>\n<p>1130<br \/>\nThat was relatively painless.  I&#8217;ve gotten rid of the original dlr-solution-1.0.tar.gz and replaced it with <a href=\"http:\/\/colliertech.org\/downloads\/DLR\/dlr-solution-0.0.1.tar.gz\">dlr-solution-0.0.1.tar.gz<\/a>, which better indicates the state of the codebase.  Sorry for breaking history.<\/p>\n<p>Next talk is on <a href=\"http:\/\/wesnerm.blogs.com\/net_undocumented\/2005\/12\/nstatic.html\">NStatic<\/a> a static analysis tool.  The author, <a href=\"mailto:wesnerm@yahoo.com\">Wesner Moise<\/a>, writes a blog called &#8220;<a href=\"http:\/\/wesnerm.blogs.com\/\">SmartSoftware<\/a>&#8221; and owns an LLC.  I have a feeling it only runs on win32&#8230;  The application is IDE-ish in nature.  Very cute and user-friendly looking.  The author claims that it has a debugger-like experience, which presents discovered errors.  Errors are presented in the context of the executing environment to assist the user in correcting the problem.  Errors also contain the stack\/execution path which lead to the violation.  In the UI, the execution path is indicated using arrows, non-executed code is dimmed.<\/p>\n<p>The author is now accepting applications for beta testers.  He does not shake hands :)<\/p>\n<p>1330<br \/>\nMiguel&#8217;s talking about Cecil.  <strike>It can be used to build a native binary from managed code.  Nifty.<\/strike> &#8211; Seo tells me that I misunderstood.  D&#8217;oh.<\/p>\n<p>His examples of Moonlight were pretty neat.  Novell can&#8217;t ship ffmpeg, so nobody can get a usable distribution right now.  Microsoft has promised to give Mono a media framework that can be redistributed.<\/p>\n<p>The Novell Mono team is working on new features which Moonlight requires.  Mono did not previously have a CLI verifier.  It is required for Silverlight.  The runtime is becoming hardened.  A security sandbox is being implemented.<\/p>\n<p>The team is also working on some automation tools:<br \/>\n* Static analysis with Gendarme.  think &#8220;customizable FxOp&#8221;<br \/>\n* Monoxide (assess audit surface).<\/p>\n<p>When the above are done, the Second Life folks will be able to open the doors to languages other than LSL when the above tools are complete.<\/p>\n<p>Novell is shipping a Moonlight SDK.  This consists of a compiler and class libraries.  There is a prototype of Monodevelop on MacOS X.  There is also a prototype of a Moonlight IDE.  Fancy.<\/p>\n<p>1405<br \/>\ncobra-language.com<\/p>\n<p>* object-oriented, imperitive<br \/>\n* run-time performance<br \/>\n* static &#038; dynamic typing<br \/>\n* Nil tracking<br \/>\n* Cleaner syntax than perl<br \/>\n* Contracts built-in<br \/>\n* built-in unit test syntax as a language feature<br \/>\n* works on Mono<br \/>\n* compiler will be &#8220;open sourced&#8221; in February<br \/>\n** there will be a wiki<br \/>\n** there will be an issue tracker<br \/>\n** there will be discussion forums<\/p>\n<p>1428<br \/>\nI&#8217;m working with meebey&#8217;s debian packages of mono.  They&#8217;re a little tricky to get building.  They complain that mcs.exe and friends are missing from mcs\/class\/lib\/net_1_1_bootstrap\/ and mcs\/class\/lib\/basic\/ when run out of the box.  I&#8217;ve found that dropping the assemblies generated by building from svn into those directories seems to work.  *crosses fingers*<\/p>\n<p>I assume that if I can install these packages, I will be able to build the dlr packages using them.  I&#8217;ll stick them on the web server for reference.<\/p>\n<p>1439<br \/>\nCurrent talk is by <a href=\"http:\/\/blogs.msdn.com\/vsxteam\/\">some Visual Studio folks<\/a>.  They are discussing what is required to make a language play nice with Visual Studio.<\/p>\n<p>1504<br \/>\nregarding the debian\/ problem I had earlier, <a href=\"http:\/\/moonfire.us\/blog\/\">dmoonfire<\/a> told me that I should use dbuild instead of running the various debian\/rules targets individually.  It seems to run much better that way :)<\/p>\n<p>1506<br \/>\nThe current talk is about the Visual Studio 2008 Shell.  It seems nifty.  One can build a stand-alone IDE that makes use of the visual studio interface.  The resultant redistributable package will run without having to purchase visual studio.  Yay.  Free as in beer.  Or was that lunch?<\/p>\n<p>The <a href=\"http:\/\/www.codeplex.com\/IronPythonStudio\">IronPython Studio<\/a> is available on codeplex.  Looks similar to Visual Studio 2008.  Comes with solution explorer, toolbox, debugger, output windows, winforms designer, intelisense.  The only projects available in the &#8220;new project dialogue&#8221; of the IronPython Studio are those related to IronPython.<\/p>\n<p>Fancy.<\/p>\n<p>1539<br \/>\nDon box.  I&#8217;ve heard of him.  He&#8217;s talking about &#8220;Modeling and Languages.&#8221;  Chris Anderson is supporting.<\/p>\n<p>Doesn&#8217;t like WSDL or XSD.<\/p>\n<p>Goals:<\/p>\n<ul>\n<li>Write less code<\/li>\n<li>Understand our software (and hardware)<\/li>\n<\/ul>\n<p>Solution\/Approach:<\/p>\n<ul>\n<li>Increase data\/code ratio in the platform<\/li>\n<li>Representations matter (a lot)<\/li>\n<\/ul>\n<p>Philosophy : Data + interpretation<\/p>\n<p>Data == values devoid of context<br \/>\nInterpretation == applying context to data<br \/>\nOne value, many interpretations<\/p>\n<p>The Platform Premise : Data-driven capabilities<br \/>\n1992: \/subsystem:<br \/>\n1993: MKTYPLIB.exe<br \/>\n1996: [TransactionRequired]<br \/>\n1999: wsdl:definitions<br \/>\n2000: xlang:process<br \/>\n2002: [YourAttributeGoesHere]<br \/>\n2006: wf:StateMachine<br \/>\n2006: wf:Policy<br \/>\n2006: wpf:ContentControl<br \/>\n2008: Expression(Of Func(Of T))<\/p>\n<p>He keeps using &#8220;data&#8221; as a singular.  gar.<\/p>\n<p>1610<br \/>\nThe end.<\/p>\n<p>1924<br \/>\nOops.  I meant to say <a href=\"http:\/\/lolcode.com\/\">KTHXBYE<\/a>.<\/p>\n\n<div class=\"twitter-share\"><a href=\"https:\/\/twitter.com\/intent\/tweet?via=cjamescollier\" class=\"twitter-share-button\">Tweet<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>0843 Alrighty&#8230; we&#8217;re online. I checked in on #debian-mono, and meebey had plenty of suggestions on how to fix the .deb. 0923 There&#8217;s a talk on IronRuby. Microsoft is implementing a Ruby compiler on the CLI. It uses the DLR to do the heavy lifting. It is currently slow :) Contributions are being accepted for [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[17,103,181,116,37,7,15,50,18,166,130],"tags":[],"class_list":["post-174","post","type-post","status-publish","format-standard","hentry","category-debian","category-freenode","category-irc","category-language","category-microsoft","category-mono","category-novell","category-performance","category-perl","category-software","category-ubuntu"],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p1YDIB-2O","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=\/wp\/v2\/posts\/174","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=174"}],"version-history":[{"count":0,"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=\/wp\/v2\/posts\/174\/revisions"}],"wp:attachment":[{"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=174"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=174"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wp.c9h.org\/cj\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=174"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}