<?xml version="1.0" encoding="windows-1251"?><!-- generator="wordpress/2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Simple DLR language</title>
	<link>http://protsyk.com/cms/?p=152</link>
	<description></description>
	<pubDate>Mon, 06 Sep 2010 08:12:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>

	<item>
		<title>By: protsyk.com &#187; Blog Archive &#187; Expression evaluator in 15 minutes with Irony &#38; Dlr</title>
		<link>http://protsyk.com/cms/?p=152#comment-2125</link>
		<author>protsyk.com &#187; Blog Archive &#187; Expression evaluator in 15 minutes with Irony &#38; Dlr</author>
		<pubDate>Thu, 15 Jan 2009 09:50:35 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-2125</guid>
		<description>[...] DLR Language Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] DLR Language Part 1 [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brytney</title>
		<link>http://protsyk.com/cms/?p=152#comment-62</link>
		<author>Brytney</author>
		<pubDate>Mon, 18 Feb 2008 15:22:47 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-62</guid>
		<description>&lt;p&gt;Nice! Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Nice! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: protsyk.com &#187; Blog Archive &#187; DLR Language with Generated parser (Part 3)</title>
		<link>http://protsyk.com/cms/?p=152#comment-56</link>
		<author>protsyk.com &#187; Blog Archive &#187; DLR Language with Generated parser (Part 3)</author>
		<pubDate>Thu, 07 Feb 2008 15:15:53 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-56</guid>
		<description>[...] DLR Language Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] DLR Language Part 1 [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ?????????? - Noticias externas</title>
		<link>http://protsyk.com/cms/?p=152#comment-54</link>
		<author>?????????? - Noticias externas</author>
		<pubDate>Sat, 02 Feb 2008 13:36:28 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-54</guid>
		<description>[...] IronPython 2.0A8?????????DLR???A6???A7????????????????????????????????A8???????DLR??????????????????????????????????????????DLR?????????Piter???DLR Calculator????IronPython???????ToyScript?????????????????? [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] IronPython 2.0A8?????????DLR???A6???A7????????????????????????????????A8???????DLR??????????????????????????????????????????DLR?????????Piter???DLR Calculator????IronPython???????ToyScript?????????????????? [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ?????????? - Noticias externas</title>
		<link>http://protsyk.com/cms/?p=152#comment-53</link>
		<author>?????????? - Noticias externas</author>
		<pubDate>Sat, 02 Feb 2008 07:31:20 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-53</guid>
		<description>[...] IronPython 2.0A8?????????DLR???A6???A7????????????????????????????????A8???????DLR??????????????????????????????????????????DLR?????????Piter???DLR Calculator????IronPython???????ToyScript?????????????????? [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] IronPython 2.0A8?????????DLR???A6???A7????????????????????????????????A8???????DLR??????????????????????????????????????????DLR?????????Piter???DLR Calculator????IronPython???????ToyScript?????????????????? [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pit</title>
		<link>http://protsyk.com/cms/?p=152#comment-48</link>
		<author>Pit</author>
		<pubDate>Fri, 18 Jan 2008 07:45:03 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-48</guid>
		<description>More information about Dynamic Language Runtime

http://compilerlab.members.winisp.net/</description>
		<content:encoded><![CDATA[<p>More information about Dynamic Language Runtime</p>
<p><a href="http://compilerlab.members.winisp.net/" rel="nofollow">http://compilerlab.members.winisp.net/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafal Gwizdala</title>
		<link>http://protsyk.com/cms/?p=152#comment-47</link>
		<author>Rafal Gwizdala</author>
		<pubDate>Thu, 17 Jan 2008 22:25:57 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-47</guid>
		<description>Hello Peter, I am really interested in script.net and will be evaluating it in near future (depends on my busy-ness). There is an area where such interpreted language has great advantage over compiled scripts - remote procedure calls and integration between different platforms. Good example - AJAX applications. Whenever a javascript in browser needs to call the server object it needs to use some RPC mechanism, such as xml-rpc, or 'extended' json or soap. But it also can use script.net expressions and just send them to the server to be executed. The expressions are not known a priori, and compilation is not an option here (performance, leaking memory...)
But such expressions can cause security problems, and this is where DLR could be of some use. You could use DLR standard for providing 'hooks' for controlling what script expressions are executed and applying security rules. 

Another good material for DLR is use of OR mappers. OR mappers for .Net rely on static schema definitions (database schemas don't change at runtime). And therefore they are lacking the support of modification of data structure at runtime (for example, user-added fields in data objects). Dynamic object structure would allow that and by using DLR we could handle underlying database updates.

Best regards 
RG</description>
		<content:encoded><![CDATA[<p>Hello Peter, I am really interested in script.net and will be evaluating it in near future (depends on my busy-ness). There is an area where such interpreted language has great advantage over compiled scripts - remote procedure calls and integration between different platforms. Good example - AJAX applications. Whenever a javascript in browser needs to call the server object it needs to use some RPC mechanism, such as xml-rpc, or &#8216;extended&#8217; json or soap. But it also can use script.net expressions and just send them to the server to be executed. The expressions are not known a priori, and compilation is not an option here (performance, leaking memory&#8230;)<br />
But such expressions can cause security problems, and this is where DLR could be of some use. You could use DLR standard for providing &#8216;hooks&#8217; for controlling what script expressions are executed and applying security rules. </p>
<p>Another good material for DLR is use of OR mappers. OR mappers for .Net rely on static schema definitions (database schemas don&#8217;t change at runtime). And therefore they are lacking the support of modification of data structure at runtime (for example, user-added fields in data objects). Dynamic object structure would allow that and by using DLR we could handle underlying database updates.</p>
<p>Best regards<br />
RG</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ppp_extr</title>
		<link>http://protsyk.com/cms/?p=152#comment-46</link>
		<author>ppp_extr</author>
		<pubDate>Thu, 17 Jan 2008 18:40:09 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-46</guid>
		<description>DLR Host specs:

http://www.iunknown.com/files/dlr-spec-hosting.pdf</description>
		<content:encoded><![CDATA[<p>DLR Host specs:</p>
<p><a href="http://www.iunknown.com/files/dlr-spec-hosting.pdf" rel="nofollow">http://www.iunknown.com/files/dlr-spec-hosting.pdf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ppp_extr</title>
		<link>http://protsyk.com/cms/?p=152#comment-45</link>
		<author>ppp_extr</author>
		<pubDate>Thu, 17 Jan 2008 18:27:43 +0000</pubDate>
		<guid>http://protsyk.com/cms/?p=152#comment-45</guid>
		<description>Some posts about DLR

http://blogs.msdn.com/mmaly/default.aspx</description>
		<content:encoded><![CDATA[<p>Some posts about DLR</p>
<p><a href="http://blogs.msdn.com/mmaly/default.aspx" rel="nofollow">http://blogs.msdn.com/mmaly/default.aspx</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
