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

<channel>
	<title>Boy Plankton . com</title>
	<atom:link href="http://www.boyplankton.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.boyplankton.com</link>
	<description></description>
	<pubDate>Tue, 12 May 2009 03:32:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title></title>
		<link>http://www.boyplankton.com/2009/05/11/143/</link>
		<comments>http://www.boyplankton.com/2009/05/11/143/#comments</comments>
		<pubDate>Tue, 12 May 2009 03:32:45 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Database]]></category>

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

		<guid isPermaLink="false">http://www.boyplankton.com/?p=143</guid>
		<description><![CDATA[I&#8217;ve been trying to write a bunch of scripts that perform some database administration tasks in Groovy.  Groovy offers a several advantages over most of my other options.  It runs practically everywhere.  There are JDBC drivers available for every database that I have to work with.  Most importantly to me though, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to write a bunch of scripts that perform some database administration tasks in <a href="http://groovy.codehaus.org/">Groovy</a>.  Groovy offers a several advantages over most of my other options.  It runs practically everywhere.  There are JDBC drivers available for every database that I have to work with.  Most importantly to me though, SQL programming in Groovy is really simple.</p>
<p>At first I thought it was a Groovy limitation that was causing my scripts to run out of heap space when I ran them against large tables.  It turned out to be the <a href="http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-implementation-notes.html">default behavior of the MySQL JDBC driver</a> though.</p>
<blockquote><p>By default, <strong>ResultSets are completely retrieved and stored in memory</strong>. In most cases this is the most efficient way to operate, and due to the design of the MySQL network protocol is easier to implement. If you are working with ResultSets that have a large number of rows or large values, and can not allocate heap space in your JVM for the memory required, you can tell the driver to stream the results back one row at a time.</p></blockquote>
<p>The solution is to override three default settings.  The first two override the default settings of the ResultSets that will be returned by the statement.<br />
<code>sql.setResultSetType( java.sql.ResultSet.TYPE_FORWARD_ONLY )<br />
sql.setResultSetConcurrency( java.sql.ResultSet.CONCUR_READ_ONLY )</code></p>
<p>This one adds a closure that gets called every time a statement gets created.<br />
<code>sql.withStatement{ stmt -> stmt.setFetchSize( Integer.MIN_VALUE ) }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2009/05/11/143/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nice try &#8230;</title>
		<link>http://www.boyplankton.com/2007/06/19/nice-try/</link>
		<comments>http://www.boyplankton.com/2007/06/19/nice-try/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 02:23:15 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Television]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/06/19/nice-try/</guid>
		<description><![CDATA[
It&#8217;s a pretty obscure reference to this Family Guy episode:

Which is actually a reference to Mister Mxyzptlk from Superman.
I wonder which three idea balls the writers pulled out to generate that clip.
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/BHnX-fqlo1M"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/BHnX-fqlo1M" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>It&#8217;s a pretty obscure reference to this Family Guy episode:<br />
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/V4ftv17rTRc"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/V4ftv17rTRc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Which is actually a reference to <a href="http://en.wikipedia.org/wiki/Mister_Mxyzptlk">Mister Mxyzptlk</a> from Superman.</p>
<p>I wonder which three idea balls the writers pulled out to generate that clip.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/06/19/nice-try/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Screen</title>
		<link>http://www.boyplankton.com/2007/05/28/screen/</link>
		<comments>http://www.boyplankton.com/2007/05/28/screen/#comments</comments>
		<pubDate>Mon, 28 May 2007 13:47:47 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/28/screen/</guid>
		<description><![CDATA[If I could only take two pieces of software with me onto a deserted island, the first would be Vim, the second would be Screen.  Screen provides two very important features that make my life quite a bit easier.

Persistence.  If the network has an error, or I just happen to click the silly [...]]]></description>
			<content:encoded><![CDATA[<p>If I could only take two pieces of software with me onto a deserted island, the first would be <a href="http://www.vim.org/">Vim</a>, the second would be <a href="http://www.gnu.org/software/screen">Screen</a>.  Screen provides two very important features that make my life quite a bit easier.</p>
<ol>
<li>Persistence.  If the network has an error, or I just happen to click the silly little x on my terminal window, then all I have to do is ssh back into the server and restart screen (screen -r).  It will be like I never left.  This means that I don&#8217;t have to worry about running everything with a nohup, and if I start a job at work I can go home and reconnect (screen -Dr) to my terminal session in order to continue monitoring the job.</li>
<li>Multiple windows.  Ssh into the server, start up screen, start a job in that shell, type &#8216;Ctrl-a c&#8217;, and voila, a new shell in a new window.  Now I can go and adjust the size and position of the windows.  For instance, let&#8217;s say that I need to tail five different log files.  I can start up five windows, resize and position them all on the screen, and then I&#8217;m monitoring all those files in one terminal session.  I can switch back and forth between the windows by typing &#8216;Ctrl-a #&#8217; where # is the number of the window, &#8216;Ctrl-a n&#8217; for next, &#8216;Ctrl-a p&#8217; for previous, or &#8216;Ctrl-a &#8220;&#8216; to get a list of all the windows that you can arrow up or down through.  You can also rename the window you are in by typing &#8216;Ctrl-a A&#8217;.</li>
</ol>
<p>Unfortunately, screen sucks straight out of the box.  I recommend creating a .screenrc with these lines at a minimum:</p>
<div style="background-color:#000040;color:#c0c0c0">
<pre>
startup_message off
shell bash

termcapinfo xterm "ks=E[?1lE:kuE[A:kd=E[B:kl=E[D:kr=E[C:kh=E[5~:kH=E[F"

caption always "%{= bb}%{+b w}%n %h %=%t %c"
hardstatus alwayslastline "%{-b gk}%-w%{+b kg}%50>%n %t%{-b gk}%+w%<"

" screen starts at window 0. These two lines make the first window 1, and
" binds 0 to window 10.
bind c screen 1
bind 0 select 10
</pre>
</div>
<p>After starting screen you should now have two lines at the bottom of your screen.  The first should be blue and have the window number, name, and system time.  The second should be green and have a listing of all the current windows and their names.  I prefer a dark background and these colors work really well on top of black.  You should review the <a href="http://www.linuxmanpages.com/man1/screen.1.php">screen manpage</a> for more things that you can add to those status lines.  One of my favorites is %l which displays the current load on the system.</p>
<p>Another thing that you can do with screen is create custom screenrc files for different situations.  I have several that I use which automatically open certain windows for me.  For instance, if I &#8220;cp .screenrc .mysqlscreenrc&#8221; and then add the following lines to the bottom of .mysqlscreenrc:</p>
<div style="background-color:#000040;color:#c0c0c0">
<pre>
screen -t "database 1"   1 mysql -h hostname -u username -ppassword data1
screen -t "database 2"   2 mysql -h hostname -u username -ppassword data2
screen -t "localhost"    3 bash
</pre>
</div>
<p>Then, add this alias &#8220;alias mysqlscreen=&#8217;screen -S mysql -c ~/.mysqlscreenrc&#8217;&#8221;.  Now all you have to do is type mysqlscreen when you log in, and it will automatically open three windows for you.  Two of them will open up mysql monitor sessions, and the third will open up a shell.  The -S part of the screen command names the screen session.  That way if you become disconnected then a &#8217;screen -ls&#8217; will be more meaningful, and it will be easier to know which session is which when you do your &#8217;screen -r&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/28/screen/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Essential .vimrc</title>
		<link>http://www.boyplankton.com/2007/05/27/essential-vimrc/</link>
		<comments>http://www.boyplankton.com/2007/05/27/essential-vimrc/#comments</comments>
		<pubDate>Sun, 27 May 2007 23:25:49 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/27/essential-vimrc/</guid>
		<description><![CDATA[These two lines will create and display a custom status line.  The status line will include the name of the file, the ascii and hex values for the character under the cursor, and the location of the cursor.


set statusline=%F%m%r%h%w\ ASC=[\%03.3b]\ HEX=[\\x\%02.2B]\ %l,%v\ %p%%
set laststatus=2


]]></description>
			<content:encoded><![CDATA[<p>These two lines will create and display a custom status line.  The status line will include the name of the file, the ascii and hex values for the character under the cursor, and the location of the cursor.</p>
<div style="background-color:#000040;color:#c0c0c0">
<pre>
<font color="#ffff60">set</font> <font color="#ff80ff">statusline</font>=%F%m%r%h%w\ ASC=[\%03.3b]\ HEX=[\\x\%02.2B]\ %l<font color="#ffff60">,</font>%v\ %p%%
<font color="#ffff60">set</font> <font color="#ff80ff">laststatus</font>=2
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/27/essential-vimrc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ouch &#8230;</title>
		<link>http://www.boyplankton.com/2007/05/23/ouch/</link>
		<comments>http://www.boyplankton.com/2007/05/23/ouch/#comments</comments>
		<pubDate>Thu, 24 May 2007 02:42:22 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Tangent]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/23/ouch/</guid>
		<description><![CDATA[
From the &#8220;that&#8217;s got to hurt&#8221; file.
]]></description>
			<content:encoded><![CDATA[<div align="center"><a href='http://www.boyplankton.com/wp-content/uploads/2007/05/tanchikii07.jpg' title='Tank Fell Down'><img src='http://www.boyplankton.com/wp-content/uploads/2007/05/tanchikii07.thumbnail.jpg' alt='Tank Fell Down' /></a><br />
From the &#8220;that&#8217;s got to hurt&#8221; <a href="http://amazing-filtered.blogspot.com/2007/05/tanks-are-not-afraid-of-dirt.html">file</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/23/ouch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>2 Years</title>
		<link>http://www.boyplankton.com/2007/05/21/2-years/</link>
		<comments>http://www.boyplankton.com/2007/05/21/2-years/#comments</comments>
		<pubDate>Tue, 22 May 2007 00:32:03 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/21/2-years/</guid>
		<description><![CDATA[One of my servers at work hit a milestone last night:
4:32pm  up 730 days, 22:25,  231 users,  load average: 0.60, 0.63, 0.69
Update: Stupid Murphy and his stupid laws.  Just spent an hour working on two other machines.  Only solution appeared to be rebooting both machines.
]]></description>
			<content:encoded><![CDATA[<p>One of my servers at work hit a milestone last night:<br />
<blockquote>4:32pm  up 730 days, 22:25,  231 users,  load average: 0.60, 0.63, 0.69</p></blockquote>
<p>Update: Stupid Murphy and his stupid laws.  Just spent an hour working on two other machines.  Only solution appeared to be rebooting both machines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/21/2-years/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Something stupid this way comes.</title>
		<link>http://www.boyplankton.com/2007/05/20/something-stupid-this-way-comes/</link>
		<comments>http://www.boyplankton.com/2007/05/20/something-stupid-this-way-comes/#comments</comments>
		<pubDate>Mon, 21 May 2007 02:12:47 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Tangent]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/20/something-stupid-this-way-comes/</guid>
		<description><![CDATA[Inspired by this comic.

00:01 = 1
00:02 = 2
00:03 = 3
00:04 = 2
00:05 = 5
00:06 = 2 x 3
00:07 = 7
00:08 = 2
00:09 = 3
00:10 = 2 x 5
00:11 = 11
00:12 = 2 x 3
00:13 = 13
00:14 = 2 x 7
00:15 = 3 x 5
00:16 = 2
00:17 = 17
00:18 = 2 x 3
00:19 = 19
00:20 = [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a href="http://xkcd.com/c247.html">this comic</a>.<br />
<span id="more-133"></span><br />
00:01 = 1<br />
00:02 = 2<br />
00:03 = 3<br />
00:04 = 2<br />
00:05 = 5<br />
00:06 = 2 x 3<br />
00:07 = 7<br />
00:08 = 2<br />
00:09 = 3<br />
00:10 = 2 x 5<br />
00:11 = 11<br />
00:12 = 2 x 3<br />
00:13 = 13<br />
00:14 = 2 x 7<br />
00:15 = 3 x 5<br />
00:16 = 2<br />
00:17 = 17<br />
00:18 = 2 x 3<br />
00:19 = 19<br />
00:20 = 2 x 5<br />
00:21 = 3 x 7<br />
00:22 = 2 x 11<br />
00:23 = 23<br />
00:24 = 2 x 3<br />
00:25 = 5<br />
00:26 = 2 x 13<br />
00:27 = 3<br />
00:28 = 2 x 7<br />
00:29 = 29<br />
00:30 = 2 x 3 x 5<br />
00:31 = 31<br />
00:32 = 2<br />
00:33 = 3 x 11<br />
00:34 = 2 x 17<br />
00:35 = 5 x 7<br />
00:36 = 2 x 3<br />
00:37 = 37<br />
00:38 = 2 x 19<br />
00:39 = 3 x 13<br />
00:40 = 2 x 5<br />
00:41 = 41<br />
00:42 = 2 x 3 x 7<br />
00:43 = 43<br />
00:44 = 2 x 11<br />
00:45 = 3 x 5<br />
00:46 = 2 x 23<br />
00:47 = 47<br />
00:48 = 2 x 3<br />
00:49 = 7<br />
00:50 = 2 x 5<br />
00:51 = 3 x 17<br />
00:52 = 2 x 13<br />
00:53 = 53<br />
00:54 = 2 x 3<br />
00:55 = 5 x 11<br />
00:56 = 2 x 7<br />
00:57 = 3 x 19<br />
00:58 = 2 x 29<br />
00:59 = 59<br />
01:00 = 2 x 5<br />
01:01 = 101<br />
01:02 = 2 x 3 x 17<br />
01:03 = 103<br />
01:04 = 2 x 13<br />
01:05 = 3 x 5 x 7<br />
01:06 = 2 x 53<br />
01:07 = 107<br />
01:08 = 2 x 3<br />
01:09 = 109<br />
01:10 = 2 x 5 x 11<br />
01:11 = 3 x 37<br />
01:12 = 2 x 7<br />
01:13 = 113<br />
01:14 = 2 x 3 x 19<br />
01:15 = 5 x 23<br />
01:16 = 2 x 29<br />
01:17 = 3 x 13<br />
01:18 = 2 x 59<br />
01:19 = 7 x 17<br />
01:20 = 2 x 3 x 5<br />
01:21 = 11<br />
01:22 = 2 x 61<br />
01:23 = 3 x 41<br />
01:24 = 2 x 31<br />
01:25 = 5<br />
01:26 = 2 x 3 x 7<br />
01:27 = 127<br />
01:28 = 2<br />
01:29 = 3 x 43<br />
01:30 = 2 x 5 x 13<br />
01:31 = 131<br />
01:32 = 2 x 3 x 11<br />
01:33 = 7 x 19<br />
01:34 = 2 x 67<br />
01:35 = 3 x 5<br />
01:36 = 2 x 17<br />
01:37 = 137<br />
01:38 = 2 x 3 x 23<br />
01:39 = 139<br />
01:40 = 2 x 5 x 7<br />
01:41 = 3 x 47<br />
01:42 = 2 x 71<br />
01:43 = 11 x 13<br />
01:44 = 2 x 3<br />
01:45 = 5 x 29<br />
01:46 = 2 x 73<br />
01:47 = 3 x 7<br />
01:48 = 2 x 37<br />
01:49 = 149<br />
01:50 = 2 x 3 x 5<br />
01:51 = 151<br />
01:52 = 2 x 19<br />
01:53 = 3 x 17<br />
01:54 = 2 x 7 x 11<br />
01:55 = 5 x 31<br />
01:56 = 2 x 3 x 13<br />
01:57 = 157<br />
01:58 = 2 x 79<br />
01:59 = 3 x 53<br />
02:00 = 2 x 5<br />
02:01 = 3 x 67<br />
02:02 = 2 x 101<br />
02:03 = 7 x 29<br />
02:04 = 2 x 3 x 17<br />
02:05 = 5 x 41<br />
02:06 = 2 x 103<br />
02:07 = 3 x 23<br />
02:08 = 2 x 13<br />
02:09 = 11 x 19<br />
02:10 = 2 x 3 x 5 x 7<br />
02:11 = 211<br />
02:12 = 2 x 53<br />
02:13 = 3 x 71<br />
02:14 = 2 x 107<br />
02:15 = 5 x 43<br />
02:16 = 2 x 3<br />
02:17 = 7 x 31<br />
02:18 = 2 x 109<br />
02:19 = 3 x 73<br />
02:20 = 2 x 5 x 11<br />
02:21 = 13 x 17<br />
02:22 = 2 x 3 x 37<br />
02:23 = 223<br />
02:24 = 2 x 7<br />
02:25 = 3 x 5<br />
02:26 = 2 x 113<br />
02:27 = 227<br />
02:28 = 2 x 3 x 19<br />
02:29 = 229<br />
02:30 = 2 x 5 x 23<br />
02:31 = 3 x 7 x 11<br />
02:32 = 2 x 29<br />
02:33 = 233<br />
02:34 = 2 x 3 x 13<br />
02:35 = 5 x 47<br />
02:36 = 2 x 59<br />
02:37 = 3 x 79<br />
02:38 = 2 x 7 x 17<br />
02:39 = 239<br />
02:40 = 2 x 3 x 5<br />
02:41 = 241<br />
02:42 = 2 x 11<br />
02:43 = 3<br />
02:44 = 2 x 61<br />
02:45 = 5 x 7<br />
02:46 = 2 x 3 x 41<br />
02:47 = 13 x 19<br />
02:48 = 2 x 31<br />
02:49 = 3 x 83<br />
02:50 = 2 x 5<br />
02:51 = 251<br />
02:52 = 2 x 3 x 7<br />
02:53 = 11 x 23<br />
02:54 = 2 x 127<br />
02:55 = 3 x 5 x 17<br />
02:56 = 2<br />
02:57 = 257<br />
02:58 = 2 x 3 x 43<br />
02:59 = 7 x 37<br />
03:00 = 2 x 3 x 5<br />
03:01 = 7 x 43<br />
03:02 = 2 x 151<br />
03:03 = 3 x 101<br />
03:04 = 2 x 19<br />
03:05 = 5 x 61<br />
03:06 = 2 x 3 x 17<br />
03:07 = 307<br />
03:08 = 2 x 7 x 11<br />
03:09 = 3 x 103<br />
03:10 = 2 x 5 x 31<br />
03:11 = 311<br />
03:12 = 2 x 3 x 13<br />
03:13 = 313<br />
03:14 = 2 x 157<br />
03:15 = 3 x 5 x 7<br />
03:16 = 2 x 79<br />
03:17 = 317<br />
03:18 = 2 x 3 x 53<br />
03:19 = 11 x 29<br />
03:20 = 2 x 5<br />
03:21 = 3 x 107<br />
03:22 = 2 x 7 x 23<br />
03:23 = 17 x 19<br />
03:24 = 2 x 3<br />
03:25 = 5 x 13<br />
03:26 = 2 x 163<br />
03:27 = 3 x 109<br />
03:28 = 2 x 41<br />
03:29 = 7 x 47<br />
03:30 = 2 x 3 x 5 x 11<br />
03:31 = 331<br />
03:32 = 2 x 83<br />
03:33 = 3 x 37<br />
03:34 = 2 x 167<br />
03:35 = 5 x 67<br />
03:36 = 2 x 3 x 7<br />
03:37 = 337<br />
03:38 = 2 x 13<br />
03:39 = 3 x 113<br />
03:40 = 2 x 5 x 17<br />
03:41 = 11 x 31<br />
03:42 = 2 x 3 x 19<br />
03:43 = 7<br />
03:44 = 2 x 43<br />
03:45 = 3 x 5 x 23<br />
03:46 = 2 x 173<br />
03:47 = 347<br />
03:48 = 2 x 3 x 29<br />
03:49 = 349<br />
03:50 = 2 x 5 x 7<br />
03:51 = 3 x 13<br />
03:52 = 2 x 11<br />
03:53 = 353<br />
03:54 = 2 x 3 x 59<br />
03:55 = 5 x 71<br />
03:56 = 2 x 89<br />
03:57 = 3 x 7 x 17<br />
03:58 = 2 x 179<br />
03:59 = 359<br />
04:00 = 2 x 5<br />
04:01 = 401<br />
04:02 = 2 x 3 x 67<br />
04:03 = 13 x 31<br />
04:04 = 2 x 101<br />
04:05 = 3 x 5<br />
04:06 = 2 x 7 x 29<br />
04:07 = 11 x 37<br />
04:08 = 2 x 3 x 17<br />
04:09 = 409<br />
04:10 = 2 x 5 x 41<br />
04:11 = 3 x 137<br />
04:12 = 2 x 103<br />
04:13 = 7 x 59<br />
04:14 = 2 x 3 x 23<br />
04:15 = 5 x 83<br />
04:16 = 2 x 13<br />
04:17 = 3 x 139<br />
04:18 = 2 x 11 x 19<br />
04:19 = 419<br />
04:20 = 2 x 3 x 5 x 7<br />
04:21 = 421<br />
04:22 = 2 x 211<br />
04:23 = 3 x 47<br />
04:24 = 2 x 53<br />
04:25 = 5 x 17<br />
04:26 = 2 x 3 x 71<br />
04:27 = 7 x 61<br />
04:28 = 2 x 107<br />
04:29 = 3 x 11 x 13<br />
04:30 = 2 x 5 x 43<br />
04:31 = 431<br />
04:32 = 2 x 3<br />
04:33 = 433<br />
04:34 = 2 x 7 x 31<br />
04:35 = 3 x 5 x 29<br />
04:36 = 2 x 109<br />
04:37 = 19 x 23<br />
04:38 = 2 x 3 x 73<br />
04:39 = 439<br />
04:40 = 2 x 5 x 11<br />
04:41 = 3 x 7<br />
04:42 = 2 x 13 x 17<br />
04:43 = 443<br />
04:44 = 2 x 3 x 37<br />
04:45 = 5 x 89<br />
04:46 = 2 x 223<br />
04:47 = 3 x 149<br />
04:48 = 2 x 7<br />
04:49 = 449<br />
04:50 = 2 x 3 x 5<br />
04:51 = 11 x 41<br />
04:52 = 2 x 113<br />
04:53 = 3 x 151<br />
04:54 = 2 x 227<br />
04:55 = 5 x 7 x 13<br />
04:56 = 2 x 3 x 19<br />
04:57 = 457<br />
04:58 = 2 x 229<br />
04:59 = 3 x 17<br />
05:00 = 2 x 5<br />
05:01 = 3 x 167<br />
05:02 = 2 x 251<br />
05:03 = 503<br />
05:04 = 2 x 3 x 7<br />
05:05 = 5 x 101<br />
05:06 = 2 x 11 x 23<br />
05:07 = 3 x 13<br />
05:08 = 2 x 127<br />
05:09 = 509<br />
05:10 = 2 x 3 x 5 x 17<br />
05:11 = 7 x 73<br />
05:12 = 2<br />
05:13 = 3 x 19<br />
05:14 = 2 x 257<br />
05:15 = 5 x 103<br />
05:16 = 2 x 3 x 43<br />
05:17 = 11 x 47<br />
05:18 = 2 x 7 x 37<br />
05:19 = 3 x 173<br />
05:20 = 2 x 5 x 13<br />
05:21 = 521<br />
05:22 = 2 x 3 x 29<br />
05:23 = 523<br />
05:24 = 2 x 131<br />
05:25 = 3 x 5 x 7<br />
05:26 = 2 x 263<br />
05:27 = 17 x 31<br />
05:28 = 2 x 3 x 11<br />
05:29 = 23<br />
05:30 = 2 x 5 x 53<br />
05:31 = 3 x 59<br />
05:32 = 2 x 7 x 19<br />
05:33 = 13 x 41<br />
05:34 = 2 x 3 x 89<br />
05:35 = 5 x 107<br />
05:36 = 2 x 67<br />
05:37 = 3 x 179<br />
05:38 = 2 x 269<br />
05:39 = 7 x 11<br />
05:40 = 2 x 3 x 5<br />
05:41 = 541<br />
05:42 = 2 x 271<br />
05:43 = 3 x 181<br />
05:44 = 2 x 17<br />
05:45 = 5 x 109<br />
05:46 = 2 x 3 x 7 x 13<br />
05:47 = 547<br />
05:48 = 2 x 137<br />
05:49 = 3 x 61<br />
05:50 = 2 x 5 x 11<br />
05:51 = 19 x 29<br />
05:52 = 2 x 3 x 23<br />
05:53 = 7 x 79<br />
05:54 = 2 x 277<br />
05:55 = 3 x 5 x 37<br />
05:56 = 2 x 139<br />
05:57 = 557<br />
05:58 = 2 x 3 x 31<br />
05:59 = 13 x 43<br />
06:00 = 2 x 3 x 5<br />
06:01 = 601<br />
06:02 = 2 x 7 x 43<br />
06:03 = 3 x 67<br />
06:04 = 2 x 151<br />
06:05 = 5 x 11<br />
06:06 = 2 x 3 x 101<br />
06:07 = 607<br />
06:08 = 2 x 19<br />
06:09 = 3 x 7 x 29<br />
06:10 = 2 x 5 x 61<br />
06:11 = 13 x 47<br />
06:12 = 2 x 3 x 17<br />
06:13 = 613<br />
06:14 = 2 x 307<br />
06:15 = 3 x 5 x 41<br />
06:16 = 2 x 7 x 11<br />
06:17 = 617<br />
06:18 = 2 x 3 x 103<br />
06:19 = 619<br />
06:20 = 2 x 5 x 31<br />
06:21 = 3 x 23<br />
06:22 = 2 x 311<br />
06:23 = 7 x 89<br />
06:24 = 2 x 3 x 13<br />
06:25 = 5<br />
06:26 = 2 x 313<br />
06:27 = 3 x 11 x 19<br />
06:28 = 2 x 157<br />
06:29 = 17 x 37<br />
06:30 = 2 x 3 x 5 x 7<br />
06:31 = 631<br />
06:32 = 2 x 79<br />
06:33 = 3 x 211<br />
06:34 = 2 x 317<br />
06:35 = 5 x 127<br />
06:36 = 2 x 3 x 53<br />
06:37 = 7 x 13<br />
06:38 = 2 x 11 x 29<br />
06:39 = 3 x 71<br />
06:40 = 2 x 5<br />
06:41 = 641<br />
06:42 = 2 x 3 x 107<br />
06:43 = 643<br />
06:44 = 2 x 7 x 23<br />
06:45 = 3 x 5 x 43<br />
06:46 = 2 x 17 x 19<br />
06:47 = 647<br />
06:48 = 2 x 3<br />
06:49 = 11 x 59<br />
06:50 = 2 x 5 x 13<br />
06:51 = 3 x 7 x 31<br />
06:52 = 2 x 163<br />
06:53 = 653<br />
06:54 = 2 x 3 x 109<br />
06:55 = 5 x 131<br />
06:56 = 2 x 41<br />
06:57 = 3 x 73<br />
06:58 = 2 x 7 x 47<br />
06:59 = 659<br />
07:00 = 2 x 5 x 7<br />
07:01 = 701<br />
07:02 = 2 x 3 x 13<br />
07:03 = 19 x 37<br />
07:04 = 2 x 11<br />
07:05 = 3 x 5 x 47<br />
07:06 = 2 x 353<br />
07:07 = 7 x 101<br />
07:08 = 2 x 3 x 59<br />
07:09 = 709<br />
07:10 = 2 x 5 x 71<br />
07:11 = 3 x 79<br />
07:12 = 2 x 89<br />
07:13 = 23 x 31<br />
07:14 = 2 x 3 x 7 x 17<br />
07:15 = 5 x 11 x 13<br />
07:16 = 2 x 179<br />
07:17 = 3 x 239<br />
07:18 = 2 x 359<br />
07:19 = 719<br />
07:20 = 2 x 3 x 5<br />
07:21 = 7 x 103<br />
07:22 = 2 x 19<br />
07:23 = 3 x 241<br />
07:24 = 2 x 181<br />
07:25 = 5 x 29<br />
07:26 = 2 x 3 x 11<br />
07:27 = 727<br />
07:28 = 2 x 7 x 13<br />
07:29 = 3<br />
07:30 = 2 x 5 x 73<br />
07:31 = 17 x 43<br />
07:32 = 2 x 3 x 61<br />
07:33 = 733<br />
07:34 = 2 x 367<br />
07:35 = 3 x 5 x 7<br />
07:36 = 2 x 23<br />
07:37 = 11 x 67<br />
07:38 = 2 x 3 x 41<br />
07:39 = 739<br />
07:40 = 2 x 5 x 37<br />
07:41 = 3 x 13 x 19<br />
07:42 = 2 x 7 x 53<br />
07:43 = 743<br />
07:44 = 2 x 3 x 31<br />
07:45 = 5 x 149<br />
07:46 = 2 x 373<br />
07:47 = 3 x 83<br />
07:48 = 2 x 11 x 17<br />
07:49 = 7 x 107<br />
07:50 = 2 x 3 x 5<br />
07:51 = 751<br />
07:52 = 2 x 47<br />
07:53 = 3 x 251<br />
07:54 = 2 x 13 x 29<br />
07:55 = 5 x 151<br />
07:56 = 2 x 3 x 7<br />
07:57 = 757<br />
07:58 = 2 x 379<br />
07:59 = 3 x 11 x 23<br />
08:00 = 2 x 5<br />
08:01 = 3 x 89<br />
08:02 = 2 x 401<br />
08:03 = 11 x 73<br />
08:04 = 2 x 3 x 67<br />
08:05 = 5 x 7 x 23<br />
08:06 = 2 x 13 x 31<br />
08:07 = 3 x 269<br />
08:08 = 2 x 101<br />
08:09 = 809<br />
08:10 = 2 x 3 x 5<br />
08:11 = 811<br />
08:12 = 2 x 7 x 29<br />
08:13 = 3 x 271<br />
08:14 = 2 x 11 x 37<br />
08:15 = 5 x 163<br />
08:16 = 2 x 3 x 17<br />
08:17 = 19 x 43<br />
08:18 = 2 x 409<br />
08:19 = 3 x 7 x 13<br />
08:20 = 2 x 5 x 41<br />
08:21 = 821<br />
08:22 = 2 x 3 x 137<br />
08:23 = 823<br />
08:24 = 2 x 103<br />
08:25 = 3 x 5 x 11<br />
08:26 = 2 x 7 x 59<br />
08:27 = 827<br />
08:28 = 2 x 3 x 23<br />
08:29 = 829<br />
08:30 = 2 x 5 x 83<br />
08:31 = 3 x 277<br />
08:32 = 2 x 13<br />
08:33 = 7 x 17<br />
08:34 = 2 x 3 x 139<br />
08:35 = 5 x 167<br />
08:36 = 2 x 11 x 19<br />
08:37 = 3 x 31<br />
08:38 = 2 x 419<br />
08:39 = 839<br />
08:40 = 2 x 3 x 5 x 7<br />
08:41 = 29<br />
08:42 = 2 x 421<br />
08:43 = 3 x 281<br />
08:44 = 2 x 211<br />
08:45 = 5 x 13<br />
08:46 = 2 x 3 x 47<br />
08:47 = 7 x 11<br />
08:48 = 2 x 53<br />
08:49 = 3 x 283<br />
08:50 = 2 x 5 x 17<br />
08:51 = 23 x 37<br />
08:52 = 2 x 3 x 71<br />
08:53 = 853<br />
08:54 = 2 x 7 x 61<br />
08:55 = 3 x 5 x 19<br />
08:56 = 2 x 107<br />
08:57 = 857<br />
08:58 = 2 x 3 x 11 x 13<br />
08:59 = 859<br />
09:00 = 2 x 3 x 5<br />
09:01 = 17 x 53<br />
09:02 = 2 x 11 x 41<br />
09:03 = 3 x 7 x 43<br />
09:04 = 2 x 113<br />
09:05 = 5 x 181<br />
09:06 = 2 x 3 x 151<br />
09:07 = 907<br />
09:08 = 2 x 227<br />
09:09 = 3 x 101<br />
09:10 = 2 x 5 x 7 x 13<br />
09:11 = 911<br />
09:12 = 2 x 3 x 19<br />
09:13 = 11 x 83<br />
09:14 = 2 x 457<br />
09:15 = 3 x 5 x 61<br />
09:16 = 2 x 229<br />
09:17 = 7 x 131<br />
09:18 = 2 x 3 x 17<br />
09:19 = 919<br />
09:20 = 2 x 5 x 23<br />
09:21 = 3 x 307<br />
09:22 = 2 x 461<br />
09:23 = 13 x 71<br />
09:24 = 2 x 3 x 7 x 11<br />
09:25 = 5 x 37<br />
09:26 = 2 x 463<br />
09:27 = 3 x 103<br />
09:28 = 2 x 29<br />
09:29 = 929<br />
09:30 = 2 x 3 x 5 x 31<br />
09:31 = 7 x 19<br />
09:32 = 2 x 233<br />
09:33 = 3 x 311<br />
09:34 = 2 x 467<br />
09:35 = 5 x 11 x 17<br />
09:36 = 2 x 3 x 13<br />
09:37 = 937<br />
09:38 = 2 x 7 x 67<br />
09:39 = 3 x 313<br />
09:40 = 2 x 5 x 47<br />
09:41 = 941<br />
09:42 = 2 x 3 x 157<br />
09:43 = 23 x 41<br />
09:44 = 2 x 59<br />
09:45 = 3 x 5 x 7<br />
09:46 = 2 x 11 x 43<br />
09:47 = 947<br />
09:48 = 2 x 3 x 79<br />
09:49 = 13 x 73<br />
09:50 = 2 x 5 x 19<br />
09:51 = 3 x 317<br />
09:52 = 2 x 7 x 17<br />
09:53 = 953<br />
09:54 = 2 x 3 x 53<br />
09:55 = 5 x 191<br />
09:56 = 2 x 239<br />
09:57 = 3 x 11 x 29<br />
09:58 = 2 x 479<br />
09:59 = 7 x 137<br />
10:00 = 2 x 5<br />
10:01 = 7 x 11 x 13<br />
10:02 = 2 x 3 x 167<br />
10:03 = 17 x 59<br />
10:04 = 2 x 251<br />
10:05 = 3 x 5 x 67<br />
10:06 = 2 x 503<br />
10:07 = 19 x 53<br />
10:08 = 2 x 3 x 7<br />
10:09 = 1009<br />
10:10 = 2 x 5 x 101<br />
10:11 = 3 x 337<br />
10:12 = 2 x 11 x 23<br />
10:13 = 1013<br />
10:14 = 2 x 3 x 13<br />
10:15 = 5 x 7 x 29<br />
10:16 = 2 x 127<br />
10:17 = 3 x 113<br />
10:18 = 2 x 509<br />
10:19 = 1019<br />
10:20 = 2 x 3 x 5 x 17<br />
10:21 = 1021<br />
10:22 = 2 x 7 x 73<br />
10:23 = 3 x 11 x 31<br />
10:24 = 2<br />
10:25 = 5 x 41<br />
10:26 = 2 x 3 x 19<br />
10:27 = 13 x 79<br />
10:28 = 2 x 257<br />
10:29 = 3 x 7<br />
10:30 = 2 x 5 x 103<br />
10:31 = 1031<br />
10:32 = 2 x 3 x 43<br />
10:33 = 1033<br />
10:34 = 2 x 11 x 47<br />
10:35 = 3 x 5 x 23<br />
10:36 = 2 x 7 x 37<br />
10:37 = 17 x 61<br />
10:38 = 2 x 3 x 173<br />
10:39 = 1039<br />
10:40 = 2 x 5 x 13<br />
10:41 = 3 x 347<br />
10:42 = 2 x 521<br />
10:43 = 7 x 149<br />
10:44 = 2 x 3 x 29<br />
10:45 = 5 x 11 x 19<br />
10:46 = 2 x 523<br />
10:47 = 3 x 349<br />
10:48 = 2 x 131<br />
10:49 = 1049<br />
10:50 = 2 x 3 x 5 x 7<br />
10:51 = 1051<br />
10:52 = 2 x 263<br />
10:53 = 3 x 13<br />
10:54 = 2 x 17 x 31<br />
10:55 = 5 x 211<br />
10:56 = 2 x 3 x 11<br />
10:57 = 7 x 151<br />
10:58 = 2 x 23<br />
10:59 = 3 x 353<br />
11:00 = 2 x 5 x 11<br />
11:01 = 3 x 367<br />
11:02 = 2 x 19 x 29<br />
11:03 = 1103<br />
11:04 = 2 x 3 x 23<br />
11:05 = 5 x 13 x 17<br />
11:06 = 2 x 7 x 79<br />
11:07 = 3 x 41<br />
11:08 = 2 x 277<br />
11:09 = 1109<br />
11:10 = 2 x 3 x 5 x 37<br />
11:11 = 11 x 101<br />
11:12 = 2 x 139<br />
11:13 = 3 x 7 x 53<br />
11:14 = 2 x 557<br />
11:15 = 5 x 223<br />
11:16 = 2 x 3 x 31<br />
11:17 = 1117<br />
11:18 = 2 x 13 x 43<br />
11:19 = 3 x 373<br />
11:20 = 2 x 5 x 7<br />
11:21 = 19 x 59<br />
11:22 = 2 x 3 x 11 x 17<br />
11:23 = 1123<br />
11:24 = 2 x 281<br />
11:25 = 3 x 5<br />
11:26 = 2 x 563<br />
11:27 = 7 x 23<br />
11:28 = 2 x 3 x 47<br />
11:29 = 1129<br />
11:30 = 2 x 5 x 113<br />
11:31 = 3 x 13 x 29<br />
11:32 = 2 x 283<br />
11:33 = 11 x 103<br />
11:34 = 2 x 3 x 7<br />
11:35 = 5 x 227<br />
11:36 = 2 x 71<br />
11:37 = 3 x 379<br />
11:38 = 2 x 569<br />
11:39 = 17 x 67<br />
11:40 = 2 x 3 x 5 x 19<br />
11:41 = 7 x 163<br />
11:42 = 2 x 571<br />
11:43 = 3 x 127<br />
11:44 = 2 x 11 x 13<br />
11:45 = 5 x 229<br />
11:46 = 2 x 3 x 191<br />
11:47 = 31 x 37<br />
11:48 = 2 x 7 x 41<br />
11:49 = 3 x 383<br />
11:50 = 2 x 5 x 23<br />
11:51 = 1151<br />
11:52 = 2 x 3<br />
11:53 = 1153<br />
11:54 = 2 x 577<br />
11:55 = 3 x 5 x 7 x 11<br />
11:56 = 2 x 17<br />
11:57 = 13 x 89<br />
11:58 = 2 x 3 x 193<br />
11:59 = 19 x 61<br />
12:00 = 2 x 3 x 5<br />
12:01 = 1201<br />
12:02 = 2 x 601<br />
12:03 = 3 x 401<br />
12:04 = 2 x 7 x 43<br />
12:05 = 5 x 241<br />
12:06 = 2 x 3 x 67<br />
12:07 = 17 x 71<br />
12:08 = 2 x 151<br />
12:09 = 3 x 13 x 31<br />
12:10 = 2 x 5 x 11<br />
12:11 = 7 x 173<br />
12:12 = 2 x 3 x 101<br />
12:13 = 1213<br />
12:14 = 2 x 607<br />
12:15 = 3 x 5<br />
12:16 = 2 x 19<br />
12:17 = 1217<br />
12:18 = 2 x 3 x 7 x 29<br />
12:19 = 23 x 53<br />
12:20 = 2 x 5 x 61<br />
12:21 = 3 x 11 x 37<br />
12:22 = 2 x 13 x 47<br />
12:23 = 1223<br />
12:24 = 2 x 3 x 17<br />
12:25 = 5 x 7<br />
12:26 = 2 x 613<br />
12:27 = 3 x 409<br />
12:28 = 2 x 307<br />
12:29 = 1229<br />
12:30 = 2 x 3 x 5 x 41<br />
12:31 = 1231<br />
12:32 = 2 x 7 x 11<br />
12:33 = 3 x 137<br />
12:34 = 2 x 617<br />
12:35 = 5 x 13 x 19<br />
12:36 = 2 x 3 x 103<br />
12:37 = 1237<br />
12:38 = 2 x 619<br />
12:39 = 3 x 7 x 59<br />
12:40 = 2 x 5 x 31<br />
12:41 = 17 x 73<br />
12:42 = 2 x 3 x 23<br />
12:43 = 11 x 113<br />
12:44 = 2 x 311<br />
12:45 = 3 x 5 x 83<br />
12:46 = 2 x 7 x 89<br />
12:47 = 29 x 43<br />
12:48 = 2 x 3 x 13<br />
12:49 = 1249<br />
12:50 = 2 x 5<br />
12:51 = 3 x 139<br />
12:52 = 2 x 313<br />
12:53 = 7 x 179<br />
12:54 = 2 x 3 x 11 x 19<br />
12:55 = 5 x 251<br />
12:56 = 2 x 157<br />
12:57 = 3 x 419<br />
12:58 = 2 x 17 x 37<br />
12:59 = 1259<br />
13:00 = 2 x 5 x 13<br />
13:01 = 1301<br />
13:02 = 2 x 3 x 7 x 31<br />
13:03 = 1303<br />
13:04 = 2 x 163<br />
13:05 = 3 x 5 x 29<br />
13:06 = 2 x 653<br />
13:07 = 1307<br />
13:08 = 2 x 3 x 109<br />
13:09 = 7 x 11 x 17<br />
13:10 = 2 x 5 x 131<br />
13:11 = 3 x 19 x 23<br />
13:12 = 2 x 41<br />
13:13 = 13 x 101<br />
13:14 = 2 x 3 x 73<br />
13:15 = 5 x 263<br />
13:16 = 2 x 7 x 47<br />
13:17 = 3 x 439<br />
13:18 = 2 x 659<br />
13:19 = 1319<br />
13:20 = 2 x 3 x 5 x 11<br />
13:21 = 1321<br />
13:22 = 2 x 661<br />
13:23 = 3 x 7<br />
13:24 = 2 x 331<br />
13:25 = 5 x 53<br />
13:26 = 2 x 3 x 13 x 17<br />
13:27 = 1327<br />
13:28 = 2 x 83<br />
13:29 = 3 x 443<br />
13:30 = 2 x 5 x 7 x 19<br />
13:31 = 11<br />
13:32 = 2 x 3 x 37<br />
13:33 = 31 x 43<br />
13:34 = 2 x 23 x 29<br />
13:35 = 3 x 5 x 89<br />
13:36 = 2 x 167<br />
13:37 = 7 x 191<br />
13:38 = 2 x 3 x 223<br />
13:39 = 13 x 103<br />
13:40 = 2 x 5 x 67<br />
13:41 = 3 x 149<br />
13:42 = 2 x 11 x 61<br />
13:43 = 17 x 79<br />
13:44 = 2 x 3 x 7<br />
13:45 = 5 x 269<br />
13:46 = 2 x 673<br />
13:47 = 3 x 449<br />
13:48 = 2 x 337<br />
13:49 = 19 x 71<br />
13:50 = 2 x 3 x 5<br />
13:51 = 7 x 193<br />
13:52 = 2 x 13<br />
13:53 = 3 x 11 x 41<br />
13:54 = 2 x 677<br />
13:55 = 5 x 271<br />
13:56 = 2 x 3 x 113<br />
13:57 = 23 x 59<br />
13:58 = 2 x 7 x 97<br />
13:59 = 3 x 151<br />
14:00 = 2 x 5 x 7<br />
14:01 = 3 x 467<br />
14:02 = 2 x 701<br />
14:03 = 23 x 61<br />
14:04 = 2 x 3 x 13<br />
14:05 = 5 x 281<br />
14:06 = 2 x 19 x 37<br />
14:07 = 3 x 7 x 67<br />
14:08 = 2 x 11<br />
14:09 = 1409<br />
14:10 = 2 x 3 x 5 x 47<br />
14:11 = 17 x 83<br />
14:12 = 2 x 353<br />
14:13 = 3 x 157<br />
14:14 = 2 x 7 x 101<br />
14:15 = 5 x 283<br />
14:16 = 2 x 3 x 59<br />
14:17 = 13 x 109<br />
14:18 = 2 x 709<br />
14:19 = 3 x 11 x 43<br />
14:20 = 2 x 5 x 71<br />
14:21 = 7 x 29<br />
14:22 = 2 x 3 x 79<br />
14:23 = 1423<br />
14:24 = 2 x 89<br />
14:25 = 3 x 5 x 19<br />
14:26 = 2 x 23 x 31<br />
14:27 = 1427<br />
14:28 = 2 x 3 x 7 x 17<br />
14:29 = 1429<br />
14:30 = 2 x 5 x 11 x 13<br />
14:31 = 3 x 53<br />
14:32 = 2 x 179<br />
14:33 = 1433<br />
14:34 = 2 x 3 x 239<br />
14:35 = 5 x 7 x 41<br />
14:36 = 2 x 359<br />
14:37 = 3 x 479<br />
14:38 = 2 x 719<br />
14:39 = 1439<br />
14:40 = 2 x 3 x 5<br />
14:41 = 11 x 131<br />
14:42 = 2 x 7 x 103<br />
14:43 = 3 x 13 x 37<br />
14:44 = 2 x 19<br />
14:45 = 5 x 17<br />
14:46 = 2 x 3 x 241<br />
14:47 = 1447<br />
14:48 = 2 x 181<br />
14:49 = 3 x 7 x 23<br />
14:50 = 2 x 5 x 29<br />
14:51 = 1451<br />
14:52 = 2 x 3 x 11<br />
14:53 = 1453<br />
14:54 = 2 x 727<br />
14:55 = 3 x 5 x 97<br />
14:56 = 2 x 7 x 13<br />
14:57 = 31 x 47<br />
14:58 = 2 x 3<br />
14:59 = 1459<br />
15:00 = 2 x 3 x 5<br />
15:01 = 19 x 79<br />
15:02 = 2 x 751<br />
15:03 = 3 x 167<br />
15:04 = 2 x 47<br />
15:05 = 5 x 7 x 43<br />
15:06 = 2 x 3 x 251<br />
15:07 = 11 x 137<br />
15:08 = 2 x 13 x 29<br />
15:09 = 3 x 503<br />
15:10 = 2 x 5 x 151<br />
15:11 = 1511<br />
15:12 = 2 x 3 x 7<br />
15:13 = 17 x 89<br />
15:14 = 2 x 757<br />
15:15 = 3 x 5 x 101<br />
15:16 = 2 x 379<br />
15:17 = 37 x 41<br />
15:18 = 2 x 3 x 11 x 23<br />
15:19 = 7 x 31<br />
15:20 = 2 x 5 x 19<br />
15:21 = 3 x 13<br />
15:22 = 2 x 761<br />
15:23 = 1523<br />
15:24 = 2 x 3 x 127<br />
15:25 = 5 x 61<br />
15:26 = 2 x 7 x 109<br />
15:27 = 3 x 509<br />
15:28 = 2 x 191<br />
15:29 = 11 x 139<br />
15:30 = 2 x 3 x 5 x 17<br />
15:31 = 1531<br />
15:32 = 2 x 383<br />
15:33 = 3 x 7 x 73<br />
15:34 = 2 x 13 x 59<br />
15:35 = 5 x 307<br />
15:36 = 2 x 3<br />
15:37 = 29 x 53<br />
15:38 = 2 x 769<br />
15:39 = 3 x 19<br />
15:40 = 2 x 5 x 7 x 11<br />
15:41 = 23 x 67<br />
15:42 = 2 x 3 x 257<br />
15:43 = 1543<br />
15:44 = 2 x 193<br />
15:45 = 3 x 5 x 103<br />
15:46 = 2 x 773<br />
15:47 = 7 x 13 x 17<br />
15:48 = 2 x 3 x 43<br />
15:49 = 1549<br />
15:50 = 2 x 5 x 31<br />
15:51 = 3 x 11 x 47<br />
15:52 = 2 x 97<br />
15:53 = 1553<br />
15:54 = 2 x 3 x 7 x 37<br />
15:55 = 5 x 311<br />
15:56 = 2 x 389<br />
15:57 = 3 x 173<br />
15:58 = 2 x 19 x 41<br />
15:59 = 1559<br />
16:00 = 2 x 5<br />
16:01 = 1601<br />
16:02 = 2 x 3 x 89<br />
16:03 = 7 x 229<br />
16:04 = 2 x 401<br />
16:05 = 3 x 5 x 107<br />
16:06 = 2 x 11 x 73<br />
16:07 = 1607<br />
16:08 = 2 x 3 x 67<br />
16:09 = 1609<br />
16:10 = 2 x 5 x 7 x 23<br />
16:11 = 3 x 179<br />
16:12 = 2 x 13 x 31<br />
16:13 = 1613<br />
16:14 = 2 x 3 x 269<br />
16:15 = 5 x 17 x 19<br />
16:16 = 2 x 101<br />
16:17 = 3 x 7 x 11<br />
16:18 = 2 x 809<br />
16:19 = 1619<br />
16:20 = 2 x 3 x 5<br />
16:21 = 1621<br />
16:22 = 2 x 811<br />
16:23 = 3 x 541<br />
16:24 = 2 x 7 x 29<br />
16:25 = 5 x 13<br />
16:26 = 2 x 3 x 271<br />
16:27 = 1627<br />
16:28 = 2 x 11 x 37<br />
16:29 = 3 x 181<br />
16:30 = 2 x 5 x 163<br />
16:31 = 7 x 233<br />
16:32 = 2 x 3 x 17<br />
16:33 = 23 x 71<br />
16:34 = 2 x 19 x 43<br />
16:35 = 3 x 5 x 109<br />
16:36 = 2 x 409<br />
16:37 = 1637<br />
16:38 = 2 x 3 x 7 x 13<br />
16:39 = 11 x 149<br />
16:40 = 2 x 5 x 41<br />
16:41 = 3 x 547<br />
16:42 = 2 x 821<br />
16:43 = 31 x 53<br />
16:44 = 2 x 3 x 137<br />
16:45 = 5 x 7 x 47<br />
16:46 = 2 x 823<br />
16:47 = 3 x 61<br />
16:48 = 2 x 103<br />
16:49 = 17 x 97<br />
16:50 = 2 x 3 x 5 x 11<br />
16:51 = 13 x 127<br />
16:52 = 2 x 7 x 59<br />
16:53 = 3 x 19 x 29<br />
16:54 = 2 x 827<br />
16:55 = 5 x 331<br />
16:56 = 2 x 3 x 23<br />
16:57 = 1657<br />
16:58 = 2 x 829<br />
16:59 = 3 x 7 x 79<br />
17:00 = 2 x 5 x 17<br />
17:01 = 3 x 7<br />
17:02 = 2 x 23 x 37<br />
17:03 = 13 x 131<br />
17:04 = 2 x 3 x 71<br />
17:05 = 5 x 11 x 31<br />
17:06 = 2 x 853<br />
17:07 = 3 x 569<br />
17:08 = 2 x 7 x 61<br />
17:09 = 1709<br />
17:10 = 2 x 3 x 5 x 19<br />
17:11 = 29 x 59<br />
17:12 = 2 x 107<br />
17:13 = 3 x 571<br />
17:14 = 2 x 857<br />
17:15 = 5 x 7<br />
17:16 = 2 x 3 x 11 x 13<br />
17:17 = 17 x 101<br />
17:18 = 2 x 859<br />
17:19 = 3 x 191<br />
17:20 = 2 x 5 x 43<br />
17:21 = 1721<br />
17:22 = 2 x 3 x 7 x 41<br />
17:23 = 1723<br />
17:24 = 2 x 431<br />
17:25 = 3 x 5 x 23<br />
17:26 = 2 x 863<br />
17:27 = 11 x 157<br />
17:28 = 2 x 3<br />
17:29 = 7 x 13 x 19<br />
17:30 = 2 x 5 x 173<br />
17:31 = 3 x 577<br />
17:32 = 2 x 433<br />
17:33 = 1733<br />
17:34 = 2 x 3 x 17<br />
17:35 = 5 x 347<br />
17:36 = 2 x 7 x 31<br />
17:37 = 3 x 193<br />
17:38 = 2 x 11 x 79<br />
17:39 = 37 x 47<br />
17:40 = 2 x 3 x 5 x 29<br />
17:41 = 1741<br />
17:42 = 2 x 13 x 67<br />
17:43 = 3 x 7 x 83<br />
17:44 = 2 x 109<br />
17:45 = 5 x 349<br />
17:46 = 2 x 3 x 97<br />
17:47 = 1747<br />
17:48 = 2 x 19 x 23<br />
17:49 = 3 x 11 x 53<br />
17:50 = 2 x 5 x 7<br />
17:51 = 17 x 103<br />
17:52 = 2 x 3 x 73<br />
17:53 = 1753<br />
17:54 = 2 x 877<br />
17:55 = 3 x 5 x 13<br />
17:56 = 2 x 439<br />
17:57 = 7 x 251<br />
17:58 = 2 x 3 x 293<br />
17:59 = 1759<br />
18:00 = 2 x 3 x 5<br />
18:01 = 1801<br />
18:02 = 2 x 17 x 53<br />
18:03 = 3 x 601<br />
18:04 = 2 x 11 x 41<br />
18:05 = 5 x 19<br />
18:06 = 2 x 3 x 7 x 43<br />
18:07 = 13 x 139<br />
18:08 = 2 x 113<br />
18:09 = 3 x 67<br />
18:10 = 2 x 5 x 181<br />
18:11 = 1811<br />
18:12 = 2 x 3 x 151<br />
18:13 = 7 x 37<br />
18:14 = 2 x 907<br />
18:15 = 3 x 5 x 11<br />
18:16 = 2 x 227<br />
18:17 = 23 x 79<br />
18:18 = 2 x 3 x 101<br />
18:19 = 17 x 107<br />
18:20 = 2 x 5 x 7 x 13<br />
18:21 = 3 x 607<br />
18:22 = 2 x 911<br />
18:23 = 1823<br />
18:24 = 2 x 3 x 19<br />
18:25 = 5 x 73<br />
18:26 = 2 x 11 x 83<br />
18:27 = 3 x 7 x 29<br />
18:28 = 2 x 457<br />
18:29 = 31 x 59<br />
18:30 = 2 x 3 x 5 x 61<br />
18:31 = 1831<br />
18:32 = 2 x 229<br />
18:33 = 3 x 13 x 47<br />
18:34 = 2 x 7 x 131<br />
18:35 = 5 x 367<br />
18:36 = 2 x 3 x 17<br />
18:37 = 11 x 167<br />
18:38 = 2 x 919<br />
18:39 = 3 x 613<br />
18:40 = 2 x 5 x 23<br />
18:41 = 7 x 263<br />
18:42 = 2 x 3 x 307<br />
18:43 = 19 x 97<br />
18:44 = 2 x 461<br />
18:45 = 3 x 5 x 41<br />
18:46 = 2 x 13 x 71<br />
18:47 = 1847<br />
18:48 = 2 x 3 x 7 x 11<br />
18:49 = 43<br />
18:50 = 2 x 5 x 37<br />
18:51 = 3 x 617<br />
18:52 = 2 x 463<br />
18:53 = 17 x 109<br />
18:54 = 2 x 3 x 103<br />
18:55 = 5 x 7 x 53<br />
18:56 = 2 x 29<br />
18:57 = 3 x 619<br />
18:58 = 2 x 929<br />
18:59 = 11 x 13<br />
19:00 = 2 x 5 x 19<br />
19:01 = 1901<br />
19:02 = 2 x 3 x 317<br />
19:03 = 11 x 173<br />
19:04 = 2 x 7 x 17<br />
19:05 = 3 x 5 x 127<br />
19:06 = 2 x 953<br />
19:07 = 1907<br />
19:08 = 2 x 3 x 53<br />
19:09 = 23 x 83<br />
19:10 = 2 x 5 x 191<br />
19:11 = 3 x 7 x 13<br />
19:12 = 2 x 239<br />
19:13 = 1913<br />
19:14 = 2 x 3 x 11 x 29<br />
19:15 = 5 x 383<br />
19:16 = 2 x 479<br />
19:17 = 3 x 71<br />
19:18 = 2 x 7 x 137<br />
19:19 = 19 x 101<br />
19:20 = 2 x 3 x 5<br />
19:21 = 17 x 113<br />
19:22 = 2 x 31<br />
19:23 = 3 x 641<br />
19:24 = 2 x 13 x 37<br />
19:25 = 5 x 7 x 11<br />
19:26 = 2 x 3 x 107<br />
19:27 = 41 x 47<br />
19:28 = 2 x 241<br />
19:29 = 3 x 643<br />
19:30 = 2 x 5 x 193<br />
19:31 = 1931<br />
19:32 = 2 x 3 x 7 x 23<br />
19:33 = 1933<br />
19:34 = 2 x 967<br />
19:35 = 3 x 5 x 43<br />
19:36 = 2 x 11<br />
19:37 = 13 x 149<br />
19:38 = 2 x 3 x 17 x 19<br />
19:39 = 7 x 277<br />
19:40 = 2 x 5 x 97<br />
19:41 = 3 x 647<br />
19:42 = 2 x 971<br />
19:43 = 29 x 67<br />
19:44 = 2 x 3<br />
19:45 = 5 x 389<br />
19:46 = 2 x 7 x 139<br />
19:47 = 3 x 11 x 59<br />
19:48 = 2 x 487<br />
19:49 = 1949<br />
19:50 = 2 x 3 x 5 x 13<br />
19:51 = 1951<br />
19:52 = 2 x 61<br />
19:53 = 3 x 7 x 31<br />
19:54 = 2 x 977<br />
19:55 = 5 x 17 x 23<br />
19:56 = 2 x 3 x 163<br />
19:57 = 19 x 103<br />
19:58 = 2 x 11 x 89<br />
19:59 = 3 x 653<br />
20:00 = 2 x 5<br />
20:01 = 3 x 23 x 29<br />
20:02 = 2 x 7 x 11 x 13<br />
20:03 = 2003<br />
20:04 = 2 x 3 x 167<br />
20:05 = 5 x 401<br />
20:06 = 2 x 17 x 59<br />
20:07 = 3 x 223<br />
20:08 = 2 x 251<br />
20:09 = 7 x 41<br />
20:10 = 2 x 3 x 5 x 67<br />
20:11 = 2011<br />
20:12 = 2 x 503<br />
20:13 = 3 x 11 x 61<br />
20:14 = 2 x 19 x 53<br />
20:15 = 5 x 13 x 31<br />
20:16 = 2 x 3 x 7<br />
20:17 = 2017<br />
20:18 = 2 x 1009<br />
20:19 = 3 x 673<br />
20:20 = 2 x 5 x 101<br />
20:21 = 43 x 47<br />
20:22 = 2 x 3 x 337<br />
20:23 = 7 x 17<br />
20:24 = 2 x 11 x 23<br />
20:25 = 3 x 5<br />
20:26 = 2 x 1013<br />
20:27 = 2027<br />
20:28 = 2 x 3 x 13<br />
20:29 = 2029<br />
20:30 = 2 x 5 x 7 x 29<br />
20:31 = 3 x 677<br />
20:32 = 2 x 127<br />
20:33 = 19 x 107<br />
20:34 = 2 x 3 x 113<br />
20:35 = 5 x 11 x 37<br />
20:36 = 2 x 509<br />
20:37 = 3 x 7 x 97<br />
20:38 = 2 x 1019<br />
20:39 = 2039<br />
20:40 = 2 x 3 x 5 x 17<br />
20:41 = 13 x 157<br />
20:42 = 2 x 1021<br />
20:43 = 3 x 227<br />
20:44 = 2 x 7 x 73<br />
20:45 = 5 x 409<br />
20:46 = 2 x 3 x 11 x 31<br />
20:47 = 23 x 89<br />
20:48 = 2<br />
20:49 = 3 x 683<br />
20:50 = 2 x 5 x 41<br />
20:51 = 7 x 293<br />
20:52 = 2 x 3 x 19<br />
20:53 = 2053<br />
20:54 = 2 x 13 x 79<br />
20:55 = 3 x 5 x 137<br />
20:56 = 2 x 257<br />
20:57 = 11 x 17<br />
20:58 = 2 x 3 x 7<br />
20:59 = 29 x 71<br />
21:00 = 2 x 3 x 5 x 7<br />
21:01 = 11 x 191<br />
21:02 = 2 x 1051<br />
21:03 = 3 x 701<br />
21:04 = 2 x 263<br />
21:05 = 5 x 421<br />
21:06 = 2 x 3 x 13<br />
21:07 = 7 x 43<br />
21:08 = 2 x 17 x 31<br />
21:09 = 3 x 19 x 37<br />
21:10 = 2 x 5 x 211<br />
21:11 = 2111<br />
21:12 = 2 x 3 x 11<br />
21:13 = 2113<br />
21:14 = 2 x 7 x 151<br />
21:15 = 3 x 5 x 47<br />
21:16 = 2 x 23<br />
21:17 = 29 x 73<br />
21:18 = 2 x 3 x 353<br />
21:19 = 13 x 163<br />
21:20 = 2 x 5 x 53<br />
21:21 = 3 x 7 x 101<br />
21:22 = 2 x 1061<br />
21:23 = 11 x 193<br />
21:24 = 2 x 3 x 59<br />
21:25 = 5 x 17<br />
21:26 = 2 x 1063<br />
21:27 = 3 x 709<br />
21:28 = 2 x 7 x 19<br />
21:29 = 2129<br />
21:30 = 2 x 3 x 5 x 71<br />
21:31 = 2131<br />
21:32 = 2 x 13 x 41<br />
21:33 = 3 x 79<br />
21:34 = 2 x 11 x 97<br />
21:35 = 5 x 7 x 61<br />
21:36 = 2 x 3 x 89<br />
21:37 = 2137<br />
21:38 = 2 x 1069<br />
21:39 = 3 x 23 x 31<br />
21:40 = 2 x 5 x 107<br />
21:41 = 2141<br />
21:42 = 2 x 3 x 7 x 17<br />
21:43 = 2143<br />
21:44 = 2 x 67<br />
21:45 = 3 x 5 x 11 x 13<br />
21:46 = 2 x 29 x 37<br />
21:47 = 19 x 113<br />
21:48 = 2 x 3 x 179<br />
21:49 = 7 x 307<br />
21:50 = 2 x 5 x 43<br />
21:51 = 3 x 239<br />
21:52 = 2 x 269<br />
21:53 = 2153<br />
21:54 = 2 x 3 x 359<br />
21:55 = 5 x 431<br />
21:56 = 2 x 7 x 11<br />
21:57 = 3 x 719<br />
21:58 = 2 x 13 x 83<br />
21:59 = 17 x 127<br />
22:00 = 2 x 5 x 11<br />
22:01 = 31 x 71<br />
22:02 = 2 x 3 x 367<br />
22:03 = 2203<br />
22:04 = 2 x 19 x 29<br />
22:05 = 3 x 5 x 7<br />
22:06 = 2 x 1103<br />
22:07 = 2207<br />
22:08 = 2 x 3 x 23<br />
22:09 = 47<br />
22:10 = 2 x 5 x 13 x 17<br />
22:11 = 3 x 11 x 67<br />
22:12 = 2 x 7 x 79<br />
22:13 = 2213<br />
22:14 = 2 x 3 x 41<br />
22:15 = 5 x 443<br />
22:16 = 2 x 277<br />
22:17 = 3 x 739<br />
22:18 = 2 x 1109<br />
22:19 = 7 x 317<br />
22:20 = 2 x 3 x 5 x 37<br />
22:21 = 2221<br />
22:22 = 2 x 11 x 101<br />
22:23 = 3 x 13 x 19<br />
22:24 = 2 x 139<br />
22:25 = 5 x 89<br />
22:26 = 2 x 3 x 7 x 53<br />
22:27 = 17 x 131<br />
22:28 = 2 x 557<br />
22:29 = 3 x 743<br />
22:30 = 2 x 5 x 223<br />
22:31 = 23 x 97<br />
22:32 = 2 x 3 x 31<br />
22:33 = 7 x 11 x 29<br />
22:34 = 2 x 1117<br />
22:35 = 3 x 5 x 149<br />
22:36 = 2 x 13 x 43<br />
22:37 = 2237<br />
22:38 = 2 x 3 x 373<br />
22:39 = 2239<br />
22:40 = 2 x 5 x 7<br />
22:41 = 3 x 83<br />
22:42 = 2 x 19 x 59<br />
22:43 = 2243<br />
22:44 = 2 x 3 x 11 x 17<br />
22:45 = 5 x 449<br />
22:46 = 2 x 1123<br />
22:47 = 3 x 7 x 107<br />
22:48 = 2 x 281<br />
22:49 = 13 x 173<br />
22:50 = 2 x 3 x 5<br />
22:51 = 2251<br />
22:52 = 2 x 563<br />
22:53 = 3 x 751<br />
22:54 = 2 x 7 x 23<br />
22:55 = 5 x 11 x 41<br />
22:56 = 2 x 3 x 47<br />
22:57 = 37 x 61<br />
22:58 = 2 x 1129<br />
22:59 = 3 x 251<br />
23:00 = 2 x 5 x 23<br />
23:01 = 3 x 13 x 59<br />
23:02 = 2 x 1151<br />
23:03 = 7 x 47<br />
23:04 = 2 x 3<br />
23:05 = 5 x 461<br />
23:06 = 2 x 1153<br />
23:07 = 3 x 769<br />
23:08 = 2 x 577<br />
23:09 = 2309<br />
23:10 = 2 x 3 x 5 x 7 x 11<br />
23:11 = 2311<br />
23:12 = 2 x 17<br />
23:13 = 3 x 257<br />
23:14 = 2 x 13 x 89<br />
23:15 = 5 x 463<br />
23:16 = 2 x 3 x 193<br />
23:17 = 7 x 331<br />
23:18 = 2 x 19 x 61<br />
23:19 = 3 x 773<br />
23:20 = 2 x 5 x 29<br />
23:21 = 11 x 211<br />
23:22 = 2 x 3 x 43<br />
23:23 = 23 x 101<br />
23:24 = 2 x 7 x 83<br />
23:25 = 3 x 5 x 31<br />
23:26 = 2 x 1163<br />
23:27 = 13 x 179<br />
23:28 = 2 x 3 x 97<br />
23:29 = 17 x 137<br />
23:30 = 2 x 5 x 233<br />
23:31 = 3 x 7 x 37<br />
23:32 = 2 x 11 x 53<br />
23:33 = 2333<br />
23:34 = 2 x 3 x 389<br />
23:35 = 5 x 467<br />
23:36 = 2 x 73<br />
23:37 = 3 x 19 x 41<br />
23:38 = 2 x 7 x 167<br />
23:39 = 2339<br />
23:40 = 2 x 3 x 5 x 13<br />
23:41 = 2341<br />
23:42 = 2 x 1171<br />
23:43 = 3 x 11 x 71<br />
23:44 = 2 x 293<br />
23:45 = 5 x 7 x 67<br />
23:46 = 2 x 3 x 17 x 23<br />
23:47 = 2347<br />
23:48 = 2 x 587<br />
23:49 = 3 x 29<br />
23:50 = 2 x 5 x 47<br />
23:51 = 2351<br />
23:52 = 2 x 3 x 7<br />
23:53 = 13 x 181<br />
23:54 = 2 x 11 x 107<br />
23:55 = 3 x 5 x 157<br />
23:56 = 2 x 19 x 31<br />
23:57 = 2357<br />
23:58 = 2 x 3 x 131<br />
23:59 = 7 x 337</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/20/something-stupid-this-way-comes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nochnoy dozor</title>
		<link>http://www.boyplankton.com/2007/05/13/nochnoy-dozor/</link>
		<comments>http://www.boyplankton.com/2007/05/13/nochnoy-dozor/#comments</comments>
		<pubDate>Sun, 13 May 2007 19:49:26 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/13/nochnoy-dozor/</guid>
		<description><![CDATA[A couple of weeks ago they showed this trailer during an episode of Attack of the Show:

The movie is called Dnevnoy dozor, Day Watch in English.  It&#8217;s the second film adapted from a series of Russian novels, and isn&#8217;t available here in the U.S. yet.  However, the first movie Nochnoy dozor, Night Watch, [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago they showed this trailer during an episode of <a href="http://www.g4tv.com/attackoftheshow/index.html">Attack of the Show</a>:
<div align="center"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/eOesGgsjFY8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/eOesGgsjFY8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></div>
<p>The movie is called <a href="http://www.imdb.com/title/tt0409904/">Dnevnoy dozor</a>, Day Watch in English.  It&#8217;s the second film adapted from a series of Russian novels, and isn&#8217;t available here in the U.S. yet.  However, the first movie <a href="http://www.imdb.com/title/tt0403358/">Nochnoy dozor</a>, Night Watch, is.  After a couple of weeks of trying, the first time it arrived in the mail the disk was cracked all the way through, I finally got to watch it this weekend.</p>
<p>Without giving away any spoilers, the story is basically about a group of people with superhuman abilities called Others who have to decide whether they are going to be on the side of light, or on the side of dark.  This all revolves around an ancient truce.  Each side has their own sort of police force that monitors to ensure that the truce is being kept.  The Night Watch patrols for the light side, and the Day Watch works for the dark.  The interesting part of the story is that even though the Others have segregated themselves into two unique sides, it&#8217;s not cut and dried that one represents good and the other represents evil.</p>
<p>Night Watch is a pretty good film, especially considering it&#8217;s foreign origins.  Day Watch is supposed to be released in the U.S. on June 1st.  It&#8217;s going to be a limited release and I can&#8217;t find any information on whether or not it&#8217;s going to be in any theaters near here.  Definitely looking forward to it though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/13/nochnoy-dozor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Greatest &#8230; commercial &#8230; ever &#8230;</title>
		<link>http://www.boyplankton.com/2007/05/11/greatest-commercial-ever/</link>
		<comments>http://www.boyplankton.com/2007/05/11/greatest-commercial-ever/#comments</comments>
		<pubDate>Sat, 12 May 2007 00:43:09 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Tangent]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/11/greatest-commercial-ever/</guid>
		<description><![CDATA[
You&#8217;re obviously deluding yourself if you don&#8217;t agree with me.
]]></description>
			<content:encoded><![CDATA[<div align="center"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/N_Ogiw-ryo8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/N_Ogiw-ryo8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></div>
<p>You&#8217;re obviously deluding yourself if you don&#8217;t agree with me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/11/greatest-commercial-ever/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Practical Jokes</title>
		<link>http://www.boyplankton.com/2007/05/07/practical-jokes/</link>
		<comments>http://www.boyplankton.com/2007/05/07/practical-jokes/#comments</comments>
		<pubDate>Tue, 08 May 2007 02:08:56 +0000</pubDate>
		<dc:creator>Boy Plankton</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.boyplankton.com/2007/05/07/practical-jokes/</guid>
		<description><![CDATA[Was reading this article on customizing Ubuntu today.  Nothing really new in there for me except for this nugget:
There&#8217;s an old practical joke where people pry the keys off a keyboard and replace them out of order. A user who is not a touch typist can get really confused when they look for the [...]]]></description>
			<content:encoded><![CDATA[<p>Was reading this <a href="http://www.extremetech.com/article2/0,1697,2126234,00.asp">article on customizing Ubuntu</a> today.  Nothing really new in there for me except for this nugget:</p>
<blockquote><p>There&#8217;s an old practical joke where people pry the keys off a keyboard and replace them out of order. A user who is not a touch typist can get really confused when they look for the right letters. The xmodmap command can be used for an excellent alternative to this prank. For example, you can add the following commands into the victim&#8217;s .bashrc file:xmodmap -e &#8216;keycode 91 = t T&#8217;<br />
xmodmap -e &#8216;keycode 92 = s S&#8217;</p>
<p>This prank swaps the s and t keys on the keyboard without requiring any physical keyboard modifications. Alternately, if you can pry up and replace the keys on the keyboard, follow it up by remapping the keyboard so it actually works correctly!</p></blockquote>
<p>Never thought of that before. Now I have no choice but to try it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boyplankton.com/2007/05/07/practical-jokes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 3.208 seconds -->
