<?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>Carlo Alducente&#039;s Blog &#187; News</title>
	<atom:link href="http://labs.alducente.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.alducente.com</link>
	<description></description>
	<lastBuildDate>Thu, 12 Nov 2009 01:04:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Globequest</title>
		<link>http://labs.alducente.com/2009/10/12/globequest/</link>
		<comments>http://labs.alducente.com/2009/10/12/globequest/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 21:24:50 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[A World Of Wonders]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[Globequest]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=110</guid>
		<description><![CDATA[A World of Wonders has just launched Globequest, a game that lets you &#8220;travel&#8221; around the world to learn about different cultures and places. Learn more about the television series on their website. While developing the game was loads of fun, there were a couple challenges that we had to overcome in order to get [...]]]></description>
			<content:encoded><![CDATA[<p>A World of Wonders has just launched <strong><a href="http://www.aworldofwonders.tv/games/globequest.php" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/games/globequest.php?referer=');">Globequest</a></strong>, a game that lets you &#8220;travel&#8221; around the world to learn about different cultures and places. Learn more about the television series on <a href="http://www.aworldofwonders.tv/" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/?referer=');">their website</a>.</p>
<p style="text-align: center;"><a href="http://www.aworldofwonders.tv/games/globequest.php" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/games/globequest.php?referer=');"><img class="aligncenter size-full wp-image-115" title="Globequest Title Screen" src="http://labs.alducente.com/wp-content/uploads/2009/10/Untitled-11.jpg" alt="Globequest Title Screen" width="400" height="300" /></a></p>
<p>While developing the game was loads of fun, there were a couple challenges that we had to overcome in order to get this game off the ground&#8230;(OH SNAP! See what I did there? off the ground? traveling? airplane? no?&#8230;okay)</p>
<p>After being presented with the idea, the first thing that came to mind was how to manage the HUGE map the player had to travel around in. I&#8217;m talkin&#8217; loading and moving a 6400&#215;1600 bitmap without sacrificing image quality or performance.</p>
<p>Many tests later, we decided that the best way to solve the filesize issue was to seperate the map into 800&#215;600 tiles, keeping low resolution tiles embedded in the swf file so the player can start the game as soon as possible. While the player travels, the high resolution tiles are being loaded in the background, replacing the low res images one by one as they finish loading. Not only does this reduce the total filesize of the main swf, but it also lets the player continue without having to wait for the giant map to load.</p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://www.aworldofwonders.tv/games/globequest.php" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/games/globequest.php?referer=');"><img class="aligncenter size-full wp-image-118" title="Globequest Big Map" src="http://labs.alducente.com/wp-content/uploads/2009/10/Untitled-2.jpg" alt="Globequest Big Map" width="400" height="300" /></a></p>
<p>As for performance, most of us know that moving something as big as 6400&#215;1600 around on screen can be choppy. To improve the animation, I used the display object&#8217;s scrollRect property. For those who aren&#8217;t familiar with this handy feature, it basically acts like a mask, displaying only a section of a display object on screen but with way better performance than a mask. <a href=" http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/DisplayObject.html#scrollRect" target="_blank">Read more about it in the docs here</a>.</p>
<p><strong>So that takes care of the map, but what about the mini games?</strong></p>
<p style="text-align: center;"><a href="http://www.aworldofwonders.tv/games/globequest.php" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/games/globequest.php?referer=');"><img class="aligncenter size-full wp-image-121" title="Globequest Puzzle" src="http://labs.alducente.com/wp-content/uploads/2009/10/Untitled-3.jpg" alt="Globequest Puzzle" width="400" height="300" /></a></p>
<p>In order to keep the games organized, each one is a separate swf file that gets loaded. This let&#8217;s me encapsulate each mini game, keeping its functionality hidden from the rest of the game. A manager had to be created in order to keep track of all the different games and is in charge of displaying a game when needed, communicating the user&#8217;s performance to the main swf, and cleaning up after a game so the game engine can be reused.</p>
<p><strong>Videos&#8230;so many videos&#8230;</strong></p>
<p style="text-align: center;"><strong><a href="http://www.aworldofwonders.tv/games/globequest.php" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/games/globequest.php?referer=');"><img class="aligncenter size-full wp-image-124" title="Globequest Video" src="http://labs.alducente.com/wp-content/uploads/2009/10/Untitled-4.jpg" alt="Globequest Video" width="400" height="300" /></a><br />
</strong></p>
<p>For the videos, we wanted to do something simple, using only basic controls to toggle between play and pause states plus a couple events that we can listen for. The FLVPlayback component, while convenient, has too many bells and whistles for our purpose and using the Video class didn&#8217;t give us the amount of control that we wanted. So I decided to go with the built-in VideoPlayer class, which is also a subclass of the Video object but a lot simpler than the FLVPlayback component.</p>
<p><strong>#$%@#!!!</strong></p>
<p>While this wasn&#8217;t an issue, it was something that was completely new to me and thought I&#8217;d share the experience. Since this is a children&#8217;s game after all, we needed to make sure that text inputs filter out &#8220;no-no&#8221; words. Luckily, there&#8217;s only one text input in the entire game (*high-five!). Instead of clearing the field when a bad word is detected, I chose to just disable the &#8220;go&#8221; button. This makes it less frustrating for children with names like &#8220;Dickson&#8221;.</p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://www.aworldofwonders.tv/games/globequest.php" target="_blank" onclick="urchinTracker('/outgoing/www.aworldofwonders.tv/games/globequest.php?referer=');"><img class="aligncenter size-full wp-image-125" title="Globequest Player: Dickson" src="http://labs.alducente.com/wp-content/uploads/2009/10/Untitled-5.jpg" alt="Globequest Player: Dickson" width="400" height="102" /></a></p>
<p>Now, how am I suppose to detect inappropriate words? Should I just type out every word I could think of?&#8230;.Interwebz to the rescue!!! <a href="http://www.noswearing.com/list.php" target="_blank" onclick="urchinTracker('/outgoing/www.noswearing.com/list.php?referer=');">Check out the list</a>. Now the only thing I needed to do was copy the entire list and write a quick script to format it the way I want, instant digital earmuffs.</p>
<p>So in the end, I would have to say that this project was probably one of the biggest I had the opportunity to code on my own (yes, I&#8217;m a big boy now). I had a chance to take my time, lay out an architecture, and execute smoothly and with ease. While there were some speed bumps along the way, mostly flash &#8220;gotchas&#8221;, there was definitely a lot to learn from this project.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2009/10/12/globequest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zinc Roe Games</title>
		<link>http://labs.alducente.com/2009/09/09/zinc-roe-games/</link>
		<comments>http://labs.alducente.com/2009/09/09/zinc-roe-games/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 14:19:59 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[iPhone Apps]]></category>
		<category><![CDATA[Arctic Shuffle]]></category>
		<category><![CDATA[Arctic Shuffle 2]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[Zinc Roe]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=83</guid>
		<description><![CDATA[Zinc Roe has been busy lately developing the latest and greatest games for the iPhone &#38; iPod Touch. One of them being the super addictive Arctic Shuffle 2 (iTunes link) which is similar to the first Arctic Shuffle but with new levels, better performance, and more features. So you&#8217;re a master penguin-flinger and finished all [...]]]></description>
			<content:encoded><![CDATA[<p>Zinc Roe has been busy lately developing the latest and greatest games for the iPhone &amp; iPod Touch. One of them being the super addictive Arctic Shuffle 2 (<a title="Arctic Shuffle 2" href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=324898962&amp;mt=8" target="_blank" onclick="urchinTracker('/outgoing/itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=324898962_amp_mt=8&amp;referer=');">iTunes link</a>) which is similar to the first Arctic Shuffle but with new levels, better performance, and more features.</p>
<p><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=324898962&amp;mt=8" onclick="urchinTracker('/outgoing/itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=324898962_amp_mt=8&amp;referer=');"><img class="alignnone size-full wp-image-84" title="IMG_0209" src="http://labs.alducente.com/wp-content/uploads/2009/09/IMG_0209.PNG" alt="IMG_0209" width="320" height="480" /></a></p>
<p>So you&#8217;re a master penguin-flinger and finished all the levels? Not so fast! There&#8217;s more levels to conquer ranging from beginner levels all the way up to expert. You can also grab the lite version (<a title="Arctic Shuffle 2 Lite" href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=325424082&amp;mt=8" target="_blank" onclick="urchinTracker('/outgoing/itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=325424082_amp_mt=8&amp;referer=');">iTunes link</a>) to test the frozen waters and make sure your fingers can handle the pure penguin awesomeness.</p>
<p>Zinc Roe also launched a brand new game for the iPhone/iPod touch featuring the Zimmer Twins!</p>
<p><strong>Stack Master</strong> (<a title="Stack Master Canada" href="http://itunes.com/apps/StackMasterCanada" target="_blank" onclick="urchinTracker('/outgoing/itunes.com/apps/StackMasterCanada?referer=');">iTunes link</a> for Canada, <a title="Stack Master" href="http://itunes.com/apps/StackMaster" target="_blank" onclick="urchinTracker('/outgoing/itunes.com/apps/StackMaster?referer=');">iTunes link</a> everywhere else) gives you control of the magical tray and your task is to stack and balance random items as high as you can. Simple right? It&#8217;s harder than it sounds! You gotta watch out for energy-draining swirls and 13&#8242;s sneak attacks! Go check it out for yourself!</p>
<p><a href="http://itunes.com/apps/StackMasterCanada" onclick="urchinTracker('/outgoing/itunes.com/apps/StackMasterCanada?referer=');"><img class="alignnone size-full wp-image-92" title="Stack Master" src="http://labs.alducente.com/wp-content/uploads/2009/09/sm_2.jpg" alt="Stack Master" width="480" height="320" /></a></p>
<p>You&#8217;ve flung some penguins and built the tallest tower, but still want more? <a href="http://iphone.zincroe.com/" target="_blank" onclick="urchinTracker('/outgoing/iphone.zincroe.com/?referer=');">Check out some other games</a> in the app store from Zinc Roe!</p>
<p>over and out.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2009/09/09/zinc-roe-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arctic Shuffle &#8211; Now Available On iPhone!</title>
		<link>http://labs.alducente.com/2009/03/09/arctic-shuffle-now-available-on-iphone/</link>
		<comments>http://labs.alducente.com/2009/03/09/arctic-shuffle-now-available-on-iphone/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 18:14:57 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=65</guid>
		<description><![CDATA[Our studio just released our first iPhone title and we&#8217;d love to hear what you think. Arctic Shuffle is a fun little arcade game. Start with ice curling, then mix in some mini-golf, exploding penguins and cloning devices and you have an idea of what the game play is all about. To play, you just [...]]]></description>
			<content:encoded><![CDATA[<p>Our studio just released our first iPhone title and we&#8217;d love to hear what you think.</p>
<p>Arctic Shuffle is a fun little arcade game. Start with ice curling, then mix in some mini-golf, exploding penguins and cloning devices and you have an idea of what the game play is all about.</p>
<p>To play, you just aim and fire your penguin pal trying to land him on a target. Look out for obstacles that block, bounce, drown and destroy your precious penguin. The initial release has 52 levels and look out for new levels in future updates. Arctic Shuffle flinging good fun!</p>
<p>You&#8217;ll find screenshots on our site&#8230;<br />
<a href="http://www.zincroe.com/portfolio/show/arctic_shuffle" target="_blank" onclick="urchinTracker('/outgoing/www.zincroe.com/portfolio/show/arctic_shuffle?referer=');">http://www.zincroe.com/portfolio/show/arctic_shuffle</a></p>
<p>And video of the game play on vimeo&#8230;<br />
<a href="http://vimeo.com/3443065" target="_blank" onclick="urchinTracker('/outgoing/vimeo.com/3443065?referer=');">http://vimeo.com/3443065</a></p>
<p>Arctic Shuffle is available for $2.99 on the App Store&#8230;<br />
<span><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%20306757969&amp;mt=8" target="_blank" onclick="urchinTracker('/outgoing/itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=_20306757969_amp_mt=8&amp;referer=');">http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%20306757969&amp;mt=8</a><br />
</span></p>
<p>We&#8217;re a small interactive studio based in Toronto. We have been building casual games for a while, but this is our first effort for the iPhone so we&#8217;re keen to gather as much feedback as we can.</p>
<p> </p>
<div id="attachment_66" class="wp-caption alignnone" style="width: 310px"><a href="http://labs.alducente.com/wp-content/uploads/2009/03/292.jpg"><img class="size-medium wp-image-66" title="Arctic Shuffle" src="http://labs.alducente.com/wp-content/uploads/2009/03/292-300x223.jpg" alt="Arctic Shuffle screenshots for the iPhone/iPod Touch" width="300" height="223" /></a><p class="wp-caption-text">Arctic Shuffle screenshots for the iPhone/iPod Touch</p></div>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2009/03/09/arctic-shuffle-now-available-on-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Themes</title>
		<link>http://labs.alducente.com/2008/12/02/wordpress-themes/</link>
		<comments>http://labs.alducente.com/2008/12/02/wordpress-themes/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 14:17:50 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=58</guid>
		<description><![CDATA[Had to revert back to the &#8220;WordPress Classic&#8221; theme so that the code I post doesn&#8217;t get cut off by a fixed width. It&#8217;s not as easy on the eyes but it will have to do until I find or make a nice design that doesn&#8217;t cut off any long code that I post. If [...]]]></description>
			<content:encoded><![CDATA[<p>Had to revert back to the &#8220;WordPress Classic&#8221; theme so that the code I post doesn&#8217;t get cut off by a fixed width. It&#8217;s not as easy on the eyes but it will have to do until I find or make a nice design that doesn&#8217;t cut off any long code that I post. </p>
<p>If anyone has a good one, please send them through. Thanks!</p>
<p>-Carlo</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/12/02/wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vic Bath site, launched</title>
		<link>http://labs.alducente.com/2008/09/10/vic-bath-site-launched/</link>
		<comments>http://labs.alducente.com/2008/09/10/vic-bath-site-launched/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 17:36:42 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=34</guid>
		<description><![CDATA[I don&#8217;t usually do a lot of freelance but when the right type of project comes strolling my way, I simply can&#8217;t resist. This time around it was a small portfolio website for art director, Vic Bath. The thing that attracted me to this project was the content. I love art, in fact, I used [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vicbath.com" target="_blank" onclick="urchinTracker('/outgoing/www.vicbath.com?referer=');"><img class="aligncenter size-medium wp-image-36" title="vic" src="http://labs.alducente.com/wp-content/uploads/2008/09/vic.jpg" alt="" width="300" height="150" /></a></p>
<p>I don&#8217;t usually do a lot of freelance but when the right type of project comes strolling my way, I simply can&#8217;t resist. This time around it was a small portfolio website for art director, Vic Bath. The thing that attracted me to this project was the content. I love art, in fact, I used to be an artist before all the scripting, so when I got the opportunity to take on a project so simple and full of art, I was quite the happy camper.</p>
<p>Check out Vic&#8217;s portfolio: <a href="http://www.vicbath.com" target="_blank" onclick="urchinTracker('/outgoing/www.vicbath.com?referer=');">http://www.vicbath.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/09/10/vic-bath-site-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A whole new world.</title>
		<link>http://labs.alducente.com/2008/08/27/a-whole-new-world/</link>
		<comments>http://labs.alducente.com/2008/08/27/a-whole-new-world/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 23:21:33 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=33</guid>
		<description><![CDATA[It was time to say goodbye to my good friends at PUSH, and say hello to the HUGE team at Capital C, some familiar faces but most were not. I&#8217;ve been at Cap C for almost two weeks now, and I must say, it&#8217;s quite a different environment from what I&#8217;m used to. First of [...]]]></description>
			<content:encoded><![CDATA[<p>It was time to say goodbye to my good friends at PUSH, and say hello to the HUGE team at Capital C, some familiar faces but most were not. I&#8217;ve been at Cap C for almost two weeks now, and I must say, it&#8217;s quite a different environment from what I&#8217;m used to.</p>
<p>First of all, it&#8217;s been almost two weeks and I&#8217;ve still yet to remember the names of at least a quarter of the people working there. But oddly enough, I felt right at home.</p>
<p>Second, the dev process there is unbelievably organized. I won&#8217;t go into the &#8220;deets&#8221; but damn, it&#8217;s crazy. In a good way.</p>
<p>I guess the only thing I can complain about is the lack of sushi places in the area, there is one (and a really good one) but I feel like I can never find a true replacement for Hosu Bistro. *tear.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/08/27/a-whole-new-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PUSH Launches Virgin Mobile Microsite For Blackberry</title>
		<link>http://labs.alducente.com/2008/08/10/push-launches-virgin-mobile-microsite-for-blackberry/</link>
		<comments>http://labs.alducente.com/2008/08/10/push-launches-virgin-mobile-microsite-for-blackberry/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 15:33:46 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=31</guid>
		<description><![CDATA[Check it out: http://www.virginmobile.ca/blackberry]]></description>
			<content:encoded><![CDATA[<p><a onclick="urchinTracker('/outgoing/www.virginmobile.ca/blackberry?referer=');urchinTracker('/outgoing/www.virginmobile.ca/blackberry?referer=http://labs.alducente.com/');" href="http://www.virginmobile.ca/blackberry" target="_blank"><img class="alignnone size-medium wp-image-32" style="vertical-align: middle;" title="Virgin Mobile - Blackberry" src="http://labs.alducente.com/wp-content/uploads/2008/08/untitled-1-300x119.jpg" alt="Virgin Mobile - Blackberry" width="300" height="119" /></a></p>
<p>Check it out: <a onclick="urchinTracker('/outgoing/www.virginmobile.ca/blackberry?referer=');urchinTracker('/outgoing/www.virginmobile.ca/blackberry?referer=http://labs.alducente.com/');" href="http://www.virginmobile.ca/blackberry" target="_blank">http://www.virginmobile.ca/blackberry</a></p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/08/10/push-launches-virgin-mobile-microsite-for-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Resurrection!</title>
		<link>http://labs.alducente.com/2008/06/30/site-resurrection/</link>
		<comments>http://labs.alducente.com/2008/06/30/site-resurrection/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 22:04:53 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=28</guid>
		<description><![CDATA[I&#8217;m notorious for having some sort of &#8220;Coming Soon&#8221; page on my website, whether it be plain black text on a white background, or some sort of cool graphic, there was always some form of coming soon page, even if it&#8217;s been 2 years. So I thought to myself, &#8220;Carlo, what&#8217;s the one major thing [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.alducente.com/wp-content/uploads/2008/06/port.jpg"><img class="alignnone size-medium wp-image-27" title="port" src="http://labs.alducente.com/wp-content/uploads/2008/06/port.jpg" alt="" width="300" height="100" /></a></p>
<p>I&#8217;m notorious for having some sort of &#8220;Coming Soon&#8221; page on my website, whether it be plain black text on a white background, or some sort of cool graphic, there was always some form of coming soon page, even if it&#8217;s been 2 years. So I thought to myself, &#8220;Carlo, what&#8217;s the one major thing you&#8217;ve been procrastinating on?&#8221; and my website is at the top of the list.</p>
<p>So now, let me introduce you to my very first &#8220;flash-less&#8221; actual website! Deciding on whether to go with a flash site or not was pretty big, considering that I&#8217;m mostly a flash developer. But that&#8217;s the reason why I decided to do it in HTML/CSS, I needed to get out of my natural environment and do something different. It&#8217;s been a while since I did a lot of CSS, so this was kind of a challenge for me and I loved every minute of it. This doesn&#8217;t mean that I&#8217;ll be producing only CSS from now on, this was just a little exercise to keep my skills sharp in other areas of web dev.</p>
<p>Check it out: <a href="http://www.alducente.com" onclick="urchinTracker('/outgoing/www.alducente.com?referer=');">http://www.alducente.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/06/30/site-resurrection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PUSH launches Sun Life and Bioré Facebook pages</title>
		<link>http://labs.alducente.com/2008/06/07/push-launches-sun-life-and-biore-facebook-pages/</link>
		<comments>http://labs.alducente.com/2008/06/07/push-launches-sun-life-and-biore-facebook-pages/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 03:36:10 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=24</guid>
		<description><![CDATA[PUSH Interactive has recently launched two awesome facebook pages, the Sun Life Financial &#8216;Got a Goal?&#8217; facebook page and the Bioré Canada facebook page. Both featuring a wicked flash mini game developed in AS3. Biore Canada Check out to see just how many blackheads you can strip away!!! Warning: Can get addictive. Sun Life Financial [...]]]></description>
			<content:encoded><![CDATA[<p><a title="PUSH Interactive" onclick="urchinTracker('/outgoing/www.pushinteractive.ca?referer=');urchinTracker('/outgoing/www.pushinteractive.ca?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.pushinteractive.ca?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.pushinteractive.ca?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24&amp;message=4');urchinTracker('/outgoing/www.pushinteractive.ca?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24');urchinTracker('/outgoing/www.pushinteractive.ca?referer=http://labs.alducente.com/wp-admin/edit.php?post_status=draft');" href="http://www.pushinteractive.ca" target="_blank">PUSH Interactive</a> has recently launched two awesome facebook pages, the <a onclick="urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24&amp;message=4');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/wp-admin/edit.php?post_status=draft');" href="http://www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704" target="_blank"><span>Sun Life Financial &#8216;Got a Goal?&#8217;</span></a><span> facebook page and the </span><span><a onclick="urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24&amp;message=4');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/wp-admin/edit.php?post_status=draft');" href="http://www.facebook.com/home.php#/pages/Biore-Canada/19618620140" target="_blank">Bioré Canada</a> facebook page. Both featuring a wicked  flash mini game  developed in AS3.</span></p>
<p><strong>Biore Canada</strong><br />
Check out to see just how many blackheads you can strip away!!! Warning: Can get addictive.<strong></strong></p>
<p><a onclick="urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24&amp;message=4');urchinTracker('/outgoing/www.facebook.com/home.php_/pages/Biore-Canada/19618620140?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24');" href="http://www.facebook.com/home.php#/pages/Biore-Canada/19618620140" target="_blank"><img class="alignnone size-full wp-image-25" title="Biore Canada" src="http://labs.alducente.com/wp-content/uploads/2008/06/biore.jpg" alt="BLACKHEADZ: How many can you strip away?" width="250" height="100" /></a></p>
<p><strong>Sun Life Financial</strong><br />
Think you got what it takes to be a financial advisor? Test your skills and read more about how you can become an independent financial advisor.<strong><br />
</strong><a onclick="urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24&amp;message=4');urchinTracker('/outgoing/www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704?referer=http://labs.alducente.com/wp-admin/post.php?action=edit&amp;post=24');" href="http://www.facebook.com/pages/Sun-Life-Financial-Got-a-Goal/27163077704"><img class="alignnone size-full wp-image-26" title="Sun Life Financial" src="http://labs.alducente.com/wp-content/uploads/2008/06/sunlife.jpg" alt="Sun Life Financial \'Got a Goal?\'" width="250" height="100" /></a></p>
<p>That&#8217;s it for now!<br />
-Car</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/06/07/push-launches-sun-life-and-biore-facebook-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular expressions bug with accented characters</title>
		<link>http://labs.alducente.com/2008/04/30/regular-expressions-bug-with-accented-characters/</link>
		<comments>http://labs.alducente.com/2008/04/30/regular-expressions-bug-with-accented-characters/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 14:25:13 +0000</pubDate>
		<dc:creator>alducente</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://labs.alducente.com/?p=20</guid>
		<description><![CDATA[Yesterday Grant Skinner wrote about a bug with regular expressions in AS3. It seems that it has issues with accented characters, I thought I would post about it because I know for a fact that this issue will come back to bite me in the future. Read about it here. -Carlo]]></description>
			<content:encoded><![CDATA[<p>Yesterday <a onclick="urchinTracker('/outgoing/www.gskinner.com?referer=');urchinTracker('/outgoing/www.gskinner.com?referer=http://labs.alducente.com/wp-admin/edit.php');" href="http://www.gskinner.com" target="_blank">Grant Skinner</a> wrote about a bug with regular expressions in AS3. It seems that it has issues with accented characters, I thought I would post about it because I know for a fact that this issue will come back to bite me in the future. Read about it <a onclick="urchinTracker('/outgoing/www.gskinner.com/blog/archives/2008/04/regexp_bugs_wit.html?referer=');urchinTracker('/outgoing/www.gskinner.com/blog/archives/2008/04/regexp_bugs_wit.html?referer=http://labs.alducente.com/wp-admin/edit.php');" href="http://www.gskinner.com/blog/archives/2008/04/regexp_bugs_wit.html" target="_blank">here</a>.</p>
<p>-Carlo</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.alducente.com/2008/04/30/regular-expressions-bug-with-accented-characters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
