<?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>Perceive Designs &#187; Software</title>
	<atom:link href="http://www.perceive.net/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.perceive.net</link>
	<description>My Perception is My Reality</description>
	<lastBuildDate>Wed, 30 Nov 2011 19:06:03 +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>MyGarden (or &#8220;Is There an App for My iPhone to Track the Things I&#8217;ve Planted?&#8221;)</title>
		<link>http://www.perceive.net/2008/08/09/mygarden-or-is-there-an-app-for-my-iphone-to-track-the-things-ive-planted/</link>
		<comments>http://www.perceive.net/2008/08/09/mygarden-or-is-there-an-app-for-my-iphone-to-track-the-things-ive-planted/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 03:41:45 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.perceive.net/?p=1018</guid>
		<description><![CDATA[My first app for the Apple AppStore is finally in the queue waiting approval to appear in the AppStore.  It&#8217;s called MyGarden, and keeps track of the things that you plant in your garden.
]]></description>
			<content:encoded><![CDATA[<p>My first app for the Apple AppStore is finally in the queue waiting approval to appear in the AppStore.  It&#8217;s called <a title="MyGarden" href="/mygarden">MyGarden</a>, and keeps track of the things that you plant in your garden.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perceive.net/2008/08/09/mygarden-or-is-there-an-app-for-my-iphone-to-track-the-things-ive-planted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proximity (or &#8220;So Close, But So Far Away&#8221;)</title>
		<link>http://www.perceive.net/2008/04/23/proximity-or-so-close-but-so-far-away/</link>
		<comments>http://www.perceive.net/2008/04/23/proximity-or-so-close-but-so-far-away/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 12:41:15 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.perceive.net/?p=995</guid>
		<description><![CDATA[I recently had a problem with my Mac.  A sector on the hard drive went bad, and killed one of the files for Salling Clicker.  It&#8217;s a great program that allows you to run scripts when you go away from your computer and return, using bluetooth to determine if you&#8217;re in rance of your computer.  [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a problem with my Mac.  A sector on the hard drive went bad, and killed one of the files for <a href="http://http//www.salling.com/Clicker/mac/"title="Salling Clicker"  onclick="javascript:pageTracker._trackPageview('/outbound/article/http');">Salling Clicker</a>.  It&#8217;s a great program that allows you to run scripts when you go away from your computer and return, using bluetooth to determine if you&#8217;re in rance of your computer.  It also allows you to control applications on your computer via your mobile phone.  Quite a cool app, but the only part I used was the proximity part.</p>
<p>So after reinstalling OSX (which seemed to be my only recourse to get the abd sector problem resolved), I decided to look and see if there is something like Salling Clicker that only does the proximity part (which is all that I used).  I found the aptly named <a href="http://reduxcomputing.com/proximity.php"title="Proximity Bluetooth App for OSX"  onclick="javascript:pageTracker._trackPageview('/outbound/article/reduxcomputing.com');">Proximity</a> and it perfectly fits the bill.</p>
<p>Unfortunately the Proximity website doesn&#8217;t have any applescripts for you to use, so I had to write my own, and I thought I&#8217;d write them down here for you lovely readers to use.  I found some part of these at the <a href="http://www.technocrat.ca/?p=44" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.technocrat.ca');">Technocrat</a> blog.</p>
<p><strong>In Range Script:</strong><br />
<code>-- iTunes<br />
--<br />
tell application "iTunes"<br />
play<br />
end tell<br />
-- Adium<br />
--<br />
tell application "Adium"<br />
go available with message ""<br />
end tell<br />
-- Sync the phone (if not synced in the last 60 minutes)<br />
--<br />
tell application "iSync"<br />
if last sync is less than ((current date) - 3600) then synchronize<br />
end if<br />
end tell<br />
tell application "System Events" to set visible of process "iSync" to false<br />
</code><br />
<strong>Out of Range Script:</strong><br />
<code>-- iTunes<br />
--</code></p>
<p>tell application &#8220;iTunes&#8221;<br />
if player state is playing then<br />
pause<br />
end if<br />
end tell</p>
<p>&#8211; Adium<br />
&#8211;<br />
tell application &#8220;Adium&#8221;<br />
go away with message &#8220;I&#8217;m not near my computer&#8221;<br />
end tell</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perceive.net/2008/04/23/proximity-or-so-close-but-so-far-away/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox 3 Smart Bookmarks (or &#8220;Find Your Place&#8221;)</title>
		<link>http://www.perceive.net/2008/04/08/firefox-3-smart-bookmarks-or-find-your-place/</link>
		<comments>http://www.perceive.net/2008/04/08/firefox-3-smart-bookmarks-or-find-your-place/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 15:32:58 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.perceive.net/2008/04/08/firefox-3-smart-bookmarks-or-find-your-place/</guid>
		<description><![CDATA[Firefox 3 includes an interesting concept called places.  The idea is that all history and bookmarks are stored in a SQLite database, and the browser exposes an API to interact with the data.  You&#8217;ll see it in action in the &#8220;Smart Bookmarks&#8221; button in the Bookmarks Toolbar &#8212; these are dynamic queries against the database [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox 3 includes an interesting concept called <a href="http://developer.mozilla.org/en/docs/Places" onclick="javascript:pageTracker._trackPageview('/outbound/article/developer.mozilla.org');">places</a>.  The idea is that all history and bookmarks are stored in a SQLite database, and the browser exposes an API to interact with the data.  You&#8217;ll see it in action in the &#8220;Smart Bookmarks&#8221; button in the Bookmarks Toolbar &#8212; these are dynamic queries against the database to find places you have visited the most, visited recently, etc.</p>
<p>I became interested in this because I started to write an extension for Firefox 2 to display all of the websites I work on that are in development &#8212; the overhead was far too much for the return, so I stopped working on it.</p>
<p>Luckily, with Firefox 3, the places infrastructure allows me to do this very easily.  For instance <a href="place:type=0&amp;sort=4&amp;maxResults=50&amp;terms=staging">this bookmark</a> will list out all of the items in your history, sorted recently visited first, that contain the text &#8217;staging&#8217;.  Quite handy.</p>
<p>I&#8217;m sure there is a better way to do this.  I tried the <a href="http://forums.mozillazine.org/viewtopic.php?t=629560" onclick="javascript:pageTracker._trackPageview('/outbound/article/forums.mozillazine.org');">uri parameter</a>, but it kept crashing Firefox.  In any case, it&#8217;s a nice addition, and another testament to SQLite&#8217;s applicability to many areas of web and application development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perceive.net/2008/04/08/firefox-3-smart-bookmarks-or-find-your-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Aggie Template</title>
		<link>http://www.perceive.net/2002/11/08/updated-aggie-template/</link>
		<comments>http://www.perceive.net/2002/11/08/updated-aggie-template/#comments</comments>
		<pubDate>Fri, 08 Nov 2002 05:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://dev.perceive.net/2002/11/08/updated-aggie-template/</guid>
		<description><![CDATA[For those of you who recently downloaded the Aggie Template, and are using mozilla, might I suggest you Download it again.  I have fixed the Mozilla incompatibilities.
]]></description>
			<content:encoded><![CDATA[<p>For those of you who recently downloaded the Aggie Template, and are using mozilla, might I suggest you <a href="http://www.perceive.net/pages/page/aggie" >Download it again</a>.  I have fixed the Mozilla incompatibilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perceive.net/2002/11/08/updated-aggie-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aggie Template</title>
		<link>http://www.perceive.net/2002/11/07/aggie-template/</link>
		<comments>http://www.perceive.net/2002/11/07/aggie-template/#comments</comments>
		<pubDate>Thu, 07 Nov 2002 05:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://dev.perceive.net/2002/11/07/aggie-template/</guid>
		<description><![CDATA[I&#8217;ve finished the first candidate for the new Aggie Template.  You&#8217;ll need to get a copy of the latest CVS version of Aggie to use this, as it uses alot of the new aggregate information.  I&#8217;m always open to comments, and suggestions.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finished the first candidate for the <a href="http://www.perceive.net/pages/page/aggie/" title="Aggie Template Information" >new Aggie Template</a>.  You&#8217;ll need to get a copy of the latest <a href="http://sourceforge.net/cvs/?group_id=55702" title="Get Aggie from the Sourceforge CVS" onclick="javascript:pageTracker._trackPageview('/outbound/article/sourceforge.net');">CVS version of Aggie</a> to use this, as it uses alot of the new aggregate information.  I&#8217;m always open to comments, and suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perceive.net/2002/11/07/aggie-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

