<?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"
	>

<channel>
	<title>the pineapple clock</title>
	<atom:link href="http://www.janitor61.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.janitor61.com</link>
	<description>janitorial</description>
	<pubDate>Wed, 02 Sep 2009 20:22:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>TweenLite Easing Reference</title>
		<link>http://www.janitor61.com/?p=24</link>
		<comments>http://www.janitor61.com/?p=24#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:22:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[tweenlite]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=24</guid>
		<description><![CDATA[For anyone that&#8217;s ever use the Fantastic TweenLite / TweenMax classes from Green Sock, I&#8217;ve made a quick reference to all of the easing functions. (PDF, 0.5Mb)

Here&#8217;s the source code for generating this. I&#8217;m sure there&#8217;s a more elegant way and precise. Let me know if you find it!
Flash Source Code (CS4 / AS3)
]]></description>
			<content:encoded><![CDATA[<p>For anyone that&#8217;s ever use the <a href="http://blog.greensock.com/tweenliteas3/">Fantastic TweenLite / TweenMax classes from Green Sock</a>, I&#8217;ve made a quick reference to all of the easing functions. (PDF, 0.5Mb)</p>
<p><a href="http://janitor61.com/easingReference/gs.easing.reference.pdf"><img src="http://janitor61.com/easingReference/gs.easing.reference.png" alt="" /></a></p>
<p>Here&#8217;s the source code for generating this. I&#8217;m sure there&#8217;s a more elegant way and precise. Let me know if you find it!<br />
<a href="http://janitor61.com/easingReference/easingReferenceFlash.zip">Flash Source Code (CS4 / AS3)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
		<item>
		<title>FLASHGEN</title>
		<link>http://www.janitor61.com/?p=22</link>
		<comments>http://www.janitor61.com/?p=22#comments</comments>
		<pubDate>Tue, 07 Apr 2009 21:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=22</guid>
		<description><![CDATA[Just coded up a new tool to create the HTML code for embedding flash in a page. The tool uses different styles of embedding: Default, No JS, swfobject static &#038; swfobject dynamic. 
Try it out and tell me what you think.
]]></description>
			<content:encoded><![CDATA[<p>Just coded up a new tool to create the HTML code for embedding flash in a page. The tool uses different styles of embedding: Default, No JS, swfobject static &#038; swfobject dynamic. </p>
<p>Try it out and tell me what you think.</p>
<p><div class="wp-caption alignnone" style="width: 410px"><a href="http://www.janitor61.com/flashgen"><img alt="flashgen screenshot" src="http://www.janitor61.com/images/flashgen.jpg" title="flashgen screenshot" width="400" height="259" /></a><p class="wp-caption-text">flashgen screenshot</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=22</wfw:commentRss>
		</item>
		<item>
		<title>PHP Date() Cheat Sheet</title>
		<link>http://www.janitor61.com/?p=20</link>
		<comments>http://www.janitor61.com/?p=20#comments</comments>
		<pubDate>Thu, 26 Mar 2009 00:38:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[cheat sheet date PHP]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=20</guid>
		<description><![CDATA[Just finished a cheat sheet for the PHP Date() function. I can never remember any of the identifiers. Hope someone finds it useful!




Click here to download .PDF (250 Kb)

This Cheat Sheet is released under a Creative Commons License (Attribution, Non-Commercial, Share Alike).
]]></description>
			<content:encoded><![CDATA[<p>Just finished a cheat sheet for the PHP Date() function. I can never remember any of the identifiers. Hope someone finds it useful!</p>
<p><a href="http://janitor61.com/date_cheatsheet.pdf"><br />
<img src="http://janitor61.com/date_cheatsheet.jpg" alt="date cheat sheet" /><br />
</a></p>
<p><a href="http://janitor61.com/date_cheatsheet.pdf"><br />
Click here to download .PDF (250 Kb)<br />
</a></p>
<p>This Cheat Sheet is released under a <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/uk/">Creative Commons License</a> (Attribution, Non-Commercial, Share Alike).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>PHP Power Set</title>
		<link>http://www.janitor61.com/?p=17</link>
		<comments>http://www.janitor61.com/?p=17#comments</comments>
		<pubDate>Thu, 22 Jan 2009 18:28:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=17</guid>
		<description><![CDATA[Here is a snippet that shows how to get the power set of an array.

/**
* Takes the power set of a one dimensional array and returns a 2-D array.
* array(a,b,c) -&#62;
* array(array(a),array(b),array(c),array(a,b),array(b,c),array(a,b,c))
*/
function powerSet($in,$minimumNumber = 1) {
   $count = count($in);
   $members = pow(2,$count);
   $return = array();
   for ($i [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a snippet that shows how to get the power set of an array.</p>
<pre>
/**
* Takes the power set of a one dimensional array and returns a 2-D array.
* array(a,b,c) -&gt;
* array(array(a),array(b),array(c),array(a,b),array(b,c),array(a,b,c))
*/
function powerSet($in,$minimumNumber = 1) {
   $count = count($in);
   $members = pow(2,$count);
   $return = array();
   for ($i = 0; $i &lt; $members; $i++) {
      $b = sprintf("%0".$count."b",$i);
      $out = array();
      for ($j = 0; $j &lt; $count; $j++) {
         if ($b{$j} == '1') $out[] = $in[$j];
      }
      if (count($out) &gt;= $minimumNumber) {
         $return[] = $out;
      }
   }
   return $return;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=17</wfw:commentRss>
		</item>
		<item>
		<title>Which browsers load images that have display:none or visibility:hidden?</title>
		<link>http://www.janitor61.com/?p=10</link>
		<comments>http://www.janitor61.com/?p=10#comments</comments>
		<pubDate>Thu, 15 Jan 2009 23:12:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=10</guid>
		<description><![CDATA[Turns out all of them, with the sole exception of Opera 9, and only for display:none. It looks like Opera is the only browser that cares about the speed of the browsing experience.
browsers tested: IE 7, IE 6, FF 3.0, Safari, Chrome and Opera 9.
Test Page:  http://janitor61.com/test/test.html
]]></description>
			<content:encoded><![CDATA[<p>Turns out all of them, with the sole exception of Opera 9, and only for display:none. It looks like Opera is the only browser that cares about the speed of the browsing experience.</p>
<p>browsers tested: IE 7, IE 6, FF 3.0, Safari, Chrome and Opera 9.</p>
<p>Test Page:  http://janitor61.com/test/test.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>openallbrowsers.bat</title>
		<link>http://www.janitor61.com/?p=8</link>
		<comments>http://www.janitor61.com/?p=8#comments</comments>
		<pubDate>Thu, 08 Jan 2009 01:53:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[batch]]></category>

		<category><![CDATA[automation]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=8</guid>
		<description><![CDATA[Here&#8217;s a Windows Batch file that will let you open a specific web page in all browsers. Look through it and comment out the browsers you don&#8217;t have installed.
 @echo off
echo ---------------------------
echo -- Open in all browsers  --
echo ---------------------------
:enter
echo Enter the URL:
set /p answer=URL:
echo Use "%answer%"?
set /p use=[Y/N]:
if /i "%use:~,1%" EQU "N" goto enter
REM == [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a Windows Batch file that will let you open a specific web page in all browsers. Look through it and comment out the browsers you don&#8217;t have installed.</p>
<pre> @echo off
echo ---------------------------
echo -- Open in all browsers  --
echo ---------------------------
:enter
echo Enter the URL:
set /p answer=URL:
echo Use "%answer%"?
set /p use=[Y/N]:
if /i "%use:~,1%" EQU "N" goto enter
REM == Opera ==
start "" "%programfiles%\Opera\opera.exe" "%answer%"
REM == Firefox ==
start "" "%programfiles%\Mozilla Firefox\firefox.exe" "%answer%"
REM == Safari ==
start "" "%programfiles%\Safari\Safari.exe" "%answer%"
REM == Internet Explorer ==
start "" "%programfiles%\Internet Explorer\iexplore.exe" "%answer%"
REM == MultipleIE (only if you have this installed) ==
start "" "%programfiles%\MultipleIEs\IE6\iexplore.exe" "%answer%"
REM == Chrome ==
start "" "%USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" "%answer%"</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>What the SWF</title>
		<link>http://www.janitor61.com/?p=6</link>
		<comments>http://www.janitor61.com/?p=6#comments</comments>
		<pubDate>Thu, 27 Nov 2008 03:11:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.janitor61.com/?p=6</guid>
		<description><![CDATA[New SWF Properties application - What the SWF.
]]></description>
			<content:encoded><![CDATA[<p>New SWF Properties application - <a href="http://www.janitor61.com/?page_id=3">What the SWF</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.janitor61.com/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
	</channel>
</rss>
