<?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>TiMeister - Online Project Management Software</title>
	<atom:link href="http://www.timeister.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timeister.com</link>
	<description>Online Project Management  Software</description>
	<lastBuildDate>Sun, 18 Jul 2010 20:28:02 +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>Unable to export SWC oem problem with Adobe Flex</title>
		<link>http://www.timeister.com/2010/07/unable-to-export-swc-oem-problem-with-adobe-flex/</link>
		<comments>http://www.timeister.com/2010/07/unable-to-export-swc-oem-problem-with-adobe-flex/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 20:28:02 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Adobe Flex & AIR]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.timeister.com/?p=717</guid>
		<description><![CDATA[Here is how to fix your problem with building Flex swc projects: 1. Shutdown eclipse 2 .Using a text editor, open the .flexLibProperties file in the root of your project 3. Erase all lines between the tags 4. Save and close the .flexLibProperties file 5. Start eclipse 6. Clean and build your project from under [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2010/07/unable-to-export-swc-oem-problem-with-adobe-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Objective C: Show Alerts on iPhone</title>
		<link>http://www.timeister.com/2010/06/objc-show-alert-iphone/</link>
		<comments>http://www.timeister.com/2010/06/objc-show-alert-iphone/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 19:28:59 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>

		<guid isPermaLink="false">http://www.timeister.com/?p=678</guid>
		<description><![CDATA[Here are several ways of showing alerts inside you iPhone application using UIActionSheet and UIAlertView control Simple Action Sheet // open a dialog with just an OK button UIActionSheet *actionSheet = &#91;&#91;UIActionSheet alloc&#93; initWithTitle:@&#34;Title&#34; delegate:self cancelButtonTitle:nil destructiveButtonTitle:@&#34;OK&#34; otherButtonTitles:nil&#93;; actionSheet.actionSheetStyle = UIActionSheetStyleDefault; &#91;actionSheet showInView:self.view&#93;; &#91;actionSheet release&#93;; OK &#8211; Cancel Action Sheet // open a dialog with [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2010/06/objc-show-alert-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Builder &#8211; &#8220;Content Assist&#8221; did not complete normally.</title>
		<link>http://www.timeister.com/2010/05/flash-builder-content-assist-did-not-complete-normally/</link>
		<comments>http://www.timeister.com/2010/05/flash-builder-content-assist-did-not-complete-normally/#comments</comments>
		<pubDate>Wed, 12 May 2010 19:33:12 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Adobe Flex & AIR]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.timeister.com/?p=614</guid>
		<description><![CDATA[Since FlashBuilder beta there was an annoying bug with content assist: java.lang.NullPointerException in both the eclipse plugin and the standalone version, while trying to use autocomplete on variable names or properties or any other place. The solution for fixing this problem is simple, but unfortunately not final. (Meaning you will have to repeat this procedure [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2010/05/flash-builder-content-assist-did-not-complete-normally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C: Zoom and Pintch UIImageView</title>
		<link>http://www.timeister.com/2009/09/objective-c-zoom-image/</link>
		<comments>http://www.timeister.com/2009/09/objective-c-zoom-image/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:26:18 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[pintch]]></category>
		<category><![CDATA[uiimageview]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=465</guid>
		<description><![CDATA[To get started, we have to 1. Create a new project by selecting &#8220;Windows-based Application&#8221; 2. Create a new UIView using IB and name it ImgView. 3. Create a new file in XCode by selecting File -> New File -> UIViewController sub class and name it &#8220;ImgViewController&#8221;. 4. In IB, select File&#8217;s owner object of [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/09/objective-c-zoom-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C: Cache Image on iPhone</title>
		<link>http://www.timeister.com/2009/09/objective-c-cache-image/</link>
		<comments>http://www.timeister.com/2009/09/objective-c-cache-image/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:09:22 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objective c]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=458</guid>
		<description><![CDATA[If you&#8217;re pulling in web data such as images that doesn&#8217;t change but needs to be viewed multiple times, you&#8217;ll want to cache it. Caching images dramatically improves the performance of scrolling tables and other views. Note: this only works for JPG and PNG images. If you have suggestions or find bugs, let me know. [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/09/objective-c-cache-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Builder 4 Network Monitor</title>
		<link>http://www.timeister.com/2009/09/flash-builder-network-monitor/</link>
		<comments>http://www.timeister.com/2009/09/flash-builder-network-monitor/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:01:47 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex & AIR]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=451</guid>
		<description><![CDATA[Flash Builder 4: Network Monitor and new debugger options from Mihai Corlan on Vimeo.]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/09/flash-builder-network-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C &#8211; HTTP POSTor GET Data</title>
		<link>http://www.timeister.com/2009/08/objective-c-http-post-get-data/</link>
		<comments>http://www.timeister.com/2009/08/objective-c-http-post-get-data/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 08:19:18 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[http get]]></category>
		<category><![CDATA[http post]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/2009/08/14/objective-c-http-postor-get-data/</guid>
		<description><![CDATA[ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications. It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/08/objective-c-http-post-get-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Objective C: Read iPhone Preferences From Application</title>
		<link>http://www.timeister.com/2009/07/read-iphone-preferences/</link>
		<comments>http://www.timeister.com/2009/07/read-iphone-preferences/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 10:19:26 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objective c]]></category>
		<category><![CDATA[read preferences]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=420</guid>
		<description><![CDATA[You can read preferences from your iPhone Application using the NSUserDefaults class from iPhone SDK. Here is how you can read the delay value before the phone is starting to dial a number NSUserDefaults *userDefaults = &#91;NSUserDefaults standardUserDefaults&#93;; delayBeforeDialing = &#91;userDefaults floatForKey:@&#34;delayBeforeDialing&#34;&#93;; The key, “delayBeforeDialing” in this example, needs to match the Key value in [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/07/read-iphone-preferences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C: Show online image on iPhone</title>
		<link>http://www.timeister.com/2009/07/objective-c-online-image-iphone/</link>
		<comments>http://www.timeister.com/2009/07/objective-c-online-image-iphone/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 14:28:51 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[load image]]></category>
		<category><![CDATA[objective c]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=399</guid>
		<description><![CDATA[By default the UIImageView control from the iPhone sdk does not allow us to load images from a specific url. In this case we do a little tryck and use a UIWebView. - &#40;void&#41;loadImage:&#40;NSString*&#41;url frame:&#40;CGRect&#41;frame &#123; NSString* textHTML = @&#34; &#60;!-- body { background-color: transparent; color: white; } --&#62; &#60;img src=&#34;\&#34; alt=&#34;&#34; width=&#34;%0.0f&#34; height=&#34;%0.0f&#34; /&#62; [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/07/objective-c-online-image-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex Array Performance: For vs. ForEach</title>
		<link>http://www.timeister.com/2009/07/flex-array-performance-for-vs-foreach/</link>
		<comments>http://www.timeister.com/2009/07/flex-array-performance-for-vs-foreach/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 19:52:50 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex & AIR]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[array performance]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[for]]></category>
		<category><![CDATA[foreach]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=389</guid>
		<description><![CDATA[We made a little test to see the flex performance on parsing an large array. Here is the experiment: var size:Number = 10000000; var arr:Array = &#91;&#93;; for &#40;var i:int=0; i var time:Number, o:Object; &#160; // for() time = getTimer&#40;&#41;; for &#40;i=0; i=0; i--&#41; &#123; arr&#91;i&#93;; &#125; trace&#40;&#34;for reversed test: &#34;+&#40;getTimer&#40;&#41;-time&#41;+&#34;ms&#34;&#41;; &#160; // for..in time [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/07/flex-array-performance-for-vs-foreach/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
