<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Useless Thingies</title>
	<atom:link href="http://uselessthingies.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://uselessthingies.wordpress.com</link>
	<description>... and a dash of cocoa, please</description>
	<lastBuildDate>Mon, 02 Jan 2012 12:09:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='uselessthingies.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Useless Thingies</title>
		<link>http://uselessthingies.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://uselessthingies.wordpress.com/osd.xml" title="Useless Thingies" />
	<atom:link rel='hub' href='http://uselessthingies.wordpress.com/?pushpress=hub'/>
		<item>
		<title>NSArrayControllers and binding &#8211; an example</title>
		<link>http://uselessthingies.wordpress.com/2008/05/18/nsarraycontrollers-an-example/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/18/nsarraycontrollers-an-example/#comments</comments>
		<pubDate>Sun, 18 May 2008 21:45:19 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=18</guid>
		<description><![CDATA[NSArrayControllers can save you precious time (and lines) if your app basically deals with a NSMutableArray, in any form. In this tutorial I&#8217;ll explain how to use NSArrayControllers to bind a data source and a view together and allow edition of the data. The basics For the set-up, you&#8217;ll first want to create a new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=18&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/18/nsarraycontrollers-an-example/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>

		<media:content url="http://uselessthingies.files.wordpress.com/2008/05/image-5.png?w=300" medium="image" />

		<media:content url="http://uselessthingies.files.wordpress.com/2008/05/image-21.png?w=300" medium="image" />

		<media:content url="http://uselessthingies.files.wordpress.com/2008/05/image-3.png?w=300" medium="image" />

		<media:content url="http://uselessthingies.files.wordpress.com/2008/05/image-7.png?w=300" medium="image" />
	</item>
		<item>
		<title>An App without dock icon and menu bar</title>
		<link>http://uselessthingies.wordpress.com/2008/05/18/an-app-without-dock-icon-and-menu-bar/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/18/an-app-without-dock-icon-and-menu-bar/#comments</comments>
		<pubDate>Sun, 18 May 2008 18:03:13 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=19</guid>
		<description><![CDATA[You might want to create an application that doesn&#8217;t appear in the dock or in the selector (Cmd-Tab), may it be because it&#8217;s a background application or a kind of widget you only want to show through a window for instance. This is pretty simple: the only step is to add this key in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=19&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/18/an-app-without-dock-icon-and-menu-bar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>
	</item>
		<item>
		<title>Dragging a file on your app icon in the dock</title>
		<link>http://uselessthingies.wordpress.com/2008/05/13/dragging-a-file-on-your-app-icon-in-the-dock/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/13/dragging-a-file-on-your-app-icon-in-the-dock/#comments</comments>
		<pubDate>Tue, 13 May 2008 19:19:00 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=17</guid>
		<description><![CDATA[Last night I was wondering how to implement this feature &#8211; that is, to be able to drag a file on my application&#8217;s icon in the dock so I can basically get the filepath and process it in my app. The solution lies in a simple combo : First of all, you need to implement [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=17&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/13/dragging-a-file-on-your-app-icon-in-the-dock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting the good info on mouseEvents &#8230;</title>
		<link>http://uselessthingies.wordpress.com/2008/05/12/getting-the-good-info-on-mouseevents/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/12/getting-the-good-info-on-mouseevents/#comments</comments>
		<pubDate>Mon, 12 May 2008 21:28:33 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=16</guid>
		<description><![CDATA[When a user clicks somewhere on your NSView, you want to be able to determine several things : 1. First, where exactly did the user clicked? You can easily get that info from the method locationInWindow of the NSEvent class. You can also convert the point&#8217;s coordinates into another view&#8217; coordinates system : You can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=16&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/12/getting-the-good-info-on-mouseevents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>
	</item>
		<item>
		<title>Flipped composited images</title>
		<link>http://uselessthingies.wordpress.com/2008/05/12/flipped-composited-images/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/12/flipped-composited-images/#comments</comments>
		<pubDate>Mon, 12 May 2008 20:49:56 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=9</guid>
		<description><![CDATA[I recently bumped in this &#8216;bug&#8217; (?) while drawing an image and setting a trackingRect to catch users clicking on it. I&#8217;ve flipped the coordinates; in the drawRect method of my instance, I draw my image and set buttonBounds, an NSRect instance variable that holds the bounds of my button : and I then use my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=9&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/12/flipped-composited-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>

		<media:content url="http://uselessthingies.files.wordpress.com/2008/05/image-1.png?w=52" medium="image" />
	</item>
		<item>
		<title>How to set up a basic Notification process</title>
		<link>http://uselessthingies.wordpress.com/2008/05/11/how-to-set-up-a-basic-notification-process/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/11/how-to-set-up-a-basic-notification-process/#comments</comments>
		<pubDate>Sun, 11 May 2008 11:02:44 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=11</guid>
		<description><![CDATA[You&#8217;ve always wondered about NSNotifications &#8230; and the way to possibly use it to trigger actions. Notifications can be useful if you want to virtually &#8216;connect&#8217; two or more objects that are totally separated in your code; thus, instead of establishing a hard-link through, let&#8217;s say, a controller or an instance variable, you can use [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=11&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/11/how-to-set-up-a-basic-notification-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple way to catch modifier keys</title>
		<link>http://uselessthingies.wordpress.com/2008/05/10/simple-way-to-catch-modifier-keys/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/10/simple-way-to-catch-modifier-keys/#comments</comments>
		<pubDate>Sat, 10 May 2008 17:59:11 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=8</guid>
		<description><![CDATA[Here is a simple way to catch expected modifier keys for an event (in this example, mouseDown) :<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=8&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/10/simple-way-to-catch-modifier-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding a trackingRect to a NSView object</title>
		<link>http://uselessthingies.wordpress.com/2008/05/10/adding-a-trackingrect-to-a-nsview-object/</link>
		<comments>http://uselessthingies.wordpress.com/2008/05/10/adding-a-trackingrect-to-a-nsview-object/#comments</comments>
		<pubDate>Sat, 10 May 2008 17:09:29 +0000</pubDate>
		<dc:creator>Cyril</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code snippets]]></category>

		<guid isPermaLink="false">http://uselessthingies.wordpress.com/?p=5</guid>
		<description><![CDATA[This might be of interest (I spent a good hour trying to make it work); In the following code, I set a trackingRect to my entire NSView object, so I can track mouse entering and exiting my NSView : Though perfectly correct, this code won&#8217;t set the trackingRect as expected for the (not so) obvious [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=uselessthingies.wordpress.com&amp;blog=3694571&amp;post=5&amp;subd=uselessthingies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://uselessthingies.wordpress.com/2008/05/10/adding-a-trackingrect-to-a-nsview-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2f2d93551f08bf1d025a768222221134?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cyril</media:title>
		</media:content>
	</item>
	</channel>
</rss>
