<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Code is Value</title>
	
	<link>http://codeisvalue.wordpress.com</link>
	<description>public class Code: Value</description>
	<lastBuildDate>Tue, 24 Apr 2012 04:45:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="codeisvalue.wordpress.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
<image><link>http://creativecommons.org/licenses/by/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://codeisvalue.wordpress.com/osd.xml" title="Code is Value" />
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CodeIsValue" /><feedburner:info uri="codeisvalue" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://codeisvalue.wordpress.com/?pushpress=hub" /><creativeCommons:license>http://creativecommons.org/licenses/by/2.0/</creativeCommons:license><item>
		<title>Static file content mapping in ASP.NET MVC</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/DewYeg48TxY/</link>
		<comments>http://codeisvalue.wordpress.com/2012/04/24/static-file-content-mapping-in-asp-net-mvc/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 04:45:32 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=131</guid>
		<description><![CDATA[Sto lavorando ad un progetto Web (in ASP.NET MVC 3) in cui è necessario scaricare dei plug-in per la gestione di uno scanner via web. Funziona tutto bene sotto Internet Explorer perchè il plug-in (da scaricare ed installare nel browser) prende la forma di un file .cab. Ma quando si deve andare sotto Firefox o [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=131&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sto lavorando ad un progetto Web (in ASP.NET MVC 3) in cui è necessario scaricare dei plug-in per la gestione di uno scanner via web.</p>
<p>Funziona tutto bene sotto Internet Explorer perchè il plug-in (da scaricare ed installare nel browser) prende la forma di un file .cab. Ma quando si deve andare sotto Firefox o Mac l&#8217;installazione del plug-in fallisce: nel primo caso, il plug-in ha estensione .xpi, mentre sottoMac ha estensione .pkg. Facendo il deployment sotto Windows Azure, ottenevo semplicemente un errore 404 &#8211; File Not Found, senza capire il perchè.</p>
<p>Eseguendo l&#8217;applicazione &#8220;on-premise&#8221;, l&#8217;errore diventa più chiaro:</p>
<h2>HTTP Error 404.3 &#8211; Not Found</h2>
<h3>The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.</h3>
<p>Cercando su Internet troviamo: <a href="http://www.iis.net/ConfigReference/system.webServer/staticContent/mimeMap" target="_blank">http://www.iis.net/ConfigReference/system.webServer/staticContent/mimeMap</a></p>
<p>La configurazione per mappare una estensione ad un MIME Type, in primis la si può fare da IIS. Ma con .NET 4.x, su può gestire tutto via web.config attraverso il tag &lt;system.webServer&gt;. E quindi, nel mio caso:</p>
<p>&lt;system.webServer&gt;<br />
&lt;validation validateIntegratedModeConfiguration=&#8221;false&#8221;/&gt;<br />
&lt;modules runAllManagedModulesForAllRequests=&#8221;true&#8221;/&gt;<br />
&lt;staticContent&gt;<br />
&lt;!&#8211; http://www.iis.net/ConfigReference/system.webServer/staticContent/mimeMap &#8211;&gt;<br />
&lt;mimeMap fileExtension=&#8221;.xpi&#8221; mimeType=&#8221;application/octet-stream&#8221; /&gt;<br />
&lt;mimeMap fileExtension=&#8221;.pkg&#8221; mimeType=&#8221;application/octet-stream&#8221; /&gt;<br />
&lt;/staticContent&gt;<br />
&lt;/system.webServer&gt;</p>
<p>E tutto funziona, anche sotto Windows Azure.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=131&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2012/04/24/static-file-content-mapping-in-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2012/04/24/static-file-content-mapping-in-asp-net-mvc/</feedburner:origLink></item>
		<item>
		<title>Calybra</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/KH9_2nMbdDk/</link>
		<comments>http://codeisvalue.wordpress.com/2012/01/18/calybra/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 23:09:14 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Calybra]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=127</guid>
		<description><![CDATA[Finalmente è pronta! Calybra, la bilancia per gelatai che io e Marco Pozzan abbiamo contribuito a sviluppare creando il software (sviluppato in tecnologia Microsoft .NET e Windows Presentation Foundation) affronterà il mercato con uno stand della neonata Naonix al Sigep di Rimini, dal 21 gennaio. E&#8217; emozionante! Ecco il video pubblicato su Youtube che la presenta:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=127&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finalmente è pronta! <a title="Calybra" href="http://www.calybra.it">Calybra</a>, la bilancia per gelatai che io e <a href="http://www.facebook.com/pozzanmarco">Marco Pozzan</a> abbiamo contribuito a sviluppare creando il software (sviluppato in tecnologia Microsoft .NET e Windows Presentation Foundation) affronterà il mercato con uno stand della neonata <a title="Naonix" href="http://www.naonix.it/">Naonix </a>al <a title="SIGEP" href="http://www.sigep.it/">Sigep </a>di Rimini, dal 21 gennaio. E&#8217; emozionante!</p>
<p>Ecco il video pubblicato su <a title="Youtube" href="http://www.youtube.com">Youtube </a>che la presenta:<br />
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='490' height='306' src='http://www.youtube.com/embed/Vai_OLM7TKg?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=127&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2012/01/18/calybra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2012/01/18/calybra/</feedburner:origLink></item>
		<item>
		<title>Angry Birds &amp; HTML5</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/8Rmb8L1KM1U/</link>
		<comments>http://codeisvalue.wordpress.com/2011/09/01/angry-birds-html5/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 22:08:08 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=125</guid>
		<description><![CDATA[Credo molto nell&#8217;HTML5. Mi sono convinto che una applicazione Web sia decisamente più pratica da sviluppare e manutenere, specie grazie a ASP.NET MVC (almeno per i miei gusti). E adesso che si stanno diffondendo i giochi scritti in HTML5 (e soprattutto sul Canvas) è un escalation di entusiasmi. Oggi ho raggiunto il culmine avendo trovato [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=125&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Credo molto nell&#8217;HTML5. Mi sono convinto che una applicazione Web sia decisamente più pratica da sviluppare e manutenere, specie grazie a ASP.NET MVC (almeno per i miei gusti).</p>
<p>E adesso che si stanno diffondendo i giochi scritti in HTML5 (e soprattutto sul Canvas) è un escalation di entusiasmi.</p>
<p>Oggi ho raggiunto il culmine avendo trovato Angry Birds (visto, ma mai giocato) scritto in HTML5. Lo trovate su <a title="qui" href="http://chrome.angrybirds.com/" target="_blank">http://chrome.angrybirds.com/</a>. Attenti: molto coinvolgente!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=125&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/09/01/angry-birds-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/09/01/angry-birds-html5/</feedburner:origLink></item>
		<item>
		<title>Internals to .NET</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/oyxy3mZ_VLc/</link>
		<comments>http://codeisvalue.wordpress.com/2011/08/02/internals-to-net/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 11:19:04 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=123</guid>
		<description><![CDATA[In questo blog ci sono articoli interessanti a &#8220;internals&#8221; su .NET. Anche questo sulle Dependency Property di WPF&#8230;. Quando ho tempo&#8230;.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=123&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In questo <a title="blog" href="http://www.abhisheksur.com/" target="_blank">blog</a> ci sono articoli interessanti a &#8220;internals&#8221; su .NET.</p>
<p>Anche <a title="questo" href="http://www.abhisheksur.com/2011/07/internals-of-dependency-property-in-wpf.html" target="_blank">questo </a>sulle Dependency Property di WPF&#8230;.</p>
<p>Quando ho tempo&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=123&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/08/02/internals-to-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/08/02/internals-to-net/</feedburner:origLink></item>
		<item>
		<title>Costi di Windows Azure</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/bw83EADM9Ns/</link>
		<comments>http://codeisvalue.wordpress.com/2011/07/27/costi-di-windows-azure/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 06:48:02 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=120</guid>
		<description><![CDATA[Per riferimento, quando avrò tempo di leggerli, un paio di post sui costi di Windows Azure: http://robindotnet.wordpress.com/2011/07/18/host-your-clickonce-deployment-in-azure-for-pennies-per-month/ http://blogs.msdn.com/b/windowsazurestorage/archive/2010/07/09/understanding-windows-azure-storage-billing-bandwidth-transactions-and-capacity.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=120&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Per riferimento, quando avrò tempo di leggerli, un paio di post sui costi di Windows Azure:</p>
<p><a href="http://robindotnet.wordpress.com/2011/07/18/host-your-clickonce-deployment-in-azure-for-pennies-per-month/">http://robindotnet.wordpress.com/2011/07/18/host-your-clickonce-deployment-in-azure-for-pennies-per-month/</a></p>
<p><a href="http://blogs.msdn.com/b/windowsazurestorage/archive/2010/07/09/understanding-windows-azure-storage-billing-bandwidth-transactions-and-capacity.aspx">http://blogs.msdn.com/b/windowsazurestorage/archive/2010/07/09/understanding-windows-azure-storage-billing-bandwidth-transactions-and-capacity.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=120&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/07/27/costi-di-windows-azure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/07/27/costi-di-windows-azure/</feedburner:origLink></item>
		<item>
		<title>Javascript is the Assembly Language for the Web</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/uWeCCi1VUXQ/</link>
		<comments>http://codeisvalue.wordpress.com/2011/07/22/javascript-is-the-assembly-language-for-the-web/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 05:19:13 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[DLR]]></category>
		<category><![CDATA[DSL]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=116</guid>
		<description><![CDATA[Scott Hanselman sta pubblicando diverso materiale sull&#8217;argomento &#8220;Javascript è il linguaggio Assembly del Web&#8221;. C&#8217;è diverso materiale: http://www.hanselminutes.com/default.aspx?showID=294 http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebPart2MadnessOrJustInsanity.aspx http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebSematicMarkupIsDeadCleanVsMachinecodedHTML.aspx Ci sono anche dei post collegati: http://www.hanselman.com/blog/HanselminutesPodcast271InsideIronJSACompleteJavaScriptECMAScriptOpenSourceImplementationOnTheNETDLR.aspx http://www.hanselman.com/blog/HanselminutesPodcast263ACGuyLearnsJavaScriptChrisSellsMovesToTheWeb.aspx Una delle considerazione dietro questa affermazione, sta nel fatto che il codice Javascript dietro le pagine Web non è leggibile, per diversi motivi: generazione del javascript a partire da [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=116&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hanselman.com/blog/" target="_blank">Scott Hanselman</a> sta pubblicando diverso materiale sull&#8217;argomento &#8220;Javascript è il linguaggio Assembly del Web&#8221;.</p>
<p>C&#8217;è diverso materiale:</p>
<ul>
<li><a href="http://www.hanselminutes.com/default.aspx?showID=294">http://www.hanselminutes.com/default.aspx?showID=294</a></li>
<li><a href="http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebPart2MadnessOrJustInsanity.aspx">http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebPart2MadnessOrJustInsanity.aspx</a></li>
<li><a href="http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebSematicMarkupIsDeadCleanVsMachinecodedHTML.aspx">http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebSematicMarkupIsDeadCleanVsMachinecodedHTML.aspx</a></li>
</ul>
<p>Ci sono anche dei post collegati:</p>
<ul>
<li><a href="http://www.hanselman.com/blog/HanselminutesPodcast271InsideIronJSACompleteJavaScriptECMAScriptOpenSourceImplementationOnTheNETDLR.aspx">http://www.hanselman.com/blog/HanselminutesPodcast271InsideIronJSACompleteJavaScriptECMAScriptOpenSourceImplementationOnTheNETDLR.aspx</a></li>
<li><a href="http://www.hanselman.com/blog/HanselminutesPodcast263ACGuyLearnsJavaScriptChrisSellsMovesToTheWeb.aspx">http://www.hanselman.com/blog/HanselminutesPodcast263ACGuyLearnsJavaScriptChrisSellsMovesToTheWeb.aspx</a></li>
</ul>
<p>Una delle considerazione dietro questa affermazione, sta nel fatto che il codice Javascript dietro le pagine Web non è leggibile, per diversi motivi:</p>
<ul>
<li>generazione del javascript a partire da altri linguaggi (Script#, CoffeScript, &#8230;.)</li>
<li>Minification</li>
</ul>
<p>Ho scritto poco Javascript negli anni. Ma nel progetto in cui l&#8217;ho usato con più intensità, devo dire che mi sono divertito non poco, nonostante non ci sia Intellisense, tipizzazione statica, ecc&#8230;.</p>
<p>Nella mia idea di &#8220;scriptare&#8221; le applicazione (per la quale ho sempre apprezzato il DLR e i suoi usi &#8211; IronPython e IronRuby) ho gioito quando ho visto l&#8217;implementazione di IronJS che mi sto preparando ad usare.</p>
<p>Inoltre nella mia idea di Domain Specific Languges, Javascript può diventare appunto il codice generato a partire dal mio DSL&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=116&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/07/22/javascript-is-the-assembly-language-for-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/07/22/javascript-is-the-assembly-language-for-the-web/</feedburner:origLink></item>
		<item>
		<title>Happy Birthday, Linux</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/7c2l8psBK_I/</link>
		<comments>http://codeisvalue.wordpress.com/2011/07/22/happy-birthday-linux/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 05:09:36 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://codeisvalue.wordpress.com/?p=114</guid>
		<description><![CDATA[Ci sono sempre cose tanto divertenti in giro. Ancora di più se è Microsoft a farle. Come questo video che celebra i 20 anni di Linux. http://video.linux.com/sites/all/modules/custom/os_video_player/mediaplayer.swf?file=/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=114&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ci sono sempre cose tanto divertenti in giro. Ancora di più se è Microsoft a farle.</p>
<p>Come questo video che celebra i 20 anni di Linux.</p>
<p><a href="http://video.linux.com/sites/all/modules/custom/os_video_player/mediaplayer.swf?file=/">http://video.linux.com/sites/all/modules/custom/os_video_player/mediaplayer.swf?file=/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=114&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/07/22/happy-birthday-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/07/22/happy-birthday-linux/</feedburner:origLink></item>
		<item>
		<title>World’s Biggest Pacman</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/2YOkc6AKe6c/</link>
		<comments>http://codeisvalue.wordpress.com/2011/07/06/worlds-biggest-pacman/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 04:06:40 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Pacman]]></category>

		<guid isPermaLink="false">https://codeisvalue.wordpress.com/2011/07/06/worlds-biggest-pacman/</guid>
		<description><![CDATA[Io credo che questo sia incredibile: World&#8217;s Biggest Pacman. Un sito social in cui è possibile giocare a Pacman su schemi definiti dagli utenti, dalla community e, appunto, disegnare I propri schemi e condividerli. E’ un sito scritto completamente in HTML5. Io sono sempre stato un sostenitore delle applicazioni desktop, ma oramai Javascript è di [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=112&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Io credo che <a href="http://worldsbiggestpacman.com/">questo</a> sia incredibile: <a href="http://worldsbiggestpacman.com/">World&#8217;s Biggest Pacman</a>.</p>
<p>Un sito social in cui è possibile giocare a Pacman su schemi definiti dagli utenti, dalla community e, appunto, disegnare I propri schemi e condividerli.</p>
<p><a title="http://worldsbiggestpacman.com/" href="http://worldsbiggestpacman.com/"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://codeisvalue.files.wordpress.com/2011/07/image.png?w=473&#038;h=287" width="473" height="287" /></a></p>
<p>E’ un sito scritto completamente in HTML5. </p>
<p>Io sono sempre stato un sostenitore delle applicazioni desktop, ma oramai Javascript è di una potenza devastante e tutta la nuova generazione di browsers lo rendono ancora più appetibile. </p>
<p>Il link al sito l’ho trovato su un <a href="http://blogs.msdn.com/b/giorgio/archive/2011/06/28/html5-demos-at-fowa.aspx" target="_blank">post</a> blog del nostro <a href="http://blogs.msdn.com/b/giorgio/">Giorgio Sardo</a> che oramai è un Senior Evangelist su HTML5 in <a href="http://www.microsoft.com/" target="_blank">Microsoft</a>.</p>
<p>Eccezzionale!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=112&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/07/06/worlds-biggest-pacman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>

		<media:content url="http://codeisvalue.files.wordpress.com/2011/07/image.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/07/06/worlds-biggest-pacman/</feedburner:origLink></item>
		<item>
		<title>Scenari Applicativi per il Cloud Computing</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/-SeYGhA1OlU/</link>
		<comments>http://codeisvalue.wordpress.com/2011/07/01/scenari-applicativi-per-il-cloud-computing/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 21:50:41 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://codeisvalue.wordpress.com/2011/07/01/scenari-applicativi-per-il-cloud-computing/</guid>
		<description><![CDATA[Ieri (30/6) ho tenuto per lo IAL un web seminar sul tema in oggetto, il mitico Cloud Computing. Se a qualcuno interessa, ecco il link alla registrazione: http://www.presentation.ialweb.it/p58739553/ Ecco anche le slides disponibili: 2011.06.30 scenari applicativi per il cloud computinghttp://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2011-06-30-scenariapplicativiperilcloudcomputing-110701164002-phpapp02&#038;stripped_title=20110630-scenari-applicativi-per-il-cloud-computing&#038;userName=marco.parenzan View more presentations from Marco Parenzan. Non è la prima volta che parlo di Cloud [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=110&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ieri (30/6) ho tenuto per lo IAL un web seminar sul tema in oggetto, il mitico Cloud Computing. Se a qualcuno interessa, ecco il link alla registrazione: </p>
<p><a href="http://www.presentation.ialweb.it/p58739553/">http://www.presentation.ialweb.it/p58739553/</a></p>
<p>Ecco anche le slides disponibili:</p>
<div style="width:425px;" id="__ss_8484360"><strong><a title="2011.06.30   scenari applicativi per il cloud computing" href="http://www.slideshare.net/marco.parenzan/20110630-scenari-applicativi-per-il-cloud-computing">2011.06.30 scenari applicativi per il cloud computing</a></strong><a href="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2011-06-30-scenariapplicativiperilcloudcomputing-110701164002-phpapp02&#038;stripped_title=20110630-scenari-applicativi-per-il-cloud-computing&#038;userName=marco.parenzan">http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2011-06-30-scenariapplicativiperilcloudcomputing-110701164002-phpapp02&#038;stripped_title=20110630-scenari-applicativi-per-il-cloud-computing&#038;userName=marco.parenzan</a>
<div style="padding:5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/marco.parenzan">Marco Parenzan</a>.</div>
</p></div>
<p>Non è la prima volta che parlo di Cloud Computing. L’ho fatto l’anno scorso in occasione del viaggio a Seattle per il Cloud Futures 2010:</p>
<p>Video: <a href="http://research.microsoft.com/apps/video/default.aspx?id=122453">Management and Contextualization of Scientific Virtual Appliances | SKYINFO – Innovative Technology-Convergence Cloud Application | Domain Specific Cloud Components for General Availability of Cloud Computing to Research | Towards an Open Service Framework</a></p>
<p>Slides: <a href="http://research.microsoft.com/en-us/events/cloudfutures2010/parenzan.pptx">Domain Specific Cloud Components for General Availability of Cloud Computing to Research</a></p>
<p>Invece il 1 aprile 2011 ho fatto una presentazione di cui quest’ultima è diretta evoluzione. Devo ancora mettere a posto la demo perchè sia distribuibile, ma se qualcuno è interessato, mi contatti.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=110&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/07/01/scenari-applicativi-per-il-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/07/01/scenari-applicativi-per-il-cloud-computing/</feedburner:origLink></item>
		<item>
		<title>Community Updates</title>
		<link>http://feedproxy.google.com/~r/CodeIsValue/~3/aItpOqGJULo/</link>
		<comments>http://codeisvalue.wordpress.com/2011/02/13/community-updates/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 07:27:16 +0000</pubDate>
		<dc:creator>codeisvalue</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[T4]]></category>
		<category><![CDATA[xe.net]]></category>

		<guid isPermaLink="false">https://codeisvalue.wordpress.com/2011/02/13/community-updates/</guid>
		<description><![CDATA[After few months I found some time to write something. I’m not a great blogger, no. And also I’m not a tweetie! I hope my 2011 (uh, late for new year wishes!) will be full of presentations, so to fill, at least, my Slideshare account. I have just uploaded my last presentation for xe.net: Code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=109&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After few months I found some time to write something. I’m not a great blogger, no. And also I’m not a tweetie! I hope my 2011 (uh, late for new year wishes!) will be full of presentations, so to fill, at least, my <a href="http://www.slideshare.com/">Slideshare</a> account. I have just uploaded my last presentation for <a href="http://www.xedotnet.com/">xe.net</a>: <a href="http://www.xedotnet.com/Home/Meeting/20110128">Code Generation con i templates T4 in Visual Studio</a>    </p>
<div style="width:425px;" id="__ss_6908327"><strong><a title="2011.01.28   code generation con i templates t4 in visual studio" href="http://www.slideshare.net/marco.parenzan/20110128-code-generation-con-i-templates-t4-in-visual-studio">2011.01.28 code generation con i templates t4 in visual studio</a></strong><a href="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2011-01-28-codegenerationconitemplatest4invisualstudio-110213004259-phpapp01&#038;stripped_title=20110128-code-generation-con-i-templates-t4-in-visual-studio&#038;userName=marco.parenzan">http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2011-01-28-codegenerationconitemplatest4invisualstudio-110213004259-phpapp01&#038;stripped_title=20110128-code-generation-con-i-templates-t4-in-visual-studio&#038;userName=marco.parenzan</a>
<div style="padding:5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/marco.parenzan">Marco Parenzan</a>.</div>
</p></div>
<p>Here is the <a href="http://cid-a83bbb23f3e251dc.office.live.com/self.aspx/Presentations/2011/2011.01.28%20-%20Code%20Generation%20con%20i%20templates%20T4%20in%20Visual%20Studio%20-%20Code.zip">code</a>. It misses WPF+Silverlight code because I have to clean it!</p>
<p>I have to say thanks to the <a href="http://blog.boschin.it/">President</a>, <a href="http://blog.knodev.com/">Davide</a>, <a href="http://blog.dottor.net/">Andrea</a> e <a href="http://blogs.ugidotnet.org/dsenatore/">Davide</a> for the opportunity of an off-line meeting in Mestre with 40+ (!!!) people hearing about T4. This was my first off-line meeting for xe.net after three Virtual Meetings:</p>
<ul>
<li><a href="http://www.slideshare.net/marco.parenzan/20101119-iniziare-con-f-5838878">Introduzione a F#</a></li>
<li><a href="http://www.slideshare.net/marco.parenzan/20100521-introducing-sql-server-modeling">Introducing SQL Server Modeling</a></li>
<li><a href="http://www.slideshare.net/marco.parenzan/dynamic-language-programming-for-the-statically-typed-programmer">Dynamic Language programming for the statically typed programmer</a></li>
</ul>
<p>For this work, at the december event @ xe.net, I was <a href="http://blog.boschin.it/post/2010/12/16/XeDotNet-Christmas-Pizza.aspx">awarded</a> with a MSDN Ultimate licence! Thanks again guys.</p>
<p>Again, I’m not probably a blogger, but I want to be a better slideshare user. I the next two week I’ll have three presentations, with updated contents on F# at <a href="http://www.ugialt.net/">ugialt.net</a> and T4 with <a href="http://www.innovazionefvg.net/visual-studio-1nn0valab.aspx">1nn0va</a>, and a new presentation on <a href="http://www.univ.trieste.it/vedinews/index.php?id=2132&amp;tiponews=7">GPUs</a>.</p>
<p>In march <a href="http://www.innovazionefvg.net/">1nn0va</a> will give a session about WPF and Silverlight: it will be interesting because we’ll present some real products developed in WPF.</p>
<p>I also want to update my <a href="http://slidesharemailer.com/wf/click?c=uO6HrIECmgsMyMFzOPMkJZlt%2B%2FYs4wOUNryWguebgt0hms6K2M6qHwTFxcYZauFzk1RRfNoHQKA%2BLa1fk9JCC%2BA4NI8fC6FxcR3g9XWFyuPZyHF%2Flw%2FCP8HpzIS%2BRRbX&amp;rp=l6HG3FW8n50aQtA4oQ21QeS%2FL%2FzChvuNySjGuCW8vROdIbrBSYSX8qfAe3VrfdRAj23p0eiXrkhbBQoj7HzVxA%3D%3D&amp;up=YDTqBOjidbCUo%2Far1oAtZuvIKReJf0hCurl4qB2EK88IXuIS0LsSPv92Ls%2FeWmL5WHjmUj35zKuxUJzwtPheTBkZBUbwPVPWVwA78r4Df3k%3D&amp;u=ZQma-_dsTzOvZlZTFRFfjg%2Fh1">C# language Evolution</a> presentation because it seems that is appreciated.</p>
<p>Soon news!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeisvalue.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeisvalue.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeisvalue.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeisvalue.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeisvalue.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeisvalue.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeisvalue.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeisvalue.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeisvalue.wordpress.com&amp;blog=4205457&amp;post=109&amp;subd=codeisvalue&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeisvalue.wordpress.com/2011/02/13/community-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1e04b51828ae900b01e96c36304efca?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">marco.parenzan</media:title>
		</media:content>
	<feedburner:origLink>http://codeisvalue.wordpress.com/2011/02/13/community-updates/</feedburner:origLink></item>
	</channel>
</rss>

