<?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>Thrill-Project</title>
	<atom:link href="http://www.thrill-project.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.thrill-project.com/blog</link>
	<description>A space devoted to coding.</description>
	<lastBuildDate>Tue, 24 Aug 2010 11:11:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>YouTube Video ID from YouTube link, AS3</title>
		<link>http://www.thrill-project.com/blog/?p=139</link>
		<comments>http://www.thrill-project.com/blog/?p=139#comments</comments>
		<pubDate>Thu, 29 Jul 2010 17:31:41 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ActionScript3]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=139</guid>
		<description><![CDATA[This function returns the YouTube ID if the input was any form of valid YouTube link or the ID itself.
private function extractID(input:String):String
{
  if (input.length == 11) return input;
  var reg:RegExp = /http:\/\/(?:youtu\.be\/&#124;(?:[a-z]{2,3}\.)?youtube\.com\/watch(?:\?&#124;#\!)v=)([\w_-]{11}).*/gi;
  var res:Object = reg.exec(input);
  if (res != null) return res[1];
  return "";
}
]]></description>
			<content:encoded><![CDATA[<p>This function returns the YouTube ID if the input was any form of valid YouTube link or the ID itself.</p>
<pre>private function extractID(input:String):String
{
  if (input.length == 11) return input;
  var reg:RegExp = /http:\/\/(?:youtu\.be\/|(?:[a-z]{2,3}\.)?youtube\.com\/watch(?:\?|#\!)v=)([\w_-]{11}).*/gi;
  var res:Object = reg.exec(input);
  if (res != null) return res[1];
  return "";
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=139</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Science Fiction Movies I like</title>
		<link>http://www.thrill-project.com/blog/?p=134</link>
		<comments>http://www.thrill-project.com/blog/?p=134#comments</comments>
		<pubDate>Sun, 27 Jun 2010 13:05:44 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=134</guid>
		<description><![CDATA[The Man From Earth (2007)
Flatland the film (2007) &#8211; this one is quite nerdy 
The Road (2009)
The Time Traveler&#8217;s Wife (2009)
The Book Of Eli (2009)
District 9 (2009)
]]></description>
			<content:encoded><![CDATA[<p>The Man From Earth (2007)<br />
Flatland the film (2007) &#8211; this one is quite nerdy <img src='http://www.thrill-project.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
The Road (2009)<br />
The Time Traveler&#8217;s Wife (2009)<br />
The Book Of Eli (2009)<br />
District 9 (2009)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=134</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Frameworks</title>
		<link>http://www.thrill-project.com/blog/?p=129</link>
		<comments>http://www.thrill-project.com/blog/?p=129#comments</comments>
		<pubDate>Fri, 25 Jun 2010 20:25:10 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ActionScript3]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=129</guid>
		<description><![CDATA[AsUnit
Robotlegs
BulkLoader
]]></description>
			<content:encoded><![CDATA[<p><a href="http://asunit.org/" target="_blank">AsUnit</a></p>
<p><a href="http://www.robotlegs.org/" target="_blank">Robotlegs</a></p>
<p><a href="http://code.google.com/p/bulk-loader/" target="_blank">BulkLoader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cirondo</title>
		<link>http://www.thrill-project.com/blog/?p=114</link>
		<comments>http://www.thrill-project.com/blog/?p=114#comments</comments>
		<pubDate>Tue, 06 Apr 2010 08:04:43 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ActionScript3]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Game]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=114</guid>
		<description><![CDATA[My friend Harry showed me an interesting board game recently. It&#8217;s called cirondo. As far as I know it is no longer produced but it can be ordered here: cirondo.de
Here&#8217;s my (low graphics) Flash version: Cirondo (Flash, AS3)
The game should be quite self explanatory the way I made it. Possible moves are highlighted as soon [...]]]></description>
			<content:encoded><![CDATA[<p>My friend Harry showed me an interesting board game recently. It&#8217;s called cirondo. As far as I know it is no longer produced but it can be ordered here: <a title="Cirondo" href="http://www.cirondo.de/" target="_blank">cirondo.de</a></p>
<p>Here&#8217;s my (low graphics) Flash version: <a title="Cirondo" href="http://www.thrill-project.com/blog/wp-content/uploads/2010/04/cirondo.swf" target="_blank">Cirondo (Flash, AS3)</a></p>
<p>The game should be quite self explanatory the way I made it. Possible moves are highlighted as soon as a stellar is selected. A sun comes into game when a moon reaches the center circle.</p>
<p>I don&#8217;t have permissions from the authors of the game &#8230; let&#8217;s see what happens <img src='http://www.thrill-project.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If anyone is interested in the sourcecode, please contact me. I&#8217;m also planning to do an iPhone/iPad version of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=114</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Upload Problems</title>
		<link>http://www.thrill-project.com/blog/?p=104</link>
		<comments>http://www.thrill-project.com/blog/?p=104#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:04:12 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ActionScript3]]></category>
		<category><![CDATA[Flash Plugin]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=104</guid>
		<description><![CDATA[I had a conversation with some guys at the Adobe Bugbase about problems that were reported concerning the upload features of Flash on any browser.
It occurred  to me that Antivirus Softwares were  interrupting the process of uploading files to a server over the Adobe Flash Plugin by taking the whole file and then buffering it [...]]]></description>
			<content:encoded><![CDATA[<p>I had a conversation with some guys at the Adobe Bugbase about problems that were reported concerning the upload features of Flash on any browser.</p>
<p>It occurred  to me that Antivirus Softwares were  interrupting the process of uploading files to a server over the Adobe Flash Plugin by taking the whole file and then buffering it to the server. This is why the upload progress reaches 100% very fast and in addition to that it decreases the upload speed since the whole file is going through virus checks before it&#8217;s streamed to the server.</p>
<p>For now I agree with the fact  that those Antivirus Programs interfers with the upload functions of the Adobe Flash Plugin in any Browser:</p>
<p>(Tested with Flash 10, all versions but I&#8217;m assuming that this happens to all versions of the Adobe Flash Player)</p>
<p><strong>Windows:</strong><br />
AVG Free 9.0<br />
McAfee 4.001494</p>
<p>I try to keep updating the list, but if  anybody out there knows of more,  let us all know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=104</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Icon resolutions</title>
		<link>http://www.thrill-project.com/blog/?p=92</link>
		<comments>http://www.thrill-project.com/blog/?p=92#comments</comments>
		<pubDate>Sat, 12 Dec 2009 23:38:16 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=92</guid>
		<description><![CDATA[To have it somewhere posted and to share with you, I researched the resolutions a developer should use for icons and images on the iPhone. If I come across other formats, I&#8217;ll update the list.
official resource
iPhone Dev Center: iPhone Human Interface Guidelines &#8211; Creating Custom Icons and Images
small icon

29 x 29
big icon

57 x 57
bar icon

20 [...]]]></description>
			<content:encoded><![CDATA[<p>To have it somewhere posted and to share with you, I researched the resolutions a developer should use for icons and images on the iPhone. If I come across other formats, I&#8217;ll update the list.</p>
<p><strong>official resource</strong><br />
<a href="http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html" target="_blank">iPhone Dev Center: iPhone Human Interface Guidelines &#8211; Creating Custom Icons and Images</a></p>
<p><strong>small icon</strong><br />
<img class="size-full wp-image-101 alignnone" title="thrill_Icon_29" src="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/thrill_Icon_29.png" alt="thrill_Icon_29" width="29" height="29" /><br />
29 x 29</p>
<p><strong>big icon</strong><br />
<img class="alignnone size-full wp-image-102" title="thrill_Icon_57" src="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/thrill_Icon_57.png" alt="thrill_Icon_57" width="57" height="57" /><br />
57 x 57</p>
<p><strong>bar icon</strong><br />
<img class="alignnone size-full wp-image-100" title="thrill_Icon_20" src="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/thrill_Icon_20.png" alt="thrill_Icon_20" width="20" height="20" /><br />
20 x 20</p>
<p><strong>launch image</strong><br />
320 x 480</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=92</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing for the iPhone</title>
		<link>http://www.thrill-project.com/blog/?p=73</link>
		<comments>http://www.thrill-project.com/blog/?p=73#comments</comments>
		<pubDate>Thu, 10 Dec 2009 22:36:03 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Flash CS5]]></category>
		<category><![CDATA[MonoTouch]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=73</guid>
		<description><![CDATA[Since Flash CS5 is not yet available, my boss wants me to develop for the iPhone natively. But, watch GoKartGo! and Physics in Flash CS5 &#8211; it&#8217;s fun and interisting. FlashCS5 has amazing new features like gravity and bone support &#8211; fully framebased AS3 API. Compiling to IPA (iPhone Application) directly from the IDE &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Since <a title="Adobe Flash CS5" href="http://cs5.org/" target="_blank">Flash CS5</a> is not yet available, my boss wants me to develop for the iPhone natively. But, watch <a href="http://www.youtube.com/watch?v=x9y-KIu69dc&amp;feature=player_embedded" target="_blank">GoKartGo! and Physics in Flash CS5</a> &#8211; it&#8217;s fun and interisting. FlashCS5 has amazing new features like <em>gravity </em>and <em>bone support</em> &#8211; fully framebased AS3 API. Compiling to IPA (iPhone Application) <strong>directly from the IDE</strong> &#8211; that&#8217;s a big boost for the iPhone development scene!</p>
<p>After crawling the internet for information about the available APIs I registered on the <strong>Apple Developer Program</strong>, downloaded all documents available and watched all the videos from Apple.</p>
<p>I also watched all the videos on Objective-C &#8211; the language THEY use to develop on Mac and all iDevices. Meanwhile my boss ordered a <strong>Mac mini</strong> and an <strong>iPod touch</strong> for me. After doing some code reading and test programs in <strong>Objective-C</strong> I decided to kick this Objective-C crap out of any plans. This is original stone age programing &#8211; no development as to convenience in over 20 years.</p>
<p><strong>So I looked for alternatives and found <a title="MonoTouch" href="http://monotouch.net/" target="_blank">MonoTouch</a>.</strong></p>
<p>Since C# is really meaningful in its design and quite similar to ActionScript I finally bought a license for MonoTouch.</p>
<p>I&#8217;m waiting for my Mac Mini and iPod Touch now. Stay tuned for updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pentago, Flash remake</title>
		<link>http://www.thrill-project.com/blog/?p=46</link>
		<comments>http://www.thrill-project.com/blog/?p=46#comments</comments>
		<pubDate>Thu, 10 Dec 2009 20:51:01 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Game]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=46</guid>
		<description><![CDATA[My friend Herodin bought an interesting game recently. It&#8217;s called Pentago. I thought I make a Flash version of it.
The goal of the game is to get 5 balls in a row. After dropping a ball the player is forced to rotate the plate the ball was dropped onto by 90 degrees. The direction of [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_45" class="wp-caption alignleft" style="width: 232px"><a href="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/Pentago.swf" target="_blank"><img class="size-full wp-image-45 " title="Pentago Flash AS3" src="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/pentago_screenshot.jpg" alt="Pentago Flash AS3" width="222" height="142" /></a><p class="wp-caption-text">Pentago Flash AS3</p></div>
<p>My friend <a href="http://www.myspace.com/herodin" target="_blank">Herodin </a>bought an interesting game recently. It&#8217;s called <strong>Pentago</strong>. I thought I make a <strong>Flash version</strong> of it.</p>
<p><strong>The goal of the game</strong> is to get 5 balls in a row. After dropping a ball the player is forced to rotate the plate the ball was dropped onto by 90 degrees. The direction of rotation can be chosen. It&#8217;s a two player game, no A.I. or multiplayer features for now. The only clever stuff that IS done is the check if one or both players won to end the game. This is achieved by breaking down the whole board information to a string (which can be used for replay and network play) that is then handed to an algorithm that identifies if the game is over. I think I&#8217;m going to work on that more (start screen, menu, replays) after CS5 has arrived and put it on the app store for iPhone/iPod touch as free download. It can be easily extended for network play.</p>
<p><strong>Take this as a first version:</strong><br />
<a href="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/Pentago.swf" target="_blank">Pentago Flash 0.1 (swf)</a></p>
<p><strong>Sourcecode:</strong><br />
<a href="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/Pentago.zip">Pentago AS3 classes (CS4)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Space Invader Fractal, port</title>
		<link>http://www.thrill-project.com/blog/?p=33</link>
		<comments>http://www.thrill-project.com/blog/?p=33#comments</comments>
		<pubDate>Thu, 10 Dec 2009 20:15:50 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[ActionScript1]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[procedural art]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=33</guid>
		<description><![CDATA[After searching the internet for procedural art, I stumbled over the invader fractal generator written in ActionScript 1 by J.Tarbell. Since I did AS1 a lot and still like its careless nature, I decided to port it to AS3.
The original author released the sourcecode, so I share it too:
InvaderFractal.zip, AS3 classes, FLA (CS3)
You&#8217;re welcome to [...]]]></description>
			<content:encoded><![CDATA[<p>After searching the internet for procedural art, I stumbled over the invader fractal generator written in ActionScript 1 by <a href="http://www.complexification.net/gallery/machines/invaderfractal/" target="_blank">J.Tarbell</a>. Since I did AS1 a lot and still like its careless nature, I decided to port it to AS3.</p>
<div id="attachment_69" class="wp-caption aligncenter" style="width: 330px"><a href="http://www.thrill-project.com/archiv/flash/invaders/" target="_blank"><img class="size-full wp-image-69 " title="InvaderFractal AS3 by filip" src="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/invader_screenshot.jpg" alt="invader_screenshot" width="320" height="150" /></a><p class="wp-caption-text">InvaderFractal AS3 by filip</p></div>
<p style="text-align: left;"><strong></strong>The original author released the <strong>sourcecode</strong>, so I share it too:<a href="http://www.thrill-project.com/blog/wp-content/uploads/2009/12/fractal.zip"><br />
InvaderFractal.zip, AS3 classes, FLA (CS3)</a></p>
<p>You&#8217;re welcome to learn from the code or port it to any other language.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link to my Flash Archive</title>
		<link>http://www.thrill-project.com/blog/?p=20</link>
		<comments>http://www.thrill-project.com/blog/?p=20#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:22:29 +0000</pubDate>
		<dc:creator>filip</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[ActionScript1]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[Flash CS4]]></category>

		<guid isPermaLink="false">http://www.thrill-project.com/blog/?p=20</guid>
		<description><![CDATA[In the past I did many effects and little apps in Flash, starting from Flash 4 over Flash 6 to Flash 9 and 10. I never got into ActionScript 2, Flash7 or 8 &#8211; it just did not feel good.
Here&#8217;s the link to a little archive: trickundtronic.at
Have fun exploring and don&#8217;t hesitate asking questions.
]]></description>
			<content:encoded><![CDATA[<p>In the past I did many effects and little apps in Flash, starting from Flash 4 over Flash 6 to Flash 9 and 10. I never got into ActionScript 2, Flash7 or 8 &#8211; it just did not feel good.</p>
<p>Here&#8217;s the link to a little <strong>archive</strong>: <a href="http://www.trickundtronic.at/tnt.php?page=experiments.php&amp;language=eng" target="_blank">trickundtronic.at</a></p>
<p>Have fun exploring and don&#8217;t hesitate asking questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thrill-project.com/blog/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
