<?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>zelois</title>
	<atom:link href="http://zeldisland.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://zeldisland.com/blog</link>
	<description>online</description>
	<lastBuildDate>Tue, 25 Aug 2009 18:00:56 +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>Secret Word</title>
		<link>http://zeldisland.com/blog/2008/02/secret-word/</link>
		<comments>http://zeldisland.com/blog/2008/02/secret-word/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 16:09:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://zeldisland.com/blog/?p=60</guid>
		<description><![CDATA[You all know what to do when you hear the secret word, right?
Secret Word is a plugin for iChat.
Download Secret Word.
Secret Word uses SIMBL, JRSwizzle, Sparkle, and the Secret Word of The Day. Thank you!
]]></description>
			<content:encoded><![CDATA[<p>You all know what to do when you hear the secret word, right?</p>
<p>Secret Word is a plugin for iChat.</p>
<p><a href="http://zeldisland.com/software/Secret%20Word.dmg">Download Secret Word</a>.</p>
<p>Secret Word uses <a href="http://www.culater.net/software/SIMBL/SIMBL.php">SIMBL</a>, <a href="http://rentzsch.com/trac/wiki/JRSwizzle">JRSwizzle</a>, <a href="http://sparkle.andymatuschak.org/">Sparkle</a>, and the <a href="http://secretword.tj9991.com/">Secret Word of The Day</a>. Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2008/02/secret-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Type Slug</title>
		<link>http://zeldisland.com/blog/2006/06/type-slug/</link>
		<comments>http://zeldisland.com/blog/2006/06/type-slug/#comments</comments>
		<pubDate>Mon, 05 Jun 2006 19:04:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://10.0.1.3/~aez/zeldisland/blog/?p=13</guid>
		<description><![CDATA[Preview fonts before installing! Drag fonts onto the icon or into the list. See type with a customizable preview line and a full paragraph of text.
Type Slug was created for Mac OS X 10.2, before Font Book. It remains appealing for its simplicity.


Download Type Slug (Mac OS X 10.2+)
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-19" title="typeslug" src="http://zeldisland.com/blog/wp-content/uploads/2008/06/typeslug.gif" alt="" width="64" height="64" />Preview fonts before installing! Drag fonts onto the icon or into the list. See type with a customizable preview line and a full paragraph of text.</p>
<p>Type Slug was created for Mac OS X 10.2, before Font Book. It remains appealing for its simplicity.</p>
<p><span style="color: #551a8b; text-decoration: underline;"><a href="http://zeldisland.com/blog/wp-content/uploads/2008/06/ss-typeslug.jpg"></a><a href="http://zeldisland.com/blog/wp-content/uploads/2008/06/ss-typeslug.jpg"><img class="size-medium wp-image-12" title="Type Slug in action" src="http://zeldisland.com/blog/wp-content/uploads/2008/06/ss-typeslug.jpg" alt="" width="300" height="200" /></a><br />
</span></p>
<p><a href="/software/TypeSlug.dmg">Download Type Slug</a> (Mac OS X 10.2+)</p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2006/06/type-slug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What day is it?</title>
		<link>http://zeldisland.com/blog/2006/05/what-day-is-it/</link>
		<comments>http://zeldisland.com/blog/2006/05/what-day-is-it/#comments</comments>
		<pubDate>Fri, 26 May 2006 19:22:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://10.0.1.3/~aez/zeldisland/blog/?p=27</guid>
		<description><![CDATA[Enter a date:
 What day is it?



//

]]></description>
			<content:encoded><![CDATA[<p>Enter a date:</p>
<input id="whatday_input" maxlength="10" name="date" size="10" type="text" value="mm/dd/yyyy" /> <button onclick="whatday_submit()">What day is it?</button></p>
<p id="whatday_output" style="font-size: small">
<p>
<script type="text/javascript">
//<![CDATA[
var daysOfTheWeek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
var date = new Date();

document.getElementById('whatday_input').value = "" + (date.getMonth()+1) + "/" + date.getDate() + "/" + date.getFullYear();

var errMsg =  "<i>Enter date in mm/dd/yyyy format</i>";

function whatday_submit() {
	var inputString = document.getElementById('whatday_input').value;
	var outputEl = document.getElementById('whatday_output');

	// TODO more flexibility in parsing

	var components = inputString.split("/");
	if(components.length == 3) {
		var day = parseInt(components[1]);
		var month = parseInt(components[0]);
		var year = parseInt(components[2]);
		if(isNaN(day) || isNaN(month) || isNaN(year)) {
			outputEl.innerHTML = errMsg;
		} else {
			var date = new Date();
			date.setDate(day);
			date.setMonth(month-1);

			var s = "";
			for(var i=-5; i<5; ++i) {
				date.setYear(year + i);
				if(date.getFullYear() == year) { s += "<b>"; }
				s += (date.getMonth()+1) + "/" + date.getDate() + "/" + date.getFullYear() + ": " + daysOfTheWeek[date.getDay()] + ".";
				if(date.getFullYear() == year) { s += "</b>"; }
			}
			outputEl.innerHTML = s;
		}
	} else {
		outputEl.innerHTML = errMsg;
	}
}
//]]&gt;</script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2006/05/what-day-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shiny Web</title>
		<link>http://zeldisland.com/blog/2006/05/shiny-web/</link>
		<comments>http://zeldisland.com/blog/2006/05/shiny-web/#comments</comments>
		<pubDate>Wed, 24 May 2006 22:47:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://10.0.1.3/~aez/zeldisland/blog/?p=24</guid>
		<description><![CDATA[Do you think reflected images are the coolest thing since candy buttons? Your favorite site hasn&#8217;t jumped on that bandwagon yet? Now you don&#8217;t have to wait! Install reflection.user.js to make the whole web shiny.
Requires Firefox with greasemonkey. Taken directly from Reflection.js.
]]></description>
			<content:encoded><![CDATA[<p>Do you think reflected images are the coolest thing since candy buttons? Your favorite site hasn&#8217;t jumped on that bandwagon yet? Now you don&#8217;t have to wait! <a href="http://zeldisland.com/blog/wp-content/uploads/2008/06/reflection.user.js">Install reflection.user.js</a> to make the whole web shiny.</p>
<p>Requires <a href="http://www.mozilla.com/firefox/">Firefox</a> with <a href="http://www.greasespot.net/">greasemonkey</a>. Taken directly from <a href="http://cow.neondragon.net/stuff/reflection/">Reflection.js</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2006/05/shiny-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AGT Sportscaster</title>
		<link>http://zeldisland.com/blog/2005/12/agt-sportscaster/</link>
		<comments>http://zeldisland.com/blog/2005/12/agt-sportscaster/#comments</comments>
		<pubDate>Tue, 13 Dec 2005 16:21:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://10.0.1.3/~aez/zeldisland/blog/?p=30</guid>
		<description><![CDATA[For this XM radio device, I developed a software prototype simultaneously with the design documentation. The prototype turned out to be useful in several ways — during design, we could try things out and make empirical decisions; it was a great artifact for client meetings; and it served as interactive documentation for the firmware developer.

The [...]]]></description>
			<content:encoded><![CDATA[<p>For this XM radio device, I developed a software prototype simultaneously with the design documentation. The prototype turned out to be useful in several ways — during design, we could try things out and make empirical decisions; it was a great artifact for client meetings; and it served as interactive documentation for the firmware developer.</p>
<p><img class="size-medium wp-image-31" title="agt-sportscaster" src="http://zeldisland.com/blog/wp-content/uploads/2008/06/agt-sportscaster.png" alt="AGT Sportscaster Software Simulation" width="300" height="108" /></p>
<p>The device has a two-line LCD display. A 5-way pad with a few extra buttons navigates the menu tree. This prototype separates the UI and app logic with a simple but sophisticated message-passing layer that makes it completely scriptable, allowing features such as saved states and modes that are not accessible directly through the device UI (for example, battery disconnected). It is written in java and embeds the <a href="http://processing.org/">processing</a> graphics library for rendering.</p>
<p><a title="AGT Sportscaster Simulator" href="/portfolio/gypsy.html" target="_blank">Launch the simulator</a><br />
<a href="http://www.advancedgt.com/sportscaster.php">View the marketing site</a></p>
<p><!-- todo: insert applet --></p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2005/12/agt-sportscaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magic Brain Lantern</title>
		<link>http://zeldisland.com/blog/2004/10/magic-brain-lantern/</link>
		<comments>http://zeldisland.com/blog/2004/10/magic-brain-lantern/#comments</comments>
		<pubDate>Tue, 05 Oct 2004 02:35:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://10.0.1.3/~aez/zeldisland/blog/?p=6</guid>
		<description><![CDATA[ Magic Brain Lantern channels the collective conscious
Magic Brain Lantern is a test of singularity intelligence
Magic Brain Lantern is environmental background software
Magic Brain Lantern is available for iPhone and Mac OS X
magicbrainlantern.com
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-7" title="magic-brain-lantern" src="http://zeldisland.com/blog/wp-content/uploads/2008/06/magic-brain-lantern.gif" alt="" width="64" height="64" /> Magic Brain Lantern channels the collective conscious<br />
Magic Brain Lantern is a test of singularity intelligence<br />
Magic Brain Lantern is environmental background software<br />
Magic Brain Lantern is available for iPhone and Mac OS X</p>
<p><a href="http://magicbrainlantern.com/">magicbrainlantern.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2004/10/magic-brain-lantern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vernacular</title>
		<link>http://zeldisland.com/blog/2003/06/vernacular/</link>
		<comments>http://zeldisland.com/blog/2003/06/vernacular/#comments</comments>
		<pubDate>Thu, 05 Jun 2003 03:39:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://10.0.1.3/~aez/zeldisland/blog/?p=8</guid>
		<description><![CDATA[
&#8220;Vernacular is an interactive software droid. It is an associate data processor whose function is to augment our use and understanding of the information culture in which we are immersed. We&#8217;re artists of the Star Wars generation. We grew up with cybernetic visions of a twenty-first century. Buck Rogers looked old school, our future was [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-9" style="float: left; margin-right: 5px;" title="vernacular" src="http://zeldisland.com/blog/wp-content/uploads/2008/06/vernacular.gif" alt="" width="64" height="64" /></p>
<p><em>&#8220;Vernacular is an interactive software droid. It is an associate data processor whose function is to augment our use and understanding of the information culture in which we are immersed. We&#8217;re artists of the Star Wars generation. We grew up with cybernetic visions of a twenty-first century. Buck Rogers looked old school, our future was intelligent robots like R2D2 that did not merely respond, but transformed the data flow around us.  Vernacular addresses the meta-language of &#8216;infomatix&#8217;. It is a software in which the associative patterns of one&#8217;s data is rendered in molecular form.&#8221;</em></p>
<p>Vernacular premiered at <a href="http://www.eai.org/">EAI</a> in New York in April 2003. Vernacular was created in collaboration with Howard Goldkrand and Beth Coleman. The application and source are freely available for download. Vernacular is based on Craig Reynolds&#8217; flocking algorithm and simple particle physics. It generates spatialized audio and OpenGL graphics. Vernacular requires Mac OS X 10.2.3 or above.</p>
<p><a href="http://zeldisland.com/blog/wp-content/uploads/2008/06/ss-vernacular-21.jpg"><img class="center size-medium wp-image-15" title="Hello Vernacular" src="http://zeldisland.com/blog/wp-content/uploads/2008/06/ss-vernacular-21.jpg" alt="" width="300" height="197" /></a></p>
<p><a href="http://www.eai.org/eai/title.htm?id=7635">Vernacular at EAI</a><br />
In collaboration with <a href="http://www.soundlab.org/">Soundlab | Cultural Alchemy</a></p>
<p><a href="/software/Vernacular.dmg">Download Vernacular</a> (Mac OS X 10.2.3+) | <a href="/software/Vernacular-src.zip">Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zeldisland.com/blog/2003/06/vernacular/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
