<?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>Red Hot Bits</title>
	<atom:link href="http://www.redhotbits.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redhotbits.com</link>
	<description>HQ Software &#38; Design</description>
	<lastBuildDate>Sat, 19 Nov 2011 00:14:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Fast Math</title>
		<link>http://www.redhotbits.com/2010/11/fast-math-sqrt-pow-log-fft/</link>
		<comments>http://www.redhotbits.com/2010/11/fast-math-sqrt-pow-log-fft/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 05:08:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone Development]]></category>

		<guid isPermaLink="false">http://www.redhotbits.com/?p=250</guid>
		<description><![CDATA[Fast Math, Sqrt, invSqrt, Pow, Log, FFT ...]]></description>
			<content:encoded><![CDATA[<p>In our new project &#8220;Wind Sensor&#8221; we used a lot of math. To make a more efficient code we used some math tricks. For example: fast sqrt (couple examples), fast inverse sqrt (like John Carmack), fast log, fast pow routines etc.</p>
<p>First, the famous inverse sqrt routine famous by its use in John Carmack&#8217;s game Doom. Credited to Greg Walsh. 32  Bit float magic number &#8211; 0x5f3759df. Works using a trick with float number binary representation:</p>
<pre>float InvSqrt(float x)
{
  union {
    float f;
    int i;
  } tmp;
  tmp.f = x;
  tmp.i = 0x5f3759df - (tmp.i &gt;&gt; 1);
  float y = tmp.f;
  return y * (1.5f - 0.5f * x * y * y);
}</pre>
<p>Its commonly used for vector normalization, since you multiply each vector component with InvSqrt, but can be used for other purposes. More info:<br />
Chris Lomont, <a href="http://www.lomont.org/Math/Papers/2003/InvSqrt.pdf">http://www.lomont.org/Math/Papers/2003/InvSqrt.pdf</a></p>
<p>Another good link for fast sqrt routines:<br />
<a href="http://ilab.usc.edu/wiki/index.php/Fast_Square_Root">http://ilab.usc.edu/wiki/index.php/Fast_Square_Root</a></p>
<p>//TODO fast pow and fast log routines and one more VERY fast approximation of sqrt</p>
<p>&#8230; to be more detailed and continued &#8230; happy coding</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redhotbits.com/2010/11/fast-math-sqrt-pow-log-fft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Appirater</title>
		<link>http://www.redhotbits.com/2010/11/appirater/</link>
		<comments>http://www.redhotbits.com/2010/11/appirater/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 13:56:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone Development]]></category>

		<guid isPermaLink="false">http://www.redhotbits.com/?p=242</guid>
		<description><![CDATA[Small class to encourage your satisfied user’s to rate your app]]></description>
			<content:encoded><![CDATA[<p><a href="http://arashpayan.com/">Arash Payan</a>(the author of <a href="http://itunes.apple.com/tr/app/jabeh/id301377083?mt=8">Jabeh</a> and <a href="http://itunes.apple.com/tr/app/prayer-book/id292151014?mt=8">Prayer Book</a>) created Appirater class.</p>
<p>The goal of Appirater class is to encourage your satisfied user’s to rate your app.</p>
<p><img class="aligncenter size-full wp-image-243" title="AppiraterScreenshot" src="http://www.redhotbits.com/wp-content/uploads/2010/11/AppiraterScreenshot.png" alt="" width="320" height="460" /><br />
Appirater integration in your application is really easy. When you add it, every time the user launches your app, Appirater will see if they’ve used the app for 30 days and launched it at least 15 times. If they have, they’ll be asked to rate the app, and then be taken to your app’s review page in the App Store. If you release a new version of your app, Appirater will again wait until the new version has been used 15 times for 30 days and then prompt the user again for another review. Optionally, you can adjust the days to wait, and the launch number.</p>
<p>Checkout the class at:</p>
<ul>
<li><a href="http://arashpayan.com/blog/index.php/2009/09/07/presenting-appirater/">Developer page</a></li>
<li><a href="http://github.com/arashpayan/appirater">GitHub repository</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redhotbits.com/2010/11/appirater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ShareKit</title>
		<link>http://www.redhotbits.com/2010/11/sharekit/</link>
		<comments>http://www.redhotbits.com/2010/11/sharekit/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 13:28:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone Development]]></category>

		<guid isPermaLink="false">http://www.redhotbits.com/?p=229</guid>
		<description><![CDATA[Easily enable sharing in your iPhone application]]></description>
			<content:encoded><![CDATA[<p>With ShareKit made by <a href="http://www.ideashower.com/">Nate Weiner</a> you can easily add drop in sharing features for all your iPhone and iPad apps. ShareKit is small &#8220;plug n&#8217; play&#8221; open source framework that can be dropped into any iPhone or iPad app to instantly add full sharing capabilities.</p>
<p>You can use any content: url, image, piece of text, or file and just say “<em>hey ShareKit, share this</em>“,  ShareKit will present the user with a list of services that support the content they are sharing, handle logging them into the service, prompt for any additional information such as a caption, and display an activity indicator while uploading.</p>
<p style="text-align: center;"><img class="size-full wp-image-232  aligncenter" title="Screen shot 2010-11-02 at 2.13.36 PM" src="http://www.redhotbits.com/wp-content/uploads/2010/11/Screen-shot-2010-11-02-at-2.13.36-PM.png" alt="" width="600" height="483" /></p>
<p>Really easy to integrate and use.</p>
<p>You can use multiple or just individual services (Facebook, Twitter, Delicious, Google reader etc.).</p>
<p><img class="aligncenter size-full wp-image-230" title="actionSheet" src="http://www.redhotbits.com/wp-content/uploads/2010/11/actionSheet.png" alt="" width="280" height="266" /><br />
<img class="aligncenter size-full wp-image-231" title="button" src="http://www.redhotbits.com/wp-content/uploads/2010/11/button.png" alt="" width="277" height="213" /></p>
<p>You can find more info on:</p>
<ul>
<li><a href="http://www.ideashower.com/ideas/launched/sharekit/">Developer website</a></li>
<li><a href="http://getsharekit.com/">Framework website</a></li>
<li><a href="http://github.com/ideashower/ShareKit">GitHub repository</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redhotbits.com/2010/11/sharekit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tapku UI Library</title>
		<link>http://www.redhotbits.com/2010/04/tapku-ui-library/</link>
		<comments>http://www.redhotbits.com/2010/04/tapku-ui-library/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 18:15:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone Development]]></category>

		<guid isPermaLink="false">http://www.redhotbits.com/?p=188</guid>
		<description><![CDATA[Nice open source iPhone UI class library]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-190" title="4175733982_f168ea3bd1_o" src="http://www.redhotbits.com/wp-content/uploads/2010/04/4175733982_f168ea3bd1_o.png" alt="" width="600" height="279" /></p>
<p>Tapku Software (The author of <a href="http://itunes.apple.com/us/app/attic-music-controller-for/id352395854?mt=8">Attic</a>, <a href="http://itunes.apple.com/us/app/super-research-idea-generator/id327725668?mt=8">Super Research Idea Generator</a> and <a href="http://itunes.apple.com/us/app/time-keeper-pro-for-running/id327046772?mt=8">Time Keeper Pro</a> iPhone apps) has released an iPhone UI class library called Tapku Library.</p>
<p>TapkuLibrary is a collection of iPhone classes intended for broad use in applications. The framework contains set of classes to create user interface elements in your app, like coverflow, charting and calendar. It also includes new TableView cells, helper classes for easily creating http POST requests and class for detecting shake events using accelerometer.</p>
<p>Some of the classes are not yet that good. CoverFlow for example has bad physics, and has some slowdowns, but it will be improved over time. I&#8217;m sure you will find some usage for the classes, at least you can use them as a starting point when developing your own app, to speed up development process.</p>
<p>Library is open source, licensed under the Apache License, Version 2.0. You can get it on its github repository: <a href="http://github.com/devinross/tapkulibrary">http://github.com/devinross/tapkulibrary</a></p>
<p><img class="aligncenter size-full wp-image-189" title="4247861508_046420c6fb_o" src="http://www.redhotbits.com/wp-content/uploads/2010/04/4247861508_046420c6fb_o.jpg" alt="" width="600" height="191" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.redhotbits.com/2010/04/tapku-ui-library/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>UICallOutView replacement</title>
		<link>http://www.redhotbits.com/2010/04/uicalloutview-replacement/</link>
		<comments>http://www.redhotbits.com/2010/04/uicalloutview-replacement/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 17:48:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone Development]]></category>

		<guid isPermaLink="false">http://www.redhotbits.com/?p=182</guid>
		<description><![CDATA[UICallOutView class replacement]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-183 aligncenter" title="Bildschirmfoto-2010-01-18-um-22.30.09" src="http://www.redhotbits.com/wp-content/uploads/2010/04/Bildschirmfoto-2010-01-18-um-22.30.09.png" alt="" width="225" height="138" /></p>
<p>UICallOutView is a private class in UIKit that produces “annotation views” used in Maps application.</p>
<p>Hendrik Holtmann (The author of iPhone app eCurrency) did fine work porting mono touch class, MonoTouchCalloutView, made by Ed Anuff.</p>
<p>You can download the class with example project included here:<br />
<a href="http://dl.dropbox.com/u/363242/CallOutView.zip">http://dl.dropbox.com/u/363242/CallOutView.zip<br />
</a><br />
Original blog post: <a href="http://www.eidac.de/?p=183">http://www.eidac.de/?p=183</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.redhotbits.com/2010/04/uicalloutview-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

