<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>QICBoy - HOW2 category</title>
  <link>http://www.qicboy.com/categories/howto/</link>
  <description>Hippopotomonstrosesquippedaliophiliac</description>
  <language>en</language>
  <copyright>qicboy</copyright>
  <lastBuildDate>Fri, 10 Oct 2008 14:00:00 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  <image>
    <url>http://www.qicboy.com/themes/user-default/favicon.png</url>
    <title>QICBoy (HOW2 category)</title>
    <link>http://www.qicboy.com/</link>
  </image>
  
  
  <item>
    <title>Java programming</title>
    <link>http://www.qicboy.com/2007/10/26/1193407200000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/10/26/java.jpg&#034;/&gt;
In the &lt;a href=&#034;./2007/06/26/1182866400000.html&#034;&gt;Adobe Flash Player&lt;/a&gt; post I talked about how Flash can add functionality to the web browser.  Java, while less ubiquitous as a browser add-on, is another piece of software that can add functionality to your web browser.  Adobe had a &lt;a target=&#034;_blank&#034; href=&#034;http://www.adobe.com/products/player_census/flashplayer/&#034;&gt;census&lt;/a&gt; conducted in September 2007 and came up with the graph below which shows the relative market penetration of these two add-ons.  These numbers are important because they tell an author using one of these technologies, how likely it will be that someone visiting their page will be able to run their program. The add-on for the browsers that PLAYS the objects are generally distributed for free; Adobe assumes they&#039;ll make the money on the software that EDITS the objects.  Adobe charges &lt;a target=&#034;_blank&#034; href=&#034;http://www.adobe.com/products/flash/&#034;&gt;$699&lt;/a&gt; for their Flash editor.  You can download a variety of Java editors that are available for free.
&lt;/p&gt;

&lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/10/26/stats.gif&#034;/&gt;
&lt;/p&gt;

&lt;p&gt;In this post I&#039;d like to show you how easy it is to create a Java applet that you can include in your website or blog.  We will be using free software and the process should be easy enough for anyone to follow.  We&#039;re going to be creating the applet featured in the &lt;a href=&#034;./2007/10/25/1193320800000.html&#034;&gt;Internet file sharing&lt;/a&gt; post that displays the words &#034;Hello world&#034;.  First you&#039;ll need to make sure you have the latest Java version of the installed.  If you don&#039;t have Java installed, you can find it at the &lt;a target=&#034;_blank&#034; href=&#034;http://java.com/en/download/&#034;&gt;Java website&lt;/a&gt;.
&lt;/p&gt;

&lt;!--&lt;p&gt;
&lt;applet alt=&#034;Browser has Java disabled&#034; width=&#034;425&#034; height=&#034;350&#034; code=&#034;HelloWorld.class&#034;&gt;
&lt;/applet&gt;
&lt;/p&gt;--&gt;

&lt;ol&gt;
&lt;li&gt;Visit the &lt;a target=&#034;_blank&#034; href=&#034;http://www.eclipse.org/downloads/&#034;&gt;eclipse site&lt;/a&gt; and download &#034;Eclipse IDE for Java Developers&#034;.&lt;/li&gt;

&lt;li&gt;Unzip the contents of the zip file.&lt;/li&gt;

&lt;li&gt;Run eclipse.exe (it will ask you to specify the location for a workspace, press ok).&lt;/li&gt;

&lt;li&gt;Select the Workbench icon (you can return to this screen by selecting &#034;welcome&#034; from the Help menu).&lt;/li&gt;

&lt;li&gt;From the File menu select &#034;New&#034; then &#034;Java Project&#034;.  Specify &#034;helloworld&#034; as the &#034;Project name&#034; then click &#034;Finish&#034;.&lt;/li&gt;

&lt;li&gt;From the File menu select &#034;New&#034; then &#034;Class&#034;.  Specify &#034;HelloWorld&#034; as the &#034;name&#034; then click &#034;Finish&#034;.&lt;/li&gt;

&lt;li&gt;Paste the following code.  To correct the indentation, select all by pressing Ctrl+A then Ctrl+I.&lt;/li&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
import java.applet.*;
import java.awt.*;

public class HelloWorld extends Applet {
	static final long serialVersionUID = 1L;
	public void paint(Graphics g) {
		g.drawString(&#034;Hello world&#034;, 10 , 10);
	}
}
&lt;/pre&gt;

&lt;li&gt;Select Save from the File menu or press Ctrl+S.&lt;/li&gt;

&lt;li&gt;Select &#034;Run&#034; from the &#034;Run&#034; menu or press Ctrl+F11. You should see the Applet Viewer appear on your screen with your applet running inside displaying the test &#034;Hello World&#034;.&lt;/li&gt;

&lt;li&gt;You will find the HelloWorld.class file by selecting &#034;Window&#034;, &#034;Show View&#034;, &#034;Navigator&#034;.  The class file is under the bin folder.  You can publish the applet to your blog by uploading the class file to a file hosting service and adding the following tag to your own blog post.  You will need to modify the code and the codebase attributes.  Read my post on &lt;a href=&#034;./2007/10/25/1193320800000.html&#034;&gt;Internet file sharing&lt;/a&gt; for more information.&lt;/li&gt;
 
&lt;pre class=&#034;codeSample&#034;&gt;
&amp;lt;applet alt=&#034;Browser has Java disabled&#034; 
width=&#034;425&#034; height=&#034;350&#034; code=&#034;HelloWorld.class&#034;&gt;
&amp;lt;/applet&gt;
&lt;/pre&gt;
&lt;/ol&gt;


        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/10/26/1193407200000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/10/26/1193407200000.html</guid>
    <pubDate>Fri, 26 Oct 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Internet file sharing</title>
    <link>http://www.qicboy.com/2007/10/25/1193320800000.html</link>
    
      
        <description>
          &lt;p&gt;
&lt;span style=&#034;float: left; margin: 0 5px; padding: 0px; border: 1px solid #ccc;&#034;&gt;
&lt;applet border=&#034;1&#034; alt=&#034;Browser has Java disabled&#034; 
width=&#034;118&#034; height=&#034;143&#034; code=&#034;HelloWorld.class&#034;
codebase=&#034;http://ykgi6g.bay.livefilestore.com/y1pipM0-AxCEOFWt1bqbty2pa90XRBICS6TLDOF7gY3umPxkW-NaYImBiZV0e-kVDD4ZkX_cKoDBpk475OFjhd2ZJowN9JbNobK/HelloWorld.class?download&#034;&gt;
&lt;/applet&gt;
&lt;/span&gt;
&lt;img src=&#034;http://www.qicboy.com/files/2007/10/25/applet.jpg&#034;/&gt;

With the introduction of services like Google Picassa (my favorite), Flickr, Shutterfly, etc, hosting photos online has become pretty easy.  Sites like YouTube, Blip.TV, MetaCafe, and others have likewise risen to the challenge of hosting video on the internet.  But what if wanted to host a file that wasn&#039;t a photo or a video?  If you wanted to share a program, for example, where would you go? 
&lt;/p&gt;

&lt;p&gt;
File hosting sites have been around for a while.  As with any new service, we can look to the big players to get a feel for how mainstream the technology has become.  Yahoo doesn&#039;t seem to have any stake in this market.  Google has offered a Docs service that allows users to share documents but the types of files supported is limited.  When you try to upload a Java program, for example, you get a nasty dialog with the message &#034;Sorry, we do not currently support &#039;.class&#039; files.&#034;  &lt;a target=&#034;_blank&#034; href=&#034;https://www.skydrive.live.com/&#034;&gt;SkyDrive&lt;/a&gt;, Microsoft&#039;s &lt;a href=&#034;http://www.techcrunch.com/2007/08/10/google-microsoft-storage-news-falls-flat/&#034;&gt;recent purchase&lt;/a&gt;, surprisingly has no problem with files like Java programs.  
&lt;/p&gt;

&lt;p&gt;
The thumbnail above shows a Java applet hosted by the SkyDrive service.  An image of the applet is included (labeled &#034;snapshot&#034;) for those without Java support. The applet is included in this page using the following HTML code.  For java Applets I copy the link from the SkyDrive &#034;Download button&#034; and use that for the codebase.  I use name of the class file in the code attribute.
&lt;/p&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&amp;lt;applet border=&#034;1&#034; alt=&#034;Browser has Java disabled&#034; 
width=&#034;118&#034; height=&#034;143&#034; code=&#034;HelloWorld.class&#034;
codebase=&#034;http://ykgi6g.bay.livefilestore.com/y1pipM0-AxCEOFWt1bqbty2pa90XRBICS6TLDOF7gY3umPxkW-NaYImBiZV0e-kVDD4ZkX_cKoDBpk475OFjhd2ZJowN9JbNobK/HelloWorld.class?download&#034;&gt;
&amp;lt;/applet&gt;
&lt;/pre&gt;

&lt;!--&lt;iframe scrolling=&#034;no&#034; marginheight=&#034;0&#034; marginwidth=&#034;0&#034; frameborder=&#034;0&#034; style=&#034;width:240px;height:66px;margin:3px;padding:0;border:1px solid #dde5e9;background-color:#ffffff;&#034; src=&#034;http://cid-817d631710c23414.skydrive.live.com/embedrowdetail.aspx/Public/HelloWorld.class&#034;&gt;&lt;/iframe&gt;--&gt;
        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/10/25/1193320800000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/10/25/1193320800000.html</guid>
    <pubDate>Thu, 25 Oct 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Convert audio between Microsoft and Apple</title>
    <link>http://www.qicboy.com/2007/10/23/1193148000000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/10/23/mp3.jpg&#034;&gt;
Here are a couple scripts to convert an iTunes audio file (m4a) to the ubiquitous mp3 format.  The first script converts the file to a wav, the second one converts the wav to an mp3.  The supporting software are nice because they&#039;re portable, they don&#039;t require you to install them.   The scripts should work on m4b files as well.
&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Download and extract &lt;a href=&#034;http://www3.mplayerhq.hu/MPlayer/releases/win32/MPlayer-mingw32-1.0rc1.zip&#034;&gt;mplayer&lt;/a&gt;. 
&lt;/li&gt;

&lt;li&gt;Download and extract &lt;a href=&#034;http://mitiok.maresweb.org/lame-3.97.zip&#034;&gt;lame&lt;/a&gt; into the mplayer directory.
&lt;/li&gt;

&lt;li&gt;Download &lt;a href=&#034;http://www.qicboy.com/files/2007/10/23/1m4a2wav.bat&#034;&gt;1m4a2wav.bat&lt;/a&gt; and &lt;a href=&#034;http://www.qicboy.com/files/2007/10/23/2wav2mp3.bat&#034;&gt;2wav2mp3.bat&lt;/a&gt; into the mplayer directory.
&lt;/li&gt;

&lt;li&gt;Drop the mp4 onto the first script (1m4a2wav.bat).
&lt;/li&gt;

&lt;li&gt;Drop the resulting wav file onto the second script (2wav2mp3.bat).
&lt;/li&gt;

&lt;/ol&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
@%~d1
@cd %~p1
&#034;%~d0\%~p0mplayer&#034; -ao pcm %1 -ao pcm:file=&#034;%~n1.wav&#034; 
@pause
&lt;/pre&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&#034;%~d0\%~p0lame&#034; --preset standard %1
@pause
&lt;/pre&gt;

        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/10/23/1193148000000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/10/23/1193148000000.html</guid>
    <pubDate>Tue, 23 Oct 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Convert video between Microsoft and Apple</title>
    <link>http://www.qicboy.com/2007/09/17/1190037600001.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/09/17/mplayer.jpg&#034;/&gt;
This is probably more information than anyone would care to know.  I&#039;m posting it in case anyone&#039;s interested in the geeky details of using MPlayer to convert to and from MOV files.  It would be far easier to simply download either &lt;a href=&#034;http://www.qicboy.com/files/2007/06/15/mov2avi.bat&#034;&gt;mov2avi.bat&lt;/a&gt; or &lt;a href=&#034;http://www.qicboy.com/files/2007/06/15/wmv2mp4.bat&#034;&gt;wmv2mp4.bat&lt;/a&gt; and use them with the instructions in the &#034;&lt;a href=&#034;http://www.qicboy.com/2007/06/10/1181492400000.html&#034;&gt;Editing mov files with Windows Movie Maker&lt;/a&gt;&#034; or &#034;&lt;a href=&#034;http://www.qicboy.com/2007/06/15/1181916000000.html&#034;&gt;Podcast primer&lt;/a&gt;&#034; posts respectively.

&lt;p&gt;
This command converts from the QuickTime format into something that can be used by Windows Movie Maker.&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
mencoder -oac pcm -ovc lavc -ffourcc DIVX -o test.avi test.mov
&lt;/pre&gt;

&lt;p&gt;This command converts from The Windows Movie Maker fromat into something that can be used by iTunes. It&#039;s useful if the file you&#039;re creating is to be used in a podcast.&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
mencoder -oac lavc -ovc lavc -lavcopts aglobal=1:vglobal=1:vcodec=mpeg4:acodec=aac -of lavf -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -o test.mp4 test.wmv 
&lt;/pre&gt;



&lt;p&gt;
If you need more info on batch file parameters, you can find out more from the &lt;a target=&#034;_blank&#034; href=&#034;http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx&#034;&gt;Microsoft&lt;/a&gt; site.
&lt;/p&gt;

&lt;p&gt;See also: 
&lt;a href=&#034;http://www.qicboy.com/2007/06/15/1181916000000.html&#034;&gt;Podcast primer&lt;/a&gt;, 
&lt;a href=&#034;http://www.qicboy.com/2007/06/08/1181345460000.html&#034;&gt;Movie watermark&lt;/a&gt;,
&lt;a href=&#034;http://www.qicboy.com/2007/06/10/1181492400000.html&#034;&gt;Editing mov files with Windows Movie Maker&lt;/a&gt;
&lt;/p&gt;
        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/09/17/1190037600001.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/09/17/1190037600001.html</guid>
    <pubDate>Mon, 17 Sep 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Apple Software Update trouble</title>
    <link>http://www.qicboy.com/2007/09/17/1190037600000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/09/17/itunes.jpg&#034;/&gt;
It appears that iTunes + QuickTime has trouble installing when Outlook is running.  Occasionally, the Apple Software Update program will appear telling me there are updates that need to be installed.  When I tell it to go ahead and install the updates I get a &lt;a href=&#034;http://www.qicboy.com/files/2007/09/15/itunes1.jpg&#034;&gt;dialog&lt;/a&gt; with the following message.
&lt;/p&gt;

&lt;blockquote&gt;
Errors occurred while installing the updates. If the problem persists, choose Tools &gt; Download Only and try installing manually.
&lt;/blockquote&gt;

If I follow the instructions and run the iTunes.msi installer I get another &lt;a href=&#034;http://www.qicboy.com/files/2007/09/17/itunes2.jpg&#034;&gt;dialog&lt;/a&gt; warning about outlook.

&lt;blockquote&gt;
Outlook is currently running on this computer. If you proceed without quitting Outlook it is highly recommended that you restart Outlook after installation.
&lt;/blockquote&gt;

&lt;p&gt;
I run into this problem every time.  I&#039;ve tried a few experiments to see if I can narrow down the problem. This last time I came to the following conclusions.
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If outlook is closed when I run iTunes.msi I don&#039;t see any dialogs.&lt;/li&gt;
&lt;li&gt;If I close outlook before I run the update from the Apple Software Update program it still errors out.&lt;/li&gt;
&lt;/ul&gt;

        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/09/17/1190037600000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/09/17/1190037600000.html</guid>
    <pubDate>Mon, 17 Sep 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Playa lighting</title>
    <link>http://www.qicboy.com/2007/08/18/1187450445434.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/08/18/lights.jpg&#034;/&gt;
Trying to power an 18&#039; yurt with a 300 watt power supply  during 12 hours of night (the &lt;a target=&#034;_blank&#034; href=&#034;http://en.wikipedia.org/wiki/Equinox&#034;&gt;equinox&lt;/a&gt; is on the 22nd) can take some thought.  Consider the issue of lighting for example.  Stringing a strand of Christmas lights might seem like a reasonable way to light the dome.  The C7 bulb however can consume &lt;a target=&#034;_blank&#034; href=&#034;http://www.energyideas.org/default.cfm?o=h,g,ds&amp;c=z,z,3518&#034;&gt;6 watts&lt;/a&gt; each.  Even the incandescent mini-light consumes 0.48 watts.  String 100 of those C7 lights together and you&#039;ll sucking up 600 watts in only one hour.  You&#039;ll consume 48 watts with the mini-lights.  
&lt;/p&gt;

&lt;p&gt;
To get a perspective on what these numbers mean, consider the following.  The C7 lights would consume the battery&#039;s power in half an hour  while the mini-lights would consume the battery&#039;s power in 6 hours.
&lt;/p&gt;

&lt;p&gt;
A couple companies are offering an alternative to incandescent Christmas lights: LED lights.  These lights resemble the mini-lights but consume only 0.08 watts.  A 100 bulb strand will consume 8 watts.  That&#039;s one sixth the amount of power.  To say it another way, the lights will take 6 times as long to consume the battery&#039;s power or 36 hours.
&lt;/p&gt;

&lt;p&gt;
There is a power loss during the conversion from DC to AC.  The process requires a device called an &lt;a target=&#034;_blank&#034; href=&#034;http://www.dcacpowerinverters.com/&#034;&gt;inverter&lt;/a&gt;.  While the efficiency of inverters differ, the ones I&#039;ve seen incur about a 10% power loss.  For simplicity I haven&#039;t included that figure in the calculations but for reference, the times would be adjusted as follows.  The C6 would last 0.5 hours, not 6.  The mini-lights would last 5.5 hours, not 6.  The LED lights would last 32 hours, not 36.
&lt;/p&gt;

&lt;p&gt;
A company called &lt;a target=&#034;_blank&#034; href=&#034;http://www.inirgee.com/&#034;&gt;
Inirgee&lt;/a&gt; sells LED lights &lt;a target=&#034;_blank&#034; href=&#034;http://michaelbluejay.com/electricity/dc-christmas-lights.html&#034;&gt;powered from DC&lt;/a&gt;.  Using those lights would conserve the 10% power loss from the inverter.
&lt;/p&gt;

&lt;img src=&#034;http://www.qicboy.com/files/2007/08/18/power.jpg&#034;/&gt;

&lt;p&gt;
&lt;object width=&#034;425&#034; height=&#034;350&#034;&gt;&lt;param name=&#034;movie&#034; value=&#034;http://www.youtube.com/v/cWsNdCH6aDg&#034;&gt;&lt;/param&gt;&lt;param name=&#034;wmode&#034; value=&#034;transparent&#034;&gt;&lt;/param&gt;&lt;embed src=&#034;http://www.youtube.com/v/cWsNdCH6aDg&#034; type=&#034;application/x-shockwave-flash&#034; wmode=&#034;transparent&#034; width=&#034;425&#034; height=&#034;350&#034;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;/p&gt;

&lt;!--
http://eplaya.burningman.com/viewtopic.php?=&amp;p=301592
http://michaelbluejay.com/electricity/dc-christmas-lights.html
--&gt;

        </description>
      
      
    
    
    
    <category>BURN</category>
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/08/18/1187450445434.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/08/18/1187450445434.html</guid>
    <pubDate>Sat, 18 Aug 2007 15:20:45 GMT</pubDate>
  </item>
  
  <item>
    <title>Flash pet</title>
    <link>http://www.qicboy.com/2007/08/17/1187359200001.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/08/17/tricks.jpg&#034;/&gt;
&lt;a target=&#034;_blank&#034; href=&#034;http://www.heartgard.com/&#034;&gt;HeartGuard&lt;/a&gt; has come up with &lt;a target=&#034;_blank&#034; href=&#034;http://www.idodogtricks.com&#034;&gt;a charming little website&lt;/a&gt; to promote their product.  At the heart of the website is a flash object that calls flash videos based on what you type.  If you type &#034;beg&#034;, for example, it will &#034;/video/beg.flv&#034;.  Type &#034;stand&#034; and it will load &#034;/video/beg.flv&#034;.  The idea isn&#039;t unique.  Previous examples include scantily clad and or buxom women carrying our your commands.  
&lt;/p&gt;

&lt;p&gt;
The technology that allows this object to work is really pretty robust.  Since the object is loaded remotely, it can be updated without the user knowing so new commands can be added after people have added the object to their websites.  The flash player is loaded on nearly every machine and the videos themselves are only loaded when the user types a command so the initial download is relatively small. They haven&#039;t figured out that making the object embeddable on other people&#039;s sites would take their marketing to a new level.  You can try, but there&#039;s no way to silence that annoying music. They really missed the boat with that.  Give the industry a few years, they&#039;ll catch up.
&lt;/p&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&amp;lt;object classid=&#034;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&#034; codebase=&#034;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0&#034;  width=&#034;425&#034; height=&#034;350&#034; id=&#034;site_template_v3&#034; align=&#034;middle&#034;&gt;
&amp;lt;param name=&#034;allowScriptAccess&#034; value=&#034;sameDomain&#034; /&gt;

&amp;lt;param name=&#034;movie&#034; value=&#034;http://www.idodogtricks.com/site_template_v10.swf&#034; /&gt;&amp;lt;param name=&#034;quality&#034; value=&#034;high&#034; /&gt;&amp;lt;param name=&#034;bgcolor&#034; value=&#034;#ffffff&#034; /&gt;&amp;lt;embed src=&#034;http://www.idodogtricks.com/site_template_v10.swf&#034; quality=&#034;high&#034; bgcolor=&#034;#ffffff&#034;  width=&#034;425&#034; height=&#034;350&#034; name=&#034;site_template_v3&#034; align=&#034;middle&#034; allowScriptAccess=&#034;sameDomain&#034; type=&#034;application/x-shockwave-flash&#034; pluginspage=&#034;http://www.macromedia.com/go/getflashplayer&#034; /&gt;
&lt;/pre&gt;

        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com/2007/08/17/1187359200001.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/08/17/1187359200001.html</guid>
    <pubDate>Fri, 17 Aug 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Hacking Netflix</title>
    <link>http://www.qicboy.com/2007/08/10/1186754400000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/08/10/netflix.jpg&#034;/&gt;
The digital rights management software from Microsoft has been cracked.  Netflix is offering movies online and hackers have provided &lt;a target=&#034;_blank&#034; href=&#034;http://forum.rorta.net/showthread.php?t=1134&#034;&gt;instructions&lt;/a&gt; on how to download get the movies without paying for them. Here are the Cliff notes.
&lt;/p&gt;

&lt;ol&gt;

&lt;li&gt;Pick a movie from the NetFlix site.&lt;/li&gt;

&lt;li&gt;Find the URL for that movie in the web page source and download it without getting the key to decrypt it.&lt;/li&gt;

&lt;li&gt;Decrypt the file using a program called FU4WM (fair use for Windows media).&lt;/li&gt;
&lt;/ol&gt;
        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <category>NEWS</category>
    
    <comments>http://www.qicboy.com/2007/08/10/1186754400000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/08/10/1186754400000.html</guid>
    <pubDate>Fri, 10 Aug 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Simpson generator</title>
    <link>http://www.qicboy.com/2007/08/05/1186331100000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;a href=&#034;http://www.qicboy.com/files/2007/08/05/simpsonbig.jpg&#034;/&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/08/05/simpson.jpg&#034;/&gt;
&lt;a target=&#034;_blank&#034; href=&#034;http://www.simpsonsmovie.com/main.html&#034;&gt;simpsonsmovie.com&lt;/a&gt; also has a simpson generator.  I think I like this site better. Just go to the site and click &#034;Create your Simpson Avatar&#034; at the top of the screen.
&lt;/p&gt;
        </description>
      
      
    
    
    
    <category>TECH | OWN | FREE</category>
    
    <category>HOW2</category>
    
    <category>LIFE</category>
    
    <comments>http://www.qicboy.com/2007/08/05/1186331100000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/08/05/1186331100000.html</guid>
    <pubDate>Sun, 05 Aug 2007 16:25:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Simpson-ize yourself</title>
    <link>http://www.qicboy.com/2007/08/04/1186241425219.html</link>
    
      
        <description>
          &lt;p&gt;
&lt;a href=&#034;http://www.qicboy.com/files/2007/08/04/simpsonbig.png&#034;&gt;&lt;img src=&#034;http://www.qicboy.com/files/2007/08/04/simpson.jpg&#034;/&gt;&lt;/a&gt;
At &lt;a target=&#034;_blank&#034; href=&#034;http://simpsonizeme.com/&#034;&gt;simpsonizeme.com&lt;/a&gt; you can upload a photo of yourself and have a simpson character generated from it.
&lt;/p&gt;

&lt;p&gt;
&lt;object width=&#034;425&#034; height=&#034;350&#034;&gt;&lt;param name=&#034;movie&#034; value=&#034;http://www.youtube.com/v/6-LKcchOGog&#034;&gt;&lt;/param&gt;&lt;param name=&#034;wmode&#034; value=&#034;transparent&#034;&gt;&lt;/param&gt;&lt;embed src=&#034;http://www.youtube.com/v/6-LKcchOGog&#034; type=&#034;application/x-shockwave-flash&#034; wmode=&#034;transparent&#034; width=&#034;425&#034; height=&#034;350&#034;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;/p&gt;

        </description>
      
      
    
    
    
    <category>TECH | OWN | FREE</category>
    
    <category>HOW2</category>
    
    <category>LIFE</category>
    
    <comments>http://www.qicboy.com/2007/08/04/1186241425219.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com/2007/08/04/1186241425219.html</guid>
    <pubDate>Sat, 04 Aug 2007 15:30:25 GMT</pubDate>
  </item>
  
  </channel>
</rss>
