<?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>Thaylin... that&#039;s me!</title>
	<atom:link href="http://www.thaylin.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thaylin.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 07 Dec 2011 23:37:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Seeing the android API source code</title>
		<link>http://www.thaylin.com/blog/2011/12/07/seeing-the-android-api-source-code/</link>
		<comments>http://www.thaylin.com/blog/2011/12/07/seeing-the-android-api-source-code/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 23:37:48 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=357</guid>
		<description><![CDATA[So looking for all sorts of random things for my current android project I ran across Google Code search.
Holy toledo is it great to be able to see the logic (or seemingly illogical things in some cases) that google has behind their APIs.
Check out some of the android source HERE
Damn handy! Though it makes me [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2011/12/07/seeing-the-android-api-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android timer stuff</title>
		<link>http://www.thaylin.com/blog/2011/12/06/android-timer-stuff/</link>
		<comments>http://www.thaylin.com/blog/2011/12/06/android-timer-stuff/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 13:41:21 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=355</guid>
		<description><![CDATA[Wow, it&#8217;s been a while since I&#8217;ve last posted!
Just wanted to toss up some code for creating a timer in android. One would think you would just utilize the java.utils.Timer class but that creates a new thread and can create issues with your application. Plus it&#8217;s a pain to access stuff from the timer. Android [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2011/12/06/android-timer-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>code reviewing and tons of debugging info!</title>
		<link>http://www.thaylin.com/blog/2011/05/20/code-reviewing-and-tons-of-debugging-info/</link>
		<comments>http://www.thaylin.com/blog/2011/05/20/code-reviewing-and-tons-of-debugging-info/#comments</comments>
		<pubDate>Fri, 20 May 2011 16:34:15 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[debugging]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=352</guid>
		<description><![CDATA[In the last month or so I&#8217;ve been tasked with reviewing a project for performance profiling and just code cleanup in general. It&#8217;s been quite a task as I wasn&#8217;t familiar with a single part of the code so finding tools to aid in this is uber helpful.
With that in mind, here are a few [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2011/05/20/code-reviewing-and-tons-of-debugging-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading multiple images/data to server!</title>
		<link>http://www.thaylin.com/blog/2011/04/08/uploading-multiple-imagesdata-to-server/</link>
		<comments>http://www.thaylin.com/blog/2011/04/08/uploading-multiple-imagesdata-to-server/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 16:35:50 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=347</guid>
		<description><![CDATA[Oh man what a life saver this was! Super easy to implement and works awesomely so far!
Multipart form data in as3 [Class version 1.2]
Implementing is as easy as this:

?View Code ACTIONSCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
jpgEncoder = new JPGEncoder&#40; 100 &#41;			
&#160;
var photo:ByteArray = jpgEncoder.encode&#40; this.getBitmapData&#40; photoBitmap&#41; &#41;;
var thumbnail:ByteArray = jpgEncoder.encode&#40; this.getBitmapData&#40;thumbnailBitmap&#41; &#41;;
&#160;
var ml:MultipartURLLoader = new MultipartURLLoader&#40;&#41;;
ml.dataFormat = URLLoaderDataFormat.TEXT; // or [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2011/04/08/uploading-multiple-imagesdata-to-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setting properties at runtime from xml or css</title>
		<link>http://www.thaylin.com/blog/2011/03/09/setting-properties-at-runtime-from-xml-or-css/</link>
		<comments>http://www.thaylin.com/blog/2011/03/09/setting-properties-at-runtime-from-xml-or-css/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 18:46:08 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=340</guid>
		<description><![CDATA[Mainly this is just a post to remind myself in later times about this code snippet but basically this will work with any class with accessible variables.
Take an xml node such as

?View Code XML1
&#60;class id=&#34;myClass&#34; color=&#34;#FF0000&#34; isActive=&#34;false&#34;/&#62;

You can use this snippet to parse through those attributes to set all of your variables for you assuming [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2011/03/09/setting-properties-at-runtime-from-xml-or-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashbuilder 4 issues with generating components in Flash CS5</title>
		<link>http://www.thaylin.com/blog/2011/01/19/flashbuilder-4-issues-with-generating-components-in-flash-cs5/</link>
		<comments>http://www.thaylin.com/blog/2011/01/19/flashbuilder-4-issues-with-generating-components-in-flash-cs5/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 22:17:16 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=336</guid>
		<description><![CDATA[I ran into an issue today that was bugging the crap out of me. I kept trying to make graphical components within flash that I could use in a flex project I&#8217;m currently working on but whenever I would run the project after embedding them in my library swc I would get this error:
Illegal override [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2011/01/19/flashbuilder-4-issues-with-generating-components-in-flash-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice conditional coding tip</title>
		<link>http://www.thaylin.com/blog/2010/05/13/nice-tip/</link>
		<comments>http://www.thaylin.com/blog/2010/05/13/nice-tip/#comments</comments>
		<pubDate>Thu, 13 May 2010 15:16:01 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=321</guid>
		<description><![CDATA[Tyler from FCNY turned me on to a nice tip on conditional coding.
Let&#8217;s take for example we have a variable that we need to associate with another variable. For instance, we pull in some flashvars and need to check if these exist and if not give them a default value. Let&#8217;s look at a couple [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2010/05/13/nice-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy code snippets plugin for Flex/Eclipse</title>
		<link>http://www.thaylin.com/blog/2010/04/07/handy-code-snippets-plugin-for-flexeclipse/</link>
		<comments>http://www.thaylin.com/blog/2010/04/07/handy-code-snippets-plugin-for-flexeclipse/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 16:36:03 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thaylin.com/blog/?p=314</guid>
		<description><![CDATA[For all of those unaware of snippets, these are code shortcuts to increase coding productivity and are damn handy. For an extended idea of what you can do with these visit this blog post I ran across:
On a side note, the poster doesn&#8217;t tell you how to install CFEclipse so I&#8217;ll just touch on that [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2010/04/07/handy-code-snippets-plugin-for-flexeclipse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic class property retrieval</title>
		<link>http://www.thaylin.com/blog/2009/12/11/quick-note/</link>
		<comments>http://www.thaylin.com/blog/2009/12/11/quick-note/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:42:27 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://thaylin.info/blog/?p=302</guid>
		<description><![CDATA[I&#8217;m taking a break from the pattern tutorials for the moment to write the as3 facebook connect integration library I&#8217;ve been meaning to write. With that said, here&#8217;s a little method I didn&#8217;t realize was around to pull properties from classes. Normally the for..in method you can pull properties available within an object, but this [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2009/12/11/quick-note/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singleton Pattern introduction</title>
		<link>http://www.thaylin.com/blog/2009/11/11/singleton-pattern-introduction/</link>
		<comments>http://www.thaylin.com/blog/2009/11/11/singleton-pattern-introduction/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:32:23 +0000</pubDate>
		<dc:creator>Thaylin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Singleton Pattern]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://thaylin.info/blog/?p=293</guid>
		<description><![CDATA[Staying on the course of my tutorial kick I&#8217;m now moving to the Singleton pattern. Understanding this pattern will help later in understanding patterns such as the Factory Pattern which I will be discussing later.
Another pattern, or rather anti-pattern according to some, is called the Singleton Pattern.
The Singleton pattern, as the name implies, allows for [...]]]></description>
		<wfw:commentRss>http://www.thaylin.com/blog/2009/11/11/singleton-pattern-introduction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

