<?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/"
	>

<channel>
	<title>FlashFuck.it &#187; Speaking</title>
	<atom:link href="http://www.flashfuck.it/category/speaking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashfuck.it</link>
	<description>flash platform, gaming and 3D</description>
	<lastBuildDate>Mon, 23 Jan 2012 18:11:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>FlashCamp Milan 2011 &#8211; Garbage Collection in the Flash Platform</title>
		<link>http://www.flashfuck.it/2011/05/21/flashcamp-milan-2011-garbage-collection-in-the-flash-platform/</link>
		<comments>http://www.flashfuck.it/2011/05/21/flashcamp-milan-2011-garbage-collection-in-the-flash-platform/#comments</comments>
		<pubDate>Sat, 21 May 2011 13:19:14 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[FlashCamp]]></category>
		<category><![CDATA[Milano]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=212</guid>
		<description><![CDATA[This post is to summarize my session at the FlashCamp. Here&#8217;s the preso: (italian only) Flashcamp Milan 2011 &#8211; Garbage Collector in the Flash Platform View more presentations from Piergiorgio Niero and here are the examples shown during the session: Garbage collector in action: this example shows the memory allocation behavior. Take a look to [...]]]></description>
			<content:encoded><![CDATA[<p>This post is to summarize my session at the FlashCamp.</p>
<p>Here&#8217;s the preso: (italian only)</p>
<div style="width:425px" id="__ss_8049065"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/piergiorgioniero/flashcamp-milan-2011-garbage-collector-in-the-flash-platform" title="Flashcamp Milan 2011 - Garbage Collector in the Flash Platform">Flashcamp Milan 2011 &#8211; Garbage Collector in the Flash Platform</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/8049065" width="425" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/piergiorgioniero">Piergiorgio Niero</a> </div>
</p></div>
<p>and here are the examples shown during the session:</p>
<p>Garbage collector in action:<br />
this <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/GCinAction.swf">example </a>shows the memory allocation behavior. Take a look to the saw tooth yellow line in the graph.</p>
<p>Weak vs Strong references:<br />
two examples to show the difference between weak and strong references: basically weak do not increment reference count, strong do that.<br />
If you store keys in a dictionary using weak references your keys are getting cleaned by the garbage collector ( <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/Dictionary_Weak_Reference.swf">example</a> )<br />
otherwise the GC doesn&#8217;t clean your keys ( <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/Dictionary_Strong_Reference.swf">example</a> ).</p>
<p>Blitting in order to ease the GC:<br />
The GC iterates through each reachable node starting from the roots, one of these roots is the displaylist. So in order to ease the GC work we could flatten the whole displaylist to one bitmap by leveraging the usage of the blitting technique.<br />
These examples display about 1000 new objects drawn each frame by using the display list ( <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/MarioDisplayList.swf">example </a>) or the blitting technique ( <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/MarioBlitted.swf">example </a>). The difference in performances are not only due to the different compositing techniques (built in compositing when using the displaylist VS manual compositing when using the blitting technique ) but also to the lower number of instances to be collected by the GC.</p>
<p>NOTE: both examples are very cpu intensive</p>
<p>Don&#8217;t let the GC start by using the memory pool technique:<br />
The GC freezes the program when freeing the memory. The memory pool technique consists in reusing the instances of your objects preventing the GC to identify those objects as garbage.<br />
This makes your app memory utilization stable (a straight yellow line ) and removes every glitch due to the garbage collection.<br />
These examples show a simple particle fountain implemented by leveraging the memory pool technique ( <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/ParticlesPool.swf">example </a>) or not ( <a href="http://www.flashfuck.it/wp-content/uploads/2011/05/ParticlesNoPool.swf">example </a>).</p>
<p>Finally:<br />
<a href="http://www.flashfuck.it/wp-content/uploads/2011/05/FlashCampMilano2011GC.zip">here&#8217;s the source</a>, it&#8217;s not the best commented nor the best implemented files out there, but just take a look at them to have a full comprehension of what&#8217;s going on <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>If you need further help, please comment this post and let me know.<br />
ciao</p>
<p>PS: obviously mario copyright is property of nintendo <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2011/05/21/flashcamp-milan-2011-garbage-collection-in-the-flash-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Camp Milano 2011 &#8211; the day after</title>
		<link>http://www.flashfuck.it/2011/05/21/flash-camp-milano-2011-the-day-after/</link>
		<comments>http://www.flashfuck.it/2011/05/21/flash-camp-milano-2011-the-day-after/#comments</comments>
		<pubDate>Sat, 21 May 2011 08:46:08 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[FlashCamp]]></category>
		<category><![CDATA[Milan]]></category>
		<category><![CDATA[WhyMCA]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=206</guid>
		<description><![CDATA[Yesterday it has been a great day! Yesterday we had the FlashCamp here in Milan, hosted by WhyMCA mobile conference (thanks guys). Lots of fun, lots of people (450 nerds) from the most different beliefs (html5ers, javascripters, objective-Cers, androiders, whateverers ), a great happening to spread the word about what you can do with the [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday it has been a great day!<br />
Yesterday we had the FlashCamp here in Milan, hosted by <a href="http://www.whymca.org/">WhyMCA</a> mobile conference (thanks guys).</p>
<p><img class="size-medium wp-image-208 aligncenter" title="whymca-logo" src="http://www.flashfuck.it/wp-content/uploads/2011/05/whymca-logo-300x255.png" alt="Flash Camp at WhyMCA" width="300" height="255" /></p>
<p>Lots of fun, lots of people (450 nerds) from the most different beliefs (html5ers, javascripters, objective-Cers, androiders, whateverers <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ), a great happening to spread the word about what you can do with the flash platform and how it can ease your work when deploying on mobile devices.<br />
Thanks to Adobe we even had a welcome guest: <a href="http://corlan.org/">Mihai Corlan</a>, who presented very cool new stuff putting his hands on Flex Builder 4.5 and the Flex Hero SDK.<br />
Moreover it has been totally the best possible way to meet other people from the community of Milan, <a href="http://theflashmind.com/">TheFlashMind</a>, and to spread the word about our cool AUG <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I really enjoyed the FlashCamp, it has been a pretty unique conference in Italy and it has been even more successful than we expected.<br />
As the camp was in &#8220;Eataly&#8221; we had an Eatalian FlashCamp party at the end, a cool way to make developers meet each other and to make them drunk <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Someone <a href="http://twitter.com/#!/BrunoFonzi/status/71630157114376192">even twitted that it was the best part of the FlashCamp in Milan</a> <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Last but not least: my friend <a href="http://lucamezzalira.com/">Luca </a>already uploaded <a href="http://www.flickr.com/photos/lucamezzalira/sets/72157626766575326/">some pics to his flickr account</a>.</p>
<p>See you at the next camp <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2011/05/21/flash-camp-milano-2011-the-day-after/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Graphics Unleashed at WebTech</title>
		<link>http://www.flashfuck.it/2010/11/10/flash-graphics-unleashed-at-webtech/</link>
		<comments>http://www.flashfuck.it/2010/11/10/flash-graphics-unleashed-at-webtech/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 08:58:49 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Flash Player 10]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[TheFlashMind]]></category>
		<category><![CDATA[WebTechCon]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=198</guid>
		<description><![CDATA[As my previous post was announcing, cancelling and reannouncing, I&#8217;m speaking at WebTech Conference here in Milan. Here&#8217;s my presentation slides Webtech Conference Italy 2010 &#8211; Flash Graphics Unleashed View more presentations from Piergiorgio Niero. And here&#8217;s the examples zip: www.flashfuck.it/webtech/examples.zip If you need something to be more clear or some further explanation please feel [...]]]></description>
			<content:encoded><![CDATA[<p>As my previous post was announcing, cancelling and reannouncing, I&#8217;m speaking at WebTech Conference here in Milan.<br />
Here&#8217;s my presentation slides</p>
<div style="width:425px" id="__ss_5723876"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/piergiorgioniero/webtech-conference-italy-2010-flash-graphics-unleashed" title="Webtech Conference Italy 2010 - Flash Graphics Unleashed">Webtech Conference Italy 2010 &#8211; Flash Graphics Unleashed</a></strong><object id="__sse5723876" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=webtech-101110024248-phpapp01&#038;stripped_title=webtech-conference-italy-2010-flash-graphics-unleashed&#038;userName=piergiorgioniero" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse5723876" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=webtech-101110024248-phpapp01&#038;stripped_title=webtech-conference-italy-2010-flash-graphics-unleashed&#038;userName=piergiorgioniero" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="padding:5px 0 12px">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/piergiorgioniero">Piergiorgio Niero</a>.</div>
</div>
<p>And here&#8217;s the examples zip: <a href="http://www.flashfuck.it/webtech/examples.zip">www.flashfuck.it/webtech/examples.zip</a><br />
If you need something to be more clear or some further explanation please feel free to comment this post <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2010/11/10/flash-graphics-unleashed-at-webtech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at WebTechCon Italy &#8211; 9-10 November 2010 &#8211; Milano</title>
		<link>http://www.flashfuck.it/2010/10/06/speaking-at-webtechcon-italy-9-10-november-2010-milano/</link>
		<comments>http://www.flashfuck.it/2010/10/06/speaking-at-webtechcon-italy-9-10-november-2010-milano/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 08:08:18 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[The Flash Mind]]></category>
		<category><![CDATA[WebTechCon]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=179</guid>
		<description><![CDATA[!!!ONE MORE UPDATE!!! I&#8217;ll be speaking The session will be &#8220;Flash graphics unleashed&#8221;. 30 mins to dig into flash graphics capabilities. See you there ciao !!!UPDATE!!! Some work appointments came through and I&#8217;ll not be able to be back for WebTech :\ But don&#8217;t worry! there&#8217;s a HUUUUGE &#8220;replacement&#8221;, Sandro Ducceschi from SFUG has took [...]]]></description>
			<content:encoded><![CDATA[<p><strong>!!!ONE MORE UPDATE!!!</strong><br />
I&#8217;ll be speaking <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
The session will be &#8220;Flash graphics unleashed&#8221;. 30 mins to dig into flash graphics capabilities.<br />
See you there<br />
ciao
</p>
<p><strong>!!!UPDATE!!!</strong><br />
Some work appointments came through and I&#8217;ll not be able to be back for WebTech :\<br />
But don&#8217;t worry! there&#8217;s a HUUUUGE &#8220;replacement&#8221;, <a href="http://blog.swfjunkie.com/">Sandro Ducceschi</a> from <a href="http://www.sfug.ch/">SFUG</a> has took over my slots! <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
so guys, have fun, I&#8217;ll be there with my soul <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Yup, back on stage <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ll be speaker at <a href="http://webtechcon.it" target="_blank">WebTechCon Italy</a>, it&#8217;s the first year for this German conference in Italy and there are a HUGE amount of good reasons for you to come.</p>
<p style="text-align: center;"><a href="http://webtechcon.it/" target="_blank"><img class="size-full wp-image-190 aligncenter" title="webteckspeakbutton" src="http://www.flashfuck.it/wp-content/uploads/2010/08/webteckspeakbutton.gif" alt="" width="150" height="100" /></a></p>
<p>First of all it&#8217;s not all about flash!! There are 5 main tracks: webtech, flash day, silverlight day, javascript day and php4 frontend day&#8230; yes, &#8220;day&#8221; is not to be intended as &#8220;whole day&#8221; but much more as &#8220;track&#8221;.</p>
<p>It&#8217;s a good opportunity to put an eye on what&#8217;s going on on the html5 or silverlight fields and learn something new.</p>
<p>On the flashy side there are a bunch of well known and surely attractive speakers:</p>
<p><a href="http://lucamezzalira.com/" target="_blank">Luca Mezzalira</a> ,<a href="http://interpreting.it/" target="_blank">Andrea Trento</a> ,<a href="http://casario.blogs.com/" target="_blank">Marco Casario</a> &#8230;I&#8217;m sure you all know what those guys are known for&#8230; then&#8230; well&#8230;. there&#8217;s me <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Further, it&#8217;s a good way to meet other guys from <a href="http://groups.google.it/group/theflashmind---adobe-flash-platform-user-group---italy" target="_blank">TheFlashMind AUG</a> <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;ll be <a href="http://webtechcon.it/2010/speaker/#5389" target="_blank">speaking</a> twice on flash graphics and pureMVC.</p>
<p>Be sure you buy a ticket and come, one month&#8217;s left, then&#8230; rock n roll</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2010/10/06/speaking-at-webtechcon-italy-9-10-november-2010-milano/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speaking at IGDA Switzerland 25th february 2010</title>
		<link>http://www.flashfuck.it/2010/02/08/speaking-at-igda-switzerland-25th-february-2010/</link>
		<comments>http://www.flashfuck.it/2010/02/08/speaking-at-igda-switzerland-25th-february-2010/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 09:25:56 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[igda]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=172</guid>
		<description><![CDATA[I&#8217;ll be speaking at IGDA Switzerland in Bern in few weeks, a great opportunity for me to talk about the Flash Platform as a gaming platform, to share the experience I had making the engine of Wazzamba and to meet new people I only &#8220;met&#8221; in twitter or in their blogs The meeting will take [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be speaking at <a href="http://www.igda.ch">IGDA Switzerland</a> in Bern in few weeks,<br />
<img src="http://www.igda.org/sites/all/themes/igda_black/logo.png" alt="Piergiorgio Niero IGDA Switzerland" /><br />
a great opportunity for me to talk about the Flash Platform as a gaming platform, to share the experience I had making the engine of <a href="http://www.wazzamba.com">Wazzamba</a> and to meet new people I only &#8220;met&#8221; in twitter or in their blogs <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The meeting will take place in february 25th at &#8220;<a href="http://www.nothing.ch/">Nothing</a>&#8221; (great name guys <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) hq in Wabern, you can find more info <a href="http://www.igda.ch/archives/225">here in IGDA Switzerland blog</a>.<br />
See you there <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2010/02/08/speaking-at-igda-switzerland-25th-february-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at &#8220;Arrivano i guru&#8221; September 26th 2009 Milan</title>
		<link>http://www.flashfuck.it/2009/08/07/speaking-at-arrivano-i-guru-september-26th-2009-milan/</link>
		<comments>http://www.flashfuck.it/2009/08/07/speaking-at-arrivano-i-guru-september-26th-2009-milan/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 10:13:52 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[Speaking]]></category>
		<category><![CDATA[BitmapData]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[gfx]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=157</guid>
		<description><![CDATA[I&#8217;m pleased to be speaking at &#8220;Arrivano i guru&#8221; stage of Milan the next September 26th. Arrivano i guru is a moving conference iterating the whole italian peninsula. Here&#8217;s the complete list of stages Main topics are Adobe Flash Platform , SEO, and graphics. Great speakers are involved, such as Tiziano Fruet, Luca Mezzalira, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pleased to be speaking at &#8220;Arrivano i guru&#8221; stage of Milan the next September 26th.<br />
Arrivano i guru is a moving conference iterating the whole italian peninsula. <a href="http://www.arrivanoiguru.com/index.php?pagina=13&#038;cnt=1&#038;ref=0">Here&#8217;s the complete list of stages</a> <br />
Main topics are Adobe Flash Platform , SEO, and graphics. Great speakers are involved, such as Tiziano Fruet, Luca Mezzalira, and <a href="http://www.arrivanoiguru.com/index.php?pagina=14&#038;cnt=1&#038;ref=1">many others</a>.</p>
<p>This is my session&#8217;s outline:<br />
(ITALIAN)<br />
Special Effects in Flash CS4<br />
Impariamo ad utilizzare bitmaps, filtri e tweens in Flash CS4 per creare effetti speciali custom.</p>
<p>I filtri in flash<br />
	- cosa sono i filtri in flash<br />
	- applicare i filtri con AS3</p>
<p>I blendmode in flash<br />
	- cosa sono i blendmode in flash<br />
	- applicare i blendmode AS3</p>
<p>Sveliamo i bitmap<br />
	- cos&#8217;Ã¨ un bitmap in Flash<br />
	- i bitmap come tela di un pittore<br />
	- manipolare i bitmap in AS3</p>
<p>TweensyFX<br />
	- cos&#8217;Ã¨ Tweensy<br />
	- animare i propri effetti speciali</p>
<p>(ENGLISH)<br />
Special Effects in Flash CS4<br />
Let&#8217;s learn to use bitmaps, filters and tweens within Flash CS4 to create custom special effects.</p>
<p>filters<br />
	- what are filters in flash?<br />
	- applying filters using AS3</p>
<p>blendmodes<br />
	- what blend modes are<br />
	- applying blendmodes using AS3</p>
<p>discovering bitmaps<br />
	- what are bitmaps for Flash?<br />
	- bitmaps as a painter&#8217;s canvas<br />
	- manipulating bitmaps using AS3</p>
<p>TweensyFX<br />
	- what&#8217;s Tweensy?<br />
	- creating and animating our own special effects</p>
<p>See you there <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2009/08/07/speaking-at-arrivano-i-guru-september-26th-2009-milan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All4Web day &#8211; 8th may 2009 &#8211; Milano Italy</title>
		<link>http://www.flashfuck.it/2009/04/01/all4web-day-8th-may-2009-milano-italy/</link>
		<comments>http://www.flashfuck.it/2009/04/01/all4web-day-8th-may-2009-milano-italy/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:08:07 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[The Flash Mind]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=134</guid>
		<description><![CDATA[Great news! Cross communities events work in Italy too and this is going to be an awesome one. What All4Web is a whole day of conference, completely free, completely geeky,Â  and completely across as many RIA technologies as you can count. There will be great sessions about both server side and client side technologies such [...]]]></description>
			<content:encoded><![CDATA[<p>Great news! Cross communities events work in Italy too and this is going to be an awesome one.</p>
<p style="text-align: center;"><a href="http://www.all4webday.com" target="_blank"><img class="size-full wp-image-135 aligncenter" title="all4web" src="http://www.flashfuck.it/wp-content/uploads/2009/04/all4web-def.jpg" alt="all4web" width="300" height="233" /></a></p>
<p><strong>What</strong><br />
<a href="http://www.all4webday.com" target="_blank">All4Web</a> is a whole day of conference, completely free, completely geeky,Â  and completely across as many RIA technologies as you can count.<br />
There will be great sessions about both server side and client side technologies such as the Adobe Flash Platform (and obviously Flex and AIR), JavaFX, AJAX, Microsoft Silverlight, Adobe Coldfusion, J2EE and so on <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<strong>Who</strong><br />
Many talented guys from every corner of Italy (and Switzerland) representing their usergroups and discussing about their favourite technology.<br />
Involved usergroups are</p>
<ul>
<li><a title="http://www.theflashmind.com/" rel="nofollow" href="http://groups.adobe.com/groups/b01af2eb56">TheFlashMind</a> (Adobe Flash Platform User Group)</li>
<li><a class="externallink" title="http://www.cfmentor.com/" rel="nofollow" href="http://www.cfmentor.com/">CfMentor</a> (Adobe ColdFusion User Group)</li>
<li><a class="externallink" title="http://www.expressys.net/" rel="nofollow" href="http://www.expressys.net/">ExpressYS</a> (Microsoft Silverlight community)</li>
<li><a class="externallink" title="http://www.augitaly.com/flexgala/" rel="nofollow" href="http://www.augitaly.com/flexgala/">Flex Gala</a> (AUG Italy)</li>
<li><a class="externallink" title="http://www.agilemovement.it/" rel="nofollow" href="http://www.agilemovement.it/">Italian Agile Movement</a></li>
<li><a class="externallink" title="http://www.jugmilano.it/" rel="nofollow" href="http://www.jugmilano.it/">JUG Milano</a> (Java User Group)</li>
<li><a class="externallink" title="http://www.pizze-ria.it/" rel="nofollow" href="http://www.pizze-ria.it/">pizze-ria</a> (Rich Internet Applications community)</li>
<li><a class="externallink" title="http://ugialt.net/" rel="nofollow" href="http://ugialt.net/">UGIALT.NET</a> (Microsoft .NET platform community)</li>
<li><a class="externallink" title="http://www.ugidotnet.org/" rel="nofollow" href="http://www.ugidotnet.org/">UGIdotNET</a> (Microsoft .NET platform community)</li>
</ul>
<p>Take a look at the <a href="http://www.all4webday.com/jsp/Wiki?Agenda" target="_blank">agenda</a> to have an idea of what a great event it&#8217;s going to be <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Where</strong><br />
In Milan, at the <a href="http://www.disco.unimib.it/" target="_blank">University &#8220;Bicocca&#8221;</a> (Edificio U6 Piazza dell&#8217;Ateneo Nuovo 1) (<a href="http://maps.google.com/maps?q=Edificio+U6+Piazza+dell%27Ateneo+Nuovo+1+20126+Milano" target="_blank">google maps here</a>)</p>
<p><strong>When</strong><br />
May 8th 2009, from 10AM to about 6PM.</p>
<p><strong>Furthermore&#8230;.</strong><br />
There will be a great debate about &#8220;RIA vs RIA&#8221;&#8230;just to start the day&#8230;(I can&#8217;t wait!!!!)<br />
There will be lots of gadgets<br />
There will be a lot of technology fighting! <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<strong>IT&#8217;S COMPLETELY FREEEEEEEEE!!!!!!!!</strong><br />
To get the broadest audience ever all sessions will be taken in <strong>italian</strong>.</p>
<p>&#8230;and finally&#8230;I&#8217;m back on the stage ready to speak! <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I hope to see you all there <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2009/04/01/all4web-day-8th-may-2009-milano-italy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AdobeMaxEurope.includeFlexCamp();</title>
		<link>http://www.flashfuck.it/2008/11/05/adobemaxeuropeincludeflexcamp/</link>
		<comments>http://www.flashfuck.it/2008/11/05/adobemaxeuropeincludeflexcamp/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 20:11:20 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[FlexCamp]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=98</guid>
		<description><![CDATA[Sorry for the nerdy title guys, but as I wrote that it sounded sooooo nicely! Anyway, here&#8217;s the news: FlexCamp moved inside Adobe Max Europe (w00t!) and will take place on 30th November in Milan. Further, every flexcamp attendee will have a HUGE discount on Adobe Max ticket. Take a look at flexcamp official site [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the nerdy title guys, but as I wrote that it sounded sooooo nicely! <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.adobe.com/1to1_campaigns/2008_MAX/banners/MAX08_B120x60.jpg" alt="" width="120" height="60" /></p>
<p>Anyway, here&#8217;s the news: <a href="http://www.flexcamp.it">FlexCamp</a> moved inside <a href="http://www.adobe.com/go/maxexplorer">Adobe Max Europe</a> (w00t!) and will take place on 30th November in Milan.<br />
Further, every flexcamp attendee will have a HUGE discount on Adobe Max ticket.</p>
<p>Take a look at <a href="http://www.flexcamp.it/2008/11/05/flex-camp-max-final-details/">flexcamp official site to have more informations</a>, anyway&#8230; wow&#8230; I&#8217;m going to speak at Max&#8230; It&#8217;s an amazing news isn&#8217;t it? let&#8217;s say woot all together <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>see you soon in Milan <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2008/11/05/adobemaxeuropeincludeflexcamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlexCamp 2008 Milan 7th November</title>
		<link>http://www.flashfuck.it/2008/09/10/flexcamp-2008-milan-7th-november/</link>
		<comments>http://www.flashfuck.it/2008/09/10/flexcamp-2008-milan-7th-november/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 21:25:29 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Actionscript.it]]></category>
		<category><![CDATA[FlexCamp]]></category>
		<category><![CDATA[meeting]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/?p=82</guid>
		<description><![CDATA[Here&#8217;s the next great meeting from Actionscript.it community! [flash http://www.flashfuck.it/wp-content/uploads/2008/09/flexcamp.swf?linkUrl=http://www.actionscript.it&#38;sendData=http://www.actionscript.it/flexcampwdg/sendMail.php w=260 h=310] Join the party, we&#8217;re going to share together our nerdy love for Adobe Flex! Just compile the widget and submit that form]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the next great meeting from Actionscript.it community!</p>
<p style="text-align: center;">[flash http://www.flashfuck.it/wp-content/uploads/2008/09/flexcamp.swf?linkUrl=http://www.actionscript.it&amp;sendData=http://www.actionscript.it/flexcampwdg/sendMail.php w=260 h=310]</p>
<p style="text-align: center;">
<p>Join the party, we&#8217;re going to share together our nerdy love for Adobe Flex!<br />
Just compile the widget and submit that form <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2008/09/10/flexcamp-2008-milan-7th-november/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freesbie onAir!</title>
		<link>http://www.flashfuck.it/2008/05/16/freesbie-onair/</link>
		<comments>http://www.flashfuck.it/2008/05/16/freesbie-onair/#comments</comments>
		<pubDate>Fri, 16 May 2008 08:19:14 +0000</pubDate>
		<dc:creator>pigiuz</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Anything else]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[360 Flex]]></category>

		<guid isPermaLink="false">http://www.flashfuck.it/2008/05/16/freesbie-onair/</guid>
		<description><![CDATA[Another 30onAir video from 360Flex Europe in Milan, i couldn&#8217;t not to post it here! uhuh! [flash http://www.youtube.com/v/na7c4NUaWXE&#38;hl=en&#38;color1=0x5d1719&#38;color2=0xcd311b w=425 h=373]]]></description>
			<content:encoded><![CDATA[<p>Another 30onAir video from 360Flex Europe in Milan,</p>
<p>i couldn&#8217;t not to post it here! uhuh! <img src='http://www.flashfuck.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>[flash http://www.youtube.com/v/na7c4NUaWXE&amp;hl=en&amp;color1=0x5d1719&amp;color2=0xcd311b w=425 h=373]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashfuck.it/2008/05/16/freesbie-onair/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

