<?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>Tilo Mitra</title>
	<atom:link href="http://tilomitra.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tilomitra.com</link>
	<description>Front End Engineering &#124; UI Development</description>
	<lastBuildDate>Sun, 19 Feb 2012 17:47:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Objective-C literals for NSDictionary, NSArray, and NSNumber</title>
		<link>http://tilomitra.com/objective-c-literals-for-nsdictionary-nsarray-and-nsnumber/</link>
		<comments>http://tilomitra.com/objective-c-literals-for-nsdictionary-nsarray-and-nsnumber/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 17:47:44 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=418</guid>
		<description><![CDATA[From CocoaHeads: To sum it up, you can create an NSDictionary through the following: dict = @{ k1 : o1, k2 : o2, k3 : o3 }; Similarly for an NSArray: array = @[ a, b, c ]; and for &#8230; <a href="http://tilomitra.com/objective-c-literals-for-nsdictionary-nsarray-and-nsnumber/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>From <a title="Cocoaheads" href="http://cocoaheads.tumblr.com">CocoaHeads</a>:</p>
<p>To sum it up, you can create an NSDictionary through the following:</p>
<p><code>dict = @{ k1 : o1, k2 : o2, k3 : o3 };</code></p>
<p>Similarly for an NSArray:</p>
<p><code>array = @[ a, b, c ];</code></p>
<p>and for NSNumber:</p>
<p><code>NSNumber *number;<br />
number = @'X';<br />
number = @12345;<br />
number = @12345ul;<br />
number = @12345ll;<br />
number = @123.45f;<br />
number = @123.45;<br />
number = @YES;<br />
</code><span id="more-418"></span><!--more--></p>
<p>Find the entire article at <a href="http://cocoaheads.tumblr.com/post/17757846453/objective-c-literals-for-nsdictionary-nsarray-and">CocoaHeads • Objective-C literals for NSDictionary, NSArray, and NSNumber</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/objective-c-literals-for-nsdictionary-nsarray-and-nsnumber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get absolute position of a UITableViewCell</title>
		<link>http://tilomitra.com/get-absolute-position-of-a-uitableviewcell/</link>
		<comments>http://tilomitra.com/get-absolute-position-of-a-uitableviewcell/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 18:15:40 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=415</guid>
		<description><![CDATA[Here&#8217;s something that helped me when I was working with WEPopover to implement a popover in my iPhone app a la the iPad. If your popover is being instantiated from a UIViewController with a UITableView in it that does not &#8230; <a href="http://tilomitra.com/get-absolute-position-of-a-uitableviewcell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s something that helped me when I was working with <a href="https://github.com/werner77/WEPopover">WEPopover</a> to implement a popover in my iPhone app a la the iPad.</p>
<p>If your popover is being instantiated from a <code>UIViewController</code> with a <code>UITableView</code> in it that does not fill up the whole window, then you may have some issues getting the popover to align properly. </p>
<p>To get the alignment to work, you need to get the <code>UITableViewCell</code>&#8216;s absolute position on screen.</p>
<p>You can achieve that through the following code:</p>
<p><code><br />
CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];<br />
CGRect rectInSuperview = [tableView convertRect:rectInTableView toView:[tableView superview]];<br />
</code></p>
<p>And then&#8230;<br />
<code></p>
<p>[self.popoverController presentPopoverFromRect:rectInSuperview<br />
												inView:self.view<br />
							  permittedArrowDirections:(UIPopoverArrowDirectionUp|UIPopoverArrowDirectionDown|<br />
														UIPopoverArrowDirectionLeft|UIPopoverArrowDirectionRight)<br />
											  animated:YES];</p>
<p></code></p>
<p>Thanks to Nick Weaver at <a href="http://stackoverflow.com/questions/5926554/get-uitableviewcell-position-from-visible-area-or-window">this</a> StackOverflow question for explaining this. Took some finding.</p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/get-absolute-position-of-a-uitableviewcell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Waterloo Life</title>
		<link>http://tilomitra.com/waterloo-life/</link>
		<comments>http://tilomitra.com/waterloo-life/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 16:25:39 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=375</guid>
		<description><![CDATA[I finish my undergrad in less than 2 months. That&#8217;s less than 60 days. I&#8217;m going to miss it. I think I already do.]]></description>
			<content:encoded><![CDATA[<p>I finish my undergrad in less than 2 months. That&#8217;s less than 60 days. I&#8217;m going to miss it. I think I already do.</p>

<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-8/' title='waterloo-life-large-8'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-8-284x150.jpg" class="attachment-thumbnail" alt="Halloween 2011" title="waterloo-life-large-8" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-16/' title='waterloo-life-large-16'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-16-284x150.jpg" class="attachment-thumbnail" alt="Engineering notes" title="waterloo-life-large-16" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-4/' title='waterloo-life-large-4'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-4-284x150.jpg" class="attachment-thumbnail" alt="Painting assignments" title="waterloo-life-large-4" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-2/' title='waterloo-life-large-2'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-2-284x150.jpg" class="attachment-thumbnail" alt="Tactical advice during basketball time out" title="waterloo-life-large-2" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-15/' title='waterloo-life-large-15'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-15-284x150.jpg" class="attachment-thumbnail" alt="Data mining class" title="waterloo-life-large-15" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-17/' title='waterloo-life-large-17'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-17-284x150.jpg" class="attachment-thumbnail" alt="Wing nights at Morty&#039;s" title="waterloo-life-large-17" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-3/' title='waterloo-life-large-3'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-3-284x150.jpg" class="attachment-thumbnail" alt="SLC at dawn on my way to cricket games" title="waterloo-life-large-3" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-6/' title='waterloo-life-large-6'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-6-284x150.jpg" class="attachment-thumbnail" alt="Testing out an early prototype of Peekaboo" title="waterloo-life-large-6" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-5/' title='waterloo-life-large-5'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-5-284x150.jpg" class="attachment-thumbnail" alt="Bubble tea menu from Sweet Dreams Tea Shop" title="waterloo-life-large-5" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-7/' title='waterloo-life-large-7'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-7-284x150.jpg" class="attachment-thumbnail" alt="Chapters" title="waterloo-life-large-7" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-11/' title='waterloo-life-large-11'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-11-284x150.jpg" class="attachment-thumbnail" alt="Starbucks at the corner of King and University" title="waterloo-life-large-11" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-14/' title='waterloo-life-large-14'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-14-284x150.jpg" class="attachment-thumbnail" alt="Late night working on campus" title="waterloo-life-large-14" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-12/' title='waterloo-life-large-12'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-12-284x150.jpg" class="attachment-thumbnail" alt="Chinese food from plaza" title="waterloo-life-large-12" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-13/' title='waterloo-life-large-13'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-13-284x150.jpg" class="attachment-thumbnail" alt="Design optimization under probabilistic uncertainty" title="waterloo-life-large-13" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-1/' title='waterloo-life-large-1'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-1-284x150.jpg" class="attachment-thumbnail" alt="Basketball intramurals at CIF" title="waterloo-life-large-1" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-10/' title='waterloo-life-large-10'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-10-284x150.jpg" class="attachment-thumbnail" alt="Iron ring info session" title="waterloo-life-large-10" /></a>
<a href='http://tilomitra.com/waterloo-life/waterloo-life-large-9/' title='waterloo-life-large-9'><img width="284" height="150" src="http://tilomitra.com/wp-content/uploads/2012/02/waterloo-life-large-9-284x150.jpg" class="attachment-thumbnail" alt="Counting pennies at William&#039;s" title="waterloo-life-large-9" /></a>

]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/waterloo-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How we used free + open source tools to build a facial recognition app</title>
		<link>http://tilomitra.com/architecture-facial-recognition-system/</link>
		<comments>http://tilomitra.com/architecture-facial-recognition-system/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 06:16:12 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=334</guid>
		<description><![CDATA[A look into my final year design project, and some of the tools and architectures used to create it.  <a href="http://tilomitra.com/architecture-facial-recognition-system/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a post I&#8217;ve been meaning to write for a while, but just never got around to it.</p>
<p>As a Waterloo Engineering student, we have to complete a final year design project under the guidance of a supervisor in groups of three.</p>
<h2>What have I been making?</h2>
<p>My project is called Peekaboo. It uses facial detection and recognition to allow a user to find out more about people around them.</p>
<p>I&#8217;ve been working on this for about 5 months now with my group members. We&#8217;ve made sufficient progress and are now at a stage where I can talk about our systems architecture and some of the design decisions that we made.</p>
<h2>System Overview</h2>
<p>Peekaboo is comprised of 3 components, shown in the diagram below.</p>
<div id="attachment_342" class="wp-caption aligncenter" style="width: 610px"><a href="http://tilomitra.com/architecture-facial-recognition-system/system-diagram/" rel="attachment wp-att-342"><img class="size-medium wp-image-342" title="system-diagram" src="http://tilomitra.com/wp-content/uploads/2012/02/system-diagram-600x299.png" alt="" width="600" height="299" /></a><p class="wp-caption-text">System Overview</p></div>
<h2>iOS App + Face Detection + Parse</h2>
<p>We have a native iOS app that uses <a title="Parse" href="http://www.parse.com">Parse</a> for it&#8217;s mobile backend. We&#8217;ve been very happy with Parse, and it was painless to set up. Face detection is performed on the device itself through <a title="Face.com API" href="http://developer.face.com">Face.com&#8217;s API</a>. We went with Face.com over OpenCV&#8217;s Face detection due to higher accuracy and the availability of more data. Face.com is able to give us JSON back with eye positions, mouth posiitions, head tilt and yaw, gender, and more.</p>
<p>I strongly believe user experience should be important to any project. We use a lot of great open source iOS UI components available at <a href="http://www.cocoacontrols.com">Cocoa Controls</a>.</p>
<h2>Web Server on Heroku</h2>
<p>We wrote a web server in Node.js deployed over <a title="Heroku" href="http://www.heroku.com">Heroku</a> to act as an API. Once again, Heroku makes this painless to set up and deploy. The web server is the mediator used by the iOS app and the desktop C++ code. The web server talks to Parse to get information and feeds it to the C++ code (and vice versa). It uses standard authentication.</p>
<p>The web server has a MySQL database which we usually query instead of directly querying Parse. This way, we stay below the rate limits. Parse is only queried when there is a face that needs recognition.</p>
<ul>
<li>We found <a href="http://sequelizejs.com/">Sequelize</a> to be a good ORM for MySQL (available as an npm module)</li>
<li>We found <a title="Request NPM Module Github" href="https://github.com/mikeal/request">Request</a> to be a useful module for simplifying HTTP Requests.</li>
</ul>
<h2>Facial Recognition Algorithms</h2>
<p>I won&#8217;t lie, I&#8217;m not the best at C++. I find web languages and Objective-C a lot easier to code in. Nonetheless, when doing Face Recognition, we had to use C++. It&#8217;s mainstream and fast. Of course, we went with <a title="OpenCV" href="http://opencv.willowgarage.com/wiki/">OpenCV</a>, one of the most popular computer vision libraries out there (<a href="http://tilomitra.com/opencv-on-mac-osx/">See my post</a> on how to set up OpenCV on Mac).</p>
<p>Like I said, we don&#8217;t use OpenCV for Face detection. We use it to work with images, do some basic image processing (histogram equalization) and use OpenCV&#8217;s Eigenfaces implementation. We have also implemented another Facial Recognition algorithm known as LDA (Linear Discriminant Analysis). This was done mostly through reading research papers and contacting people smarter than us. Google Scholar is a useful resource. LDA gives us a 10-15% improved recognition rate over EigenFaces.</p>
<h2>Communication Layer</h2>
<address>Since I&#8217;m not a big C++ guy, I wrote a pretty thin Objective-C layer on top of the C++ code that communicates with the web server and figures out when to execute the facial recognition code. I was able to leverage a lot of my iOS knowledge for this, using standard libraries such as <a href="http://allseeing-i.com/ASIHTTPRequest/">ASIHTTPRequest</a> and <a href="http://stig.github.com/json-framework/">SBJSON</a> (ASIHTTPRequest has recently been stopped being maintained, but for our project, it does the job).</address>
<h3>System diagram of how facial recognition works</h3>
<p><a href="http://tilomitra.com/architecture-facial-recognition-system/face-rec-diagram/" rel="attachment wp-att-341"><img class="aligncenter size-medium wp-image-341" title="face-rec-diagram" src="http://tilomitra.com/wp-content/uploads/2012/02/face-rec-diagram-600x338.png" alt="" width="600" height="338" /></a></p>
<h2>Final Thoughts</h2>
<p>Some parts of our code are a little hacked together. This is partly due to the time crunch we are under and partly due to the fact that we are still learning. However, I am pretty proud of what we have achieved so far. We can accurately (over 70%) recognize a person who has been trained by our system (database size is 70 people currently). We&#8217;ve used $0 on this project, which is a testament to how open and amazing our software engineering industry is. We have learned a lot through out this process. I&#8217;ll put another post up with a live demo sometime soon.</p>
<p>If you have questions, ask them below!</p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/architecture-facial-recognition-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your Facebook Cover Photo using FQL</title>
		<link>http://tilomitra.com/get-your-facebook-cover-photo-using-fql/</link>
		<comments>http://tilomitra.com/get-your-facebook-cover-photo-using-fql/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 10:00:52 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=332</guid>
		<description><![CDATA[Facebook&#8217;s Graph API doesn&#8217;t have a method to easily retrieve a cover photo. However, provided that you (or a user) has given your app access to their Photo Albums, you can get the photo pretty easily. The best way to &#8230; <a href="http://tilomitra.com/get-your-facebook-cover-photo-using-fql/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Facebook&#8217;s Graph API doesn&#8217;t have a method to easily retrieve a cover photo. However, provided that you (or a user) has given your app access to their Photo Albums, you can get the photo pretty easily. </p>
<p>The best way to get it through a single request is using the following FQL query.</p>
<p><code>SELECT cover_object_id from album where aid IN (SELECT aid, name FROM album WHERE owner=me() AND name="Cover Photos")</code></p>
<p>Note that you will need an access token to use this query. It definitely works for me, but I&#8217;m still testing with permissions to see what&#8217;s needed to make it work with other users. Will post an update if anything changes.</p>
<p><strong>Update:</strong> Yep, this works. Have it running on my iPhone right now. Remember to change &#8220;me()&#8221; with the Facebook ID of the user. &#8220;me()&#8221; will only work from the FQL console. </p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/get-your-facebook-cover-photo-using-fql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool little Objective-C Method for grouping Facebook likes</title>
		<link>http://tilomitra.com/cool-little-objective-c-method-for-grouping-facebook-likes/</link>
		<comments>http://tilomitra.com/cool-little-objective-c-method-for-grouping-facebook-likes/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 09:45:30 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=328</guid>
		<description><![CDATA[Firstly, I just want to say I&#8217;m pretty proud of myself for writing compilable code at 4:30am. Go me. I am making an iOS app as part of my 4th year design project, and we are leveraging Facebook for it. &#8230; <a href="http://tilomitra.com/cool-little-objective-c-method-for-grouping-facebook-likes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Firstly, I just want to say I&#8217;m pretty proud of myself for writing compilable code at 4:30am. Go me.</p>
<p>I am making an iOS app as part of my 4th year design project, and we are leveraging Facebook for it. Basically, our app allows you to take a picture of someone&#8217;s face and we use facial recognition to pull up their Facebook profile.</p>
<p>Anyway, I was fooling around with the Facebook iOS SDK and one of the things I&#8217;ve been wanting to do is to group one&#8217;s likes by category. Facebook seems to just return a large array of likes, with no grouping. This little method below groups them so I can have a table view with headings like &#8220;Favorite Books&#8221;, &#8220;Favorite Movies&#8221;, etc. Check it out.</p>
<p><script src="https://gist.github.com/1736780.js?file=categorizeLikes.m"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/cool-little-objective-c-method-for-grouping-facebook-likes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Holidays</title>
		<link>http://tilomitra.com/277/</link>
		<comments>http://tilomitra.com/277/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 04:54:16 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=277</guid>
		<description><![CDATA[Wishing everyone here a Merry Christmas, Happy Hanukkah, and a great new year! Here are some pictures I took at a mall near my house.]]></description>
			<content:encoded><![CDATA[<p>Wishing everyone here a Merry Christmas, Happy Hanukkah, and a great new year! Here are some pictures I took at a mall near my house.<br />
<a href="http://tilomitra.com/wp-content/uploads/2011/12/20111224-235353.jpg"><img src="http://tilomitra.com/wp-content/uploads/2011/12/20111224-235353.jpg" alt="20111224-235353.jpg" class="alignnone size-half" /></a></p>
<p><a href="http://tilomitra.com/wp-content/uploads/2011/12/20111224-235405.jpg"><img src="http://tilomitra.com/wp-content/uploads/2011/12/20111224-235405.jpg" alt="20111224-235405.jpg" class="alignnone size-half" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/277/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Santa with Siri</title>
		<link>http://tilomitra.com/santa-with-siri/</link>
		<comments>http://tilomitra.com/santa-with-siri/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 13:06:53 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=269</guid>
		<description><![CDATA[I just saw this ad on CNN. Really well done. This is trademark Apple &#8211; making technology seem useful to the average person. No one better than Santa Claus!]]></description>
			<content:encoded><![CDATA[<p>I just saw this ad on CNN. Really well done. This is trademark Apple &#8211; making technology seem useful to the average person. No one better than Santa Claus!</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/5qcmCUsw4EQ?feature=player_embedded" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/santa-with-siri/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TopForty featured on The Next Web and GigaOM</title>
		<link>http://tilomitra.com/topforty-featured-on-the-next-web/</link>
		<comments>http://tilomitra.com/topforty-featured-on-the-next-web/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 08:21:10 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=265</guid>
		<description><![CDATA[This is really cool, we just got featured on The Next Web. Check it out. We&#8217;ve been having fun watching the traffic spike. Update: We got featured on GigaOM too.]]></description>
			<content:encoded><![CDATA[<p>This is really cool, we just got featured on The Next Web. <a href="http://thenextweb.com/apps/2011/12/06/nobody-listens-to-the-radio-heres-a-top-40-for-the-twitter-age/" title="Featured on TNW">Check it out</a>. We&#8217;ve been having fun watching the traffic spike. <img src='http://tilomitra.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Update: We got featured on <a href="http://gigaom.com/2011/12/07/topforty-twitter-charts/">GigaOM</a> too.</p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/topforty-featured-on-the-next-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice Quote</title>
		<link>http://tilomitra.com/nice-quote/</link>
		<comments>http://tilomitra.com/nice-quote/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 10:56:39 +0000</pubDate>
		<dc:creator>Tilo</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://tilomitra.com/?p=248</guid>
		<description><![CDATA[&#8220;Oh, are you the guys that made TopForty? I use that all the time when I&#8217;m studying!&#8221; At Demo Day, someone came up and said this to us &#8211; great feeling!]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Oh, are you the guys that made TopForty? I use that all the time when I&#8217;m studying!&#8221;</p></blockquote>
<p>At Demo Day, someone came up and said this to us &#8211; great feeling!</p>
]]></content:encoded>
			<wfw:commentRss>http://tilomitra.com/nice-quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

