<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-876980531806336439</id><updated>2012-02-13T11:50:03.080-08:00</updated><category term='Ubuntu'/><category term='HTC Incredible'/><category term='Video Transcoding'/><category term='Video Conversion'/><category term='Android'/><category term='Linux'/><category term='Droid Incredible'/><category term='Media Management'/><title type='text'>Frizzle Tech Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>32</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-5447237551760823614</id><published>2011-02-27T00:10:00.000-08:00</published><updated>2011-02-27T00:10:45.819-08:00</updated><title type='text'>How I created my weekly feed digest</title><content type='html'>So, if you read the frizzlefry blog, then you probably noticed I had an issue today that was all about my weekly shared Items in Google Reader. &amp;nbsp;I have been thinking about reorganizing all of my shared feeds into a series of digests. &amp;nbsp;The nice part, is that other people did all the work for me, so all I need to do is put their work together into a script I can run.&lt;br /&gt;&lt;br /&gt;So, where to start? &amp;nbsp;ok, first I want to parse out an Atom feed, so I chose the &lt;a href="http://www.feedparser.org/"&gt;Universal Feed Parser&lt;/a&gt; which is a nice little utility to parse out RSS/Atom feeds among other stuff I'm not currently interested in. &amp;nbsp;So, because the library I wanted to use is in Python, I decided that I was going to write a little python script to get the work done... I guess the language of a library is as good a reason as any to choose your language. &amp;nbsp;'&lt;br /&gt;&lt;br /&gt;Anyway, ok, so how does this thing work? &amp;nbsp;really simple as it turns out...&lt;br /&gt;To start off, I import the feedparser library, and create a feed object:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import feedparser&lt;br /&gt;&lt;br /&gt;d = feedparser.parse('http://www.google.com/reader/public/atom/user%2F11424318483849164397%2Fstate%2Fcom.google%2Fbroadcast')&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;So, that creates a variable d, which is a feed object. &amp;nbsp;All I want from the feed is the title and description, so I can access those simply by using:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import feedparser&lt;br /&gt;&lt;br /&gt;d = feedparser.parse('http://www.google.com/reader/public/atom/user%2F11424318483849164397%2Fstate%2Fcom.google%2Fbroadcast')&lt;br /&gt;&lt;br /&gt;d.entries[itemnumber].title&lt;br /&gt;d.entries[itemnumber].description&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;However, I want to print out those values, which can be done with the print like this:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import feedparser&lt;br /&gt;&lt;br /&gt;d = feedparser.parse('http://www.google.com/reader/public/atom/user%2F11424318483849164397%2Fstate%2Fcom.google%2Fbroadcast')&lt;br /&gt;&lt;br /&gt;print d.entries[itemnumber].title&lt;br /&gt;print d.entries[itemnumber].description&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Next, I want itemnumber to mean something, so I'll put the whole thing together in a for loop that prints all entries like this:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import feedparser&lt;br /&gt;&lt;br /&gt;d = feedparser.parse('http://www.google.com/reader/public/atom/user%2F11424318483849164397%2Fstate%2Fcom.google%2Fbroadcast')&lt;br /&gt;&lt;br /&gt;for itemnumber in range(0, len(d.entries)):&lt;br /&gt;&amp;nbsp;&amp;nbsp; print d.entries[itemnumber].title&lt;br /&gt;&amp;nbsp;&amp;nbsp; print d.entries[itemnumber].description&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Now, I wanted to make sure that I limit the list to only include items after a given start date that I could specify as a command line argument, so I added a couple more lines:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import feedparser&lt;br /&gt;&lt;br /&gt;startdate = datetime.strptime(sys.argv[1],'%Y-%m-%d').date()&lt;br /&gt;d = feedparser.parse('http://www.google.com/reader/public/atom/user%2F11424318483849164397%2Fstate%2Fcom.google%2Fbroadcast')&lt;br /&gt;&lt;br /&gt;for itemnumber in range(0, len(d.entries)):&lt;br /&gt;&amp;nbsp;&amp;nbsp; print d.entries[itemnumber].title&lt;br /&gt;&amp;nbsp;&amp;nbsp; print d.entries[itemnumber].description&lt;br /&gt;&amp;nbsp;&amp;nbsp; if datetime.strptime(d.entries[itemnumber+1].published,'%Y-%m-%dT%H:%M:%SZ').date() &amp;lt; startdate: break &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;So, I created the startdate variable, which is a date provided by the command line in the format&lt;br /&gt;&lt;year&gt;-&lt;month&gt;-&lt;day&gt;, then it breaks the loop if date published is before (less than) startdate.&amp;nbsp;&lt;/day&gt;&lt;/month&gt;&lt;/year&gt;&lt;br /&gt;&lt;br /&gt;Finally, I wanted to add some basic HTML formatting to make it easy for me to copy and paste the text into blogger... that lead me to my final version of the python script, which looks a little like this:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import feedparser&lt;br /&gt;from datetime import date&lt;br /&gt;from datetime import datetime&lt;br /&gt;import sys&lt;br /&gt;&lt;br /&gt;print sys.argv[1]&lt;br /&gt;startdate = datetime.strptime(sys.argv[1],'%Y-%m-%d').date()&lt;br /&gt;&lt;br /&gt;d = feedparser.parse('http://www.google.com/reader/public/atom/user%2F11424318483849164397%2Fstate%2Fcom.google%2Fbroadcast')&lt;br /&gt;print '&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;'&lt;br /&gt;&lt;br /&gt;print d.feed.title&lt;br /&gt;print '&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;'&lt;br /&gt;&lt;br /&gt;for itemnumber in range(0,len(d.entries)):&lt;br /&gt;&lt;br /&gt;print '&amp;lt;h1&amp;gt;'&lt;br /&gt;print d.entries[itemnumber].title&lt;br /&gt;print '&amp;lt;/h1&amp;gt;'&lt;br /&gt;print d.entries[itemnumber].description&lt;br /&gt;print '&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;Date Shared: '&lt;br /&gt;print datetime.strptime(d.entries[itemnumber].published,'%Y-%m-%dT%H:%M:%SZ').date()&lt;br /&gt;&lt;br /&gt;if datetime.strptime(d.entries[itemnumber+1].published,'%Y-%m-%dT%H:%M:%SZ').date() &amp;lt; startdate: break&lt;br /&gt;print '&amp;lt;hr /&amp;gt;'&lt;br /&gt;print '&amp;lt;hr /&amp;gt;'&lt;br /&gt;print '&amp;lt;hr /&amp;gt;'&lt;br /&gt;&lt;br /&gt;print '&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;'&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;So, the first part of my script was done... I named the file GeneratePage.py, and&amp;nbsp;proceeded&amp;nbsp;to create three more files... the second file was SaveDate.py, which would simply output the date in the format I needed it using two lines:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;from datetime import date&lt;br /&gt;print date.today()&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;I figured the best way to track the previous time the script was run would be to save the date to a file, so I created a file called date.txt that contained only the string "2011-02-26".  &lt;br /&gt;&lt;br /&gt;Then I created a batch script that would tie everything together... the batch script looks like this:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;#!/bin/bash &lt;br /&gt;D=`cat date.txt`&lt;br /&gt;python GeneratePage.py $D&lt;br /&gt;python SaveDate.py&amp;gt;date.txt&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;This script would set the date from date.txt to a variable called D.  Then it would run the GeneratePage.py script while passing it the value of D.  Then it would run the SaveDate.py script, with the output replacing the contents of date.txt.&lt;br /&gt;&lt;br /&gt;At this point, the script could be run every week, and the output can be copied and pasted into blogger.&lt;br /&gt;&lt;br /&gt;The next step will be to automate the process of putting the dialog onto the site, which will actually take a little effort, but I'm pretty sure someone else has already done the work for me, I just have to figure out who did it.  &lt;br /&gt;&lt;br /&gt;Oh, on one other note, in case you are curious why I didn't just redirect all the output to a file, it's because some of the feed items use&amp;nbsp;Unicode&amp;nbsp;characters that cannot be converted to ASCII... so Bash gets angry when you do that. &amp;nbsp;I might be able to fix this easily, however, I really don't mind having to copy and paste the characters into the blog anyway.&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-5447237551760823614?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/5447237551760823614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2011/02/how-i-created-my-weekly-feed-digest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5447237551760823614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5447237551760823614'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2011/02/how-i-created-my-weekly-feed-digest.html' title='How I created my weekly feed digest'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-7159978165733705940</id><published>2010-05-06T19:53:00.000-07:00</published><updated>2010-05-06T19:53:37.632-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Video Conversion'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Media Management'/><category scheme='http://www.blogger.com/atom/ns#' term='Android'/><category scheme='http://www.blogger.com/atom/ns#' term='Video Transcoding'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='HTC Incredible'/><category scheme='http://www.blogger.com/atom/ns#' term='Droid Incredible'/><title type='text'>Managing your Droid Incredible with Ubuntu 10.04 Linux</title><content type='html'>Hey everybody! &amp;nbsp;It sure has been a while since I updated this blog, but I think it's time I did. &amp;nbsp;Last week I picked up an HTC Droid Incredible, which is the Verizon version of the Incredible, and I've found that nobody has really written about what you can do with this thing using Ubuntu (a Debian-based Linux distribution.) &amp;nbsp;So, I'm here to tell you that you don't need a Windows PC to manage your device, and when I say that, I'm not implying you have to be a Linux expert or manually put all your files on the device. &amp;nbsp;So, to avoid most of that cryptic Linux stuff, I'm going to almost completely avoid the command line (I'll tell you the command, but I'll also tell you how to do it without the command...except for DVD playback, you have to copy and paste that command.) &amp;nbsp;I will also assume you have a default Ubuntu installation, so you may think I'm just being silly by installing some of this stuff.&lt;br /&gt;&lt;br /&gt;Please note that &lt;b&gt;I won't cover the mobile broadband functionality&lt;/b&gt; because the setup I have for it is very complicated and unstable at the moment. &amp;nbsp;Once I figure out a simple way for people to get it working, then I will write a post about it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;The super duper quick version&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;For those of you who know Ubuntu/Linux well, just install and configure the Restricted Extras Packages, libdvdcss2, Banshee, and Arista with this command (All of it is in the Ubuntu Software Repositories):&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;code&gt;sudo apt-get install ubuntu-restricted-extras kubuntu-restricted-extras xubuntu-restricted-extras libdvdcss2 banshee arista;&amp;nbsp;sudo /usr/share/doc/libdvdread4/./install-css.sh&lt;/code&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Then you're setup is done. &amp;nbsp;Go to the section about Banshee if you want your device to display with the correct name and use the correct folder, and Arista is so simple, all you have to do is: choose a video file or DVD device as the source, select Ipod as your device, and Low as the Preset, then click Add to Queue (I can't really tell the difference between the low and high presets when using the device, but low uses half the memory.)&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;Codecs and DVD Playback&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; So, let's spend a little time getting your system ready, and then our entire experience will be a little nicer. &amp;nbsp;First things first, you will want codecs for videos and music. &amp;nbsp;So, open up the Ubuntu Software Center (Applications -&amp;gt; Ubuntu Software Center), then type "restricted" into the search bar in the upper right corner. &amp;nbsp;You will see three packages that you want*: Ubuntu Restricted Extras, Kubuntu Restricted Extras, and Xubuntu Restricted Extras. &amp;nbsp;I don't think you really need all of them, but I always just install all three, so I'm going to tell you to do the same.&lt;br /&gt;&lt;br /&gt;* Please note that the Restricted Extras Packages and the libdvdcss2 package are not allowed in some countries. &amp;nbsp;My primary audience is people in the US.&lt;br /&gt;&lt;br /&gt;Ok, I kinda lied a little about the cryptic stuff thing... If you want to play back DVDs, you need to do one thing:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Press Alt+F2 on the keyboard, and the Run Application dialog pops up.&lt;/li&gt;&lt;li&gt;copy and paste this command into the Run Application dialog:&lt;br /&gt;"sudo apt-get install libdvdcss2; sudo /usr/share/doc/libdvdread4/./install-css.sh"&lt;/li&gt;&lt;li&gt;Check the Run in terminal checkbox&lt;/li&gt;&lt;li&gt;Click Run.&lt;/li&gt;&lt;li&gt;A window with a bunch of text pops up, and I think you might have to hit "y" to accept the license agreement.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;So, that wasn't too bad was it? &amp;nbsp;Because of restricted licenses,&amp;nbsp;Canonical&amp;nbsp;can't just distribute the DVD playback libraries with Ubuntu, so you have to get that separately and accept the EULA (End User License Agreement.) &amp;nbsp;Then you have to run a script that sets everything up for you; that is what the above command does.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ok, now everything is set up, and you are ready to play all your music, watch movies, and all that kind of stuff. &amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;Media Management Software&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Now, there are two more programs that you will want: &amp;nbsp;Banshee Media Player, and Arista Transcoder. &amp;nbsp;Both of these are available in the Ubuntu Software Center, so just type them both into the search box (one at a time of coarse) and you have all the software you need. &amp;nbsp;There is just one thing though, Banshee detects your Android Phone as a generic Android Device. &amp;nbsp;I don't mind the picture of the G1, but I just want the program to use the default music folder (/emmc/MP3/ for internal storage, or /sdcard/MP3/ for the microSD card), and I want the correct name for my phone. &amp;nbsp;This is actually a really simple thing to do. &amp;nbsp; You just create a text file, and save it to the device with a very specific name.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;Get Ubuntu to See your Phone&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;By default, my phone goes into charge only mode when I plug it into a USB port, which you can change, but I like it that way. &amp;nbsp;So first, connect your phone to your computer. &amp;nbsp;Now, on the phone, open the notification area, tap the USB Icon that says "Charging Only" next to it, then select Disk Drive from the menu that appears. &amp;nbsp;Once your phone appears on your computer, you need to save a file into the root folder of the device.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The root folder would typically be called something like C:, D:, E:, etc... on a Windows computer. &amp;nbsp;You can recognize it because it shows up as a USB stick on the Places menu and on the side bar in the file browser (or in this case the save as window.) &lt;br /&gt;&lt;br /&gt;Also note that if you have a MicroSD card, that will show up as a separate drive/device, You can set the name for the phone and MicroSD card separately in Banshee by repeating the following steps with a different name for the memory card. &amp;nbsp;You have to manage both of them separately. &amp;nbsp;Most software in the Android marketplace will not recognize media on the phone's internal storage yet, but if you just use MP3s and Ipod-formatted videos, you can just use the default media software on the phone.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;Get Banshee to show the correct Name for your device:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Now that your device is connected and Ubunti can see it, you can save a text file to the device. &amp;nbsp;So, Open a text editor (Applications -&amp;gt; Accessories -&amp;gt; gedit Text Editor.) Then type two Lines (just copy the stuff between the quotation marks):&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Line 1: "name=Droid Incredible" &lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;- This name can be what ever you want Banshee to call the device&lt;/li&gt;&lt;li&gt;Line 2: "audio_folders=MP3/" &lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;- This is an optional line; I chose to add it because I had already manually copied files to the MP3 folder, and now I wanted to keep everything simple.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;Ok, now save that file as (File-&amp;gt;Save As...) ".is_audio_player" and put it on the root of your device or SD card. &amp;nbsp;(You need the period at the beginning of the file, and the file has no&amp;nbsp;extension at the end) &amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Note that from now on, this file will be hidden, so to view the file in the file browser, you need to select View -&amp;gt; Show Hidden Files (or Press Ctrl+H.)&lt;br /&gt;&lt;br /&gt;Ok, so now Banshee should show the name you specified, any music you have already put into the default folder, and sync new music to the folder you specified.&lt;br /&gt;&lt;br /&gt;If you want a complete list of what you can put into the .is_audio_player file, you can refer to this page:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.floccinaucinihilipilification.net/wiki/index.php/.is_audio_player_file_format"&gt;The Floccinaucinihilipilification Homepage&lt;/a&gt;&lt;span class="Apple-style-span" style="font-family: monospace; white-space: pre-wrap;"&gt; - .is_audio_player file format by Darin Ohashi&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: monospace; white-space: pre-wrap;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;Formatting Video for Your Device&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So, after spending hours of trying different video transcoders, and different video players, I found that Arista Transcoder is the easiest option available. &amp;nbsp;You just open the program, choose a source, choose a device, choose a preset, and add to queue. &amp;nbsp;You can even queue up several video files and let them all go. &amp;nbsp;Then, when all is said and done, you can put the media on your SD card or the internal storage and play it through the photo browsing tool that came pre-loaded on the phone.&lt;br /&gt;&lt;br /&gt;The source is either a DVD drive or video file. &amp;nbsp;For the device, just choose Ipod. &amp;nbsp;For the preset, choose low. &amp;nbsp;You can use High, but you will need to stop all non-essential processes or the video can go out of sync if you get an email or something. &amp;nbsp;Plus, the High preset uses twice as much memory, and I think about 200MB is much more reasonable than about 500MB.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;Using Banshee&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Banshee is really easy to use. &amp;nbsp;It will download album art, but it doesn't use the correct format for the HTC Incredible. &amp;nbsp;If you really need your album art, I have been using Media Monkey on Windows to update Album art directly on the device, and that works pretty well... I'll have a Linux solution soon, but that's not really a priority for me.&lt;br /&gt;&lt;br /&gt;I've also found that playlists don't quite work right "out of the box." &amp;nbsp;I'll figure that out later, because I normally just press shuffle all, then stop looking at the device until I want to skip a song.&lt;br /&gt;&lt;br /&gt;As far as video is concerned, you can just import everything to the library from the file menu.&lt;br /&gt;&lt;br /&gt;At this point, you can use Banshee to sync all of your music and videos to your device in a very similar way to how you would sync everything with your iPod or other devices. &amp;nbsp;In fact, you can even use Banshee to sync to your iPod! &amp;nbsp;So, I hope this helps make every Ubuntu user that much happier with Android. &lt;br /&gt;&lt;br /&gt;Check back soon to see updates on my favorite Android Apps, Linux tips, and general Tech stuff.&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; SteveO&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-7159978165733705940?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/7159978165733705940/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2010/05/managing-your-droid-incredible-with.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/7159978165733705940'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/7159978165733705940'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2010/05/managing-your-droid-incredible-with.html' title='Managing your Droid Incredible with Ubuntu 10.04 Linux'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-3430638203422539298</id><published>2009-07-23T13:50:00.001-07:00</published><updated>2009-07-23T13:50:56.248-07:00</updated><title type='text'>Google Wave First Impressions</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_lAp99O0l7Rs/SmjK0EAd6aI/AAAAAAAAwvY/ZQW5WkL_myk/s1600-h/WavePreview1.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_lAp99O0l7Rs/SmjK0EAd6aI/AAAAAAAAwvY/ZQW5WkL_myk/s400/WavePreview1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;So, I got an invite to the Google Wave Developer preview, and it's pretty cool. &amp;nbsp;It looks right on track for a beta at the end of September.   It was a little funny at first because you just get this information overload right away. &amp;nbsp;Everything everyone was talking about flooded my inbox. &amp;nbsp;This was because of a special dev channel that you can subscribe to right when you sign up for your developer account. &amp;nbsp;Basically it's a constant stream of what the devs think is important to get done. &amp;nbsp;There is a lot going on. &amp;nbsp;Linking Wave to Google's App engine works pretty nice, and you can get a lot done with robots.  So, dealing with the information overload lead me to use the search box a lot. &amp;nbsp;There was no way for me to read all the waves, they all just kept going. &amp;nbsp;Each wave would have a dozen or so people doing all sorts of things. &amp;nbsp;One wave was a group of people collaboratively creating a book, and another wave was a list of robots. &amp;nbsp;The most common waves I found were titled "test" &amp;nbsp;because that was what the channel was for. &amp;nbsp;Testing stuff that you are writing for Wave.  Once you get used to the information just streaming in from everywhere, you start to like it. &amp;nbsp;You can search for anything you want, and real time results of waves on your channels start flowing in. &amp;nbsp;You can reply to waves, play games of chess, and even add hot spots to a map. &amp;nbsp;The conversation really just flows smoothly.  Now that I'm getting in my groove, I started to wonder what kinds of cool stuff I can do with Wave. &amp;nbsp;I started looking for bots, and the robot wave just popped right up. &amp;nbsp;I saw the Twitter bot, Tweety the Twitbot, and then added the email address (&lt;span style="-webkit-border-horizontal-spacing: 6px; -webkit-border-vertical-spacing: 6px; font-family: arial;"&gt;tweety-wave@appspot.com&lt;span style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-family: 'Times New Roman';"&gt;) to my contact list. &amp;nbsp;The whole process to this point was just like any other bot (like smarterchild on AIM...) &amp;nbsp;Now I can start a wave, and include tweety. &amp;nbsp;From then on, anything you say in the Wave will end up on twitter. &amp;nbsp;So it's important not to use multiple bots in one wave... like I just did... you end up tweeting things like $MSFT... anyway, that tweet was supposed to be a wave for Stocky (stocky-wave@appspot.com) who actually changes the text you enter into a stock quote (like you type "$MSFT" and Stocky changes it to this "MSFT (25.56)".)&lt;/span&gt;&lt;/span&gt;  The bots are awesome! &amp;nbsp;You can embed pictures, maps, surveys, polls, real time weather, HTML, and all sorts of stuff into a Wave.  &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_lAp99O0l7Rs/SmjLbM7-3aI/AAAAAAAAwvg/qxoFuRbbF2g/s1600-h/WavePreview2.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="194" src="http://1.bp.blogspot.com/_lAp99O0l7Rs/SmjLbM7-3aI/AAAAAAAAwvg/qxoFuRbbF2g/s320/WavePreview2.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;Another cool thing I noticed right away is that everything can be minimized. &amp;nbsp;With the announcement of the Google Chrome OS, I can see Wave as evolving into some sort of live desktop. &amp;nbsp;You can have multiple waves open at once, and just switch between them. &amp;nbsp;The full screen reading mode will also be pretty nice for my netbook.  In final, my first impression is that Google Wave will revolutionize the way people communicate on the web. &amp;nbsp;Everything is so easy to do. &amp;nbsp;Want the weather? &amp;nbsp;tell the weather robot where you want the weather for. &amp;nbsp;Stocks? Directions? &amp;nbsp;Microblogging? &amp;nbsp;Actually that makes me think, how will this effect twitter? &amp;nbsp;You have real time search, and a more interactive way to communicate with your friends!   Anyway. &amp;nbsp;I was really excited about Wave before, and now that I've gotten a taste of it, I don't think I can stop.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-3430638203422539298?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/3430638203422539298/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/07/google-wave-first-impressions.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/3430638203422539298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/3430638203422539298'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/07/google-wave-first-impressions.html' title='Google Wave First Impressions'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_lAp99O0l7Rs/SmjK0EAd6aI/AAAAAAAAwvY/ZQW5WkL_myk/s72-c/WavePreview1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-2213707035343321336</id><published>2009-06-17T13:44:00.000-07:00</published><updated>2009-06-17T13:44:43.477-07:00</updated><title type='text'>Social Media is definately the future!</title><content type='html'>&lt;object height="326" width="446"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="bgColor" value="#ffffff"&gt;&lt;/param&gt;&lt;param name="flashvars" value="vu=http://video.ted.com/talks/embed/ClayShirky_2009S-embed_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/ClayShirky-2009S.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=575" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/ClayShirky_2009S-embed_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/ClayShirky-2009S.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=575"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;It should not&amp;nbsp;surprise&amp;nbsp;anyone that I've been inspired by another &lt;a href="http://www.ted.com/"&gt;TED talk&lt;/a&gt;. &amp;nbsp;I mean, every talk on the site is something worth watching at least once. &amp;nbsp;This one is about social media. &amp;nbsp;I have been following &lt;a href="http://andrewsullivan.theatlantic.com/the_daily_dish/"&gt;Andrew Sullivan on his incredible coverage of the protests in Iran&lt;/a&gt;, and I have been watching the &lt;a href="http://search.twitter.com/search?q=%23iranelection"&gt;#iranelection&lt;/a&gt; tag on twitter too, and I'm a firm believer that CNN doesn't stand a chance against this type of media. &amp;nbsp;Sure, the video isn't in HD, and there isn't a reporter editing the footage and choosing which scenes to show you... it's just what is happening. &amp;nbsp;The real coverage. &amp;nbsp;It worked in China for the earthquake... it was used to make sure that the schools to replace those that collapsed were actually built to code... and it's the only media coming out of Iran while all the news stations are being cut out of the loop. &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; I know you aren't going to get the best quality journalism from this news, but you aren't going to get good quality journalism until after the issue is resolved... the only thing that TV networks can ever offer you is coverage, and any monkey with a camera can do that. &amp;nbsp;I don't mean to say camera men aren't talented because finding the right shot isn't easy, but most of the difference between a camera man and some ordinary person is that the camera man usually has better equipment.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; This leads me to my next realization, the future of print media. &amp;nbsp;So, we all know the newspapers are having trouble re-acclimating to the digital world. &amp;nbsp;When newspapers move to the internet, every article has to carry it's own weight... the atomic unit of sales changed from an entire paper, to an individual articles. &amp;nbsp;Social media is really good a producing raw unedited footage of what is happening, and initial public reactions, however traditional media has this ability to censer the story, check the sources, and produce good quality media that requires investment to produce. &amp;nbsp;We must not loose that.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; My question, how do we combine our social media and traditional media into a unit that works together? &amp;nbsp;I like the concept of free licenses for social media&amp;nbsp;(free as in freedom to reuse or remix the content for non-commercial or at least non-profit&amp;nbsp;use), but the real question is how do you put a price on or handle purchasing licenses to the media? &amp;nbsp;I feel the creator has more right to profit from their work than some media outlet using the story to attract viewers or sell papers. &lt;br /&gt;&lt;br /&gt;Anyway, there is a lot that can be said for the way the world is shifting to the internet. &amp;nbsp;Blogs, news&amp;nbsp;aggregation, youtube, cellphone cameras, and personal video cameras are changing the way we get out news. &amp;nbsp;Which I think is fine. &amp;nbsp;I think that spreading the information is very important, but there is something to be said for the people who come in after the story is over.&lt;br /&gt;&lt;br /&gt;The people who follow up the story with quality journalism (the who, why, what happened, and how it turned out.) &amp;nbsp;The story that is documented for the historians to record, and the story our descendants will learn in school. &amp;nbsp;We need to make sure that someone checked the score board and made sure they weren't mislead by someone with an agenda. &lt;br /&gt;&lt;br /&gt;So,&amp;nbsp;embrace the digital revolution, but don't forget your roots. &amp;nbsp;Support quality journalism (like PBS.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-2213707035343321336?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/2213707035343321336/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/06/social-media-is-definately-future.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2213707035343321336'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2213707035343321336'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/06/social-media-is-definately-future.html' title='Social Media is definately the future!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-4529433295310248840</id><published>2009-06-17T10:47:00.001-07:00</published><updated>2009-06-17T10:47:29.636-07:00</updated><title type='text'>A call for opinion!</title><content type='html'>&lt;span style="font-family: -webkit-monospace; font-size: 12px; line-height: 15px; white-space: pre-wrap;"&gt;So, I want to know what everyone thinks of &lt;a href="http://imthefrizzlefry.wikidot.com/"&gt;the Wikidot site I'm working on&lt;/a&gt;. &amp;nbsp;I want to know what you want to see on the site. &amp;nbsp;Right now, it's my super-spam RSS feed, which has all of my activity from Hulu, Netflix, Wakoopa, Twitter, and my blogs all in one place.  &lt;span style="font-family: arial; font-size: 12px; white-space: pre;"&gt;&lt;iframe frameborder="0" height="521" marginheight="0" marginwidth="0" src="http://spreadsheets.google.com/embeddedform?key=rRGT-bZyxBjyeh2s6OEDYPA" width="500"&gt;&amp;lt;p&amp;gt;&amp;lt;p&amp;gt;Loading...&amp;lt;/p&amp;gt;&amp;lt;/p&amp;gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-4529433295310248840?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/4529433295310248840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/06/call-for-opinion.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4529433295310248840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4529433295310248840'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/06/call-for-opinion.html' title='A call for opinion!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-8225659820259059598</id><published>2009-06-12T12:50:00.000-07:00</published><updated>2009-06-12T12:50:38.149-07:00</updated><title type='text'>The Smart phone competition!</title><content type='html'>So, over on &lt;a href="http://gizmodo.com/"&gt;Gizmodo.com&lt;/a&gt; they did a review of the &lt;a href="http://gizmodo.com/5288488/smartphone-buyers-guide-the-best-of-the-best"&gt;latest and greatest smart phones&lt;/a&gt;, and not much to my&amp;nbsp;surprise, Windows Mobile wasn't on the list! &amp;nbsp;haha. &amp;nbsp;Ok, I am biased against Windows, which is the only reason I say that; in all reality, Windows mobile is a decent mobile operating system. &lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;iPhone 3.0 VS Android 1.5&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Anyway, the review put my favorite phone OS (Android) against my arch&amp;nbsp;nemesis&amp;nbsp;(iPhone). &amp;nbsp;So I have to bask in this little bit of glory. &amp;nbsp;Both phone operating systems are nearly the same in terms of highlighted features in the review, with the exception that Android doesn't work with iTunes, Android doesn't officially support tethering (even though the iPhone carrier doesn't support it), and Android supports both background apps and third-party &amp;nbsp;Apps. &amp;nbsp;I do have to say that I am disappointed that the review didn't mention that Android supports the ability for user's to add third party video codecs, which iPhone doesn't. &lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;iPhone 3G S VS. HTC Magic&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;On a hardware level, the iPhone has multi-touch and a headphone port, and I have to admit I would really like to see both of those things added to an Android phone. &amp;nbsp;The plus side is that anyone can make an Android phone, so one day it is possible to add multi-touch to a phone for Android. &amp;nbsp;On the Plus side, the magic has a microSD card slot, which gives it the potential for more than 32GB of storage, and the Magic has a 3.2&amp;nbsp;mega pixel&amp;nbsp;camera, which is slightly more than the iPhone. &lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;Cost&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So, both phones are "linked" to a subscription. &amp;nbsp;The difference in cost between the two phones is fairly significant right off the bat. &amp;nbsp;With a 2 year contract, the iPhone is either $200 or $300, while the HTC Magic is $150. &amp;nbsp;The iPhone is permanently linked to AT&amp;amp;T, however the Magic is only linked to T-mobile for the contract, and after your contract, you can take an Android phone to another phone provider that uses SIM cards. &amp;nbsp;Then in terms of your cost over the next two years, the iPhone's average cost is $290-$390 more than Android, and the maximum cost is $750 - $850 more for the iPhone. &amp;nbsp;In fact, between the iPhone 3G S, HTC Magic, Blackberry Storm, and the Palm Pre, the average cost for the Magic is less than any other smart phone, and only the Palm Pre offers a cheaper plan if you compare the unlimited everything plans. &lt;br /&gt;&lt;br /&gt;So, which phone do you think I'm going to get? &amp;nbsp;To me it's pretty obvious because I decided I would get an Android phone last year, and I will honestly probably hold off until next year to get an Android phone just because I want to see if Verizon is ever going to jump on the bandwagon. &amp;nbsp;I honestly have had some bad luck with T-Mobile over the past couple years, and I am holding out for multi-touch and an 1/8" jack. &lt;br /&gt;&lt;br /&gt;Anyway, I am biased toward Android, and the iPhone is a really good phone; &amp;nbsp;That's why they are my arch nemesis.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-8225659820259059598?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/8225659820259059598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/06/smart-phone-competition.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/8225659820259059598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/8225659820259059598'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/06/smart-phone-competition.html' title='The Smart phone competition!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-5843952613716820150</id><published>2009-06-09T10:53:00.001-07:00</published><updated>2009-06-09T10:53:03.014-07:00</updated><title type='text'>Smart power outlets?  Awesome!</title><content type='html'>&lt;object height="326" width="446"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="bgColor" value="#ffffff"&gt;&lt;/param&gt;&lt;param name="flashvars" value="vu=http://video.ted.com/talks/embed/JohnLaGrou_2009-embed_high.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JohnLaGrou-2009.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=566" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/JohnLaGrou_2009-embed_high.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JohnLaGrou-2009.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=566"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;So, I have to admit that this video does kinda seem like it's just promoting a product, but it's a totally awesome idea! &lt;br /&gt;&lt;br /&gt;If you aren't there to use power, you can turn your outlets off! &lt;br /&gt;&lt;br /&gt;Anyway... just some food for thought.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-5843952613716820150?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/5843952613716820150/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/06/smart-power-outlets-awesome.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5843952613716820150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5843952613716820150'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/06/smart-power-outlets-awesome.html' title='Smart power outlets?  Awesome!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-739560393127120951</id><published>2009-03-27T13:06:00.000-07:00</published><updated>2009-03-27T13:06:46.651-07:00</updated><title type='text'>Earth Hour!  Take part, and help a little bit...</title><content type='html'>&lt;a href="http://www.earthhouramericas.org/content/toolkit_universal/Earth%20Hour%20Logo.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://www.earthhouramericas.org/content/toolkit_universal/Earth%20Hour%20Logo.jpg" style="cursor: move;" width="199" /&gt;&lt;/a&gt;So, I have recently been talking alot about my own power usage over the past couple weeks, and here is your chance to do sometime!&amp;nbsp; Tomorrow March 28th from 9:30 - 10:30 PM (your local time) turn off all your lights!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;br /&gt;&lt;object height="344" style="clear: left; float: left;" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/2Qr8QXWzT9U&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/2Qr8QXWzT9U&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;/center&gt;&lt;br /&gt;This movement is getting bigger, and while it isn't enough to solve the problem of using too much power, it definately helps a little bit.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-739560393127120951?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/739560393127120951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/03/earth-hour-take-part-and-help-little.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/739560393127120951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/739560393127120951'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/03/earth-hour-take-part-and-help-little.html' title='Earth Hour!  Take part, and help a little bit...'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-420976393341597399</id><published>2009-03-25T10:23:00.003-07:00</published><updated>2009-03-25T10:23:04.238-07:00</updated><title type='text'>I know it's not tech... but it's important!</title><content type='html'>&lt;object height="295" width="480"&gt;&lt;param name="movie" value="http://www.youtube.com/v/hjJm_Hzc6Yg&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/hjJm_Hzc6Yg&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;Go to &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;Whitehouse.gov&lt;/a&gt;!&amp;nbsp; &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;Obama is hosting an experiment&lt;/a&gt; to try and get the American people involved in a nation wide town hall!&lt;br /&gt;&lt;br /&gt;All you have to do is &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;go to the site&lt;/a&gt;, &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;vote on a few questions&lt;/a&gt; other people are asking, and maybe even &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;propose a few questions of your own&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I think &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;this is an awesome idea&lt;/a&gt;, and everyone needs to take part.&lt;br /&gt;&lt;br /&gt;Thanks... and &lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;participate!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.whitehouse.gov/openforquestions/"&gt;FYI, all of the hyperlinks go to this site.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-420976393341597399?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/420976393341597399/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/03/i-know-its-not-tech-but-its-important.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/420976393341597399'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/420976393341597399'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/03/i-know-its-not-tech-but-its-important.html' title='I know it&apos;s not tech... but it&apos;s important!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-2685561159541010196</id><published>2009-03-23T13:34:00.000-07:00</published><updated>2009-03-23T13:34:37.933-07:00</updated><title type='text'>Quick Post about Ligh bulbs...</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://spreadsheets.google.com/pub?key=pWlPEQUMkKulkNW879zswSA&amp;amp;oid=2&amp;amp;output=image" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="298" src="http://spreadsheets.google.com/pub?key=pWlPEQUMkKulkNW879zswSA&amp;amp;oid=2&amp;amp;output=image" style="cursor: move;" width="420" /&gt;&lt;/a&gt;&lt;/div&gt;If you were to turn on a compact flocecent light, an incondescent light, and use my entertainment center normally for one year, you would use about 1,587 kWhs of electricity.&amp;nbsp; If you were to break down which one used the most... you would get the pie chart to the left.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;You would spend $80 more per year to use the incondescent light.&amp;nbsp; And you would produce at least 696 more lbs of CO&lt;sup&gt;2&lt;/sup&gt; per year with the incondescent light.&lt;br /&gt;&lt;br /&gt;So, next time you think of how you can cut down on your power bill, just remember, compact florescent light my be annoying in the way they flicker when you first turn them on, but each one could save you up to $80 a year... now how many light do you have in your house?&lt;br /&gt;&lt;br /&gt;that's all for now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-2685561159541010196?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/2685561159541010196/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/03/quick-post-about-ligh-bulbs.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2685561159541010196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2685561159541010196'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/03/quick-post-about-ligh-bulbs.html' title='Quick Post about Ligh bulbs...'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-5101808814757722907</id><published>2009-03-20T15:49:00.001-07:00</published><updated>2009-03-20T15:49:27.920-07:00</updated><title type='text'>It's Obama on Jay Leno</title><content type='html'>&lt;object data="http://widgets.nbc.com/o/4727a250e66f9723/49c41d3879bc8f47/49c3c1ed3e19dd2a/57df975a/-cpid/89a6efe6bf3620e6" height="283" id="W4727a250e66f972349c41d3879bc8f47" type="application/x-shockwave-flash" width="384"&gt;&lt;param name="movie" value="http://widgets.nbc.com/o/4727a250e66f9723/49c41d3879bc8f47/49c3c1ed3e19dd2a/57df975a/-cpid/89a6efe6bf3620e6" /&gt;&lt;param name="wmode" value="transparent" /&gt;&lt;param name="allowNetworking" value="all" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-5101808814757722907?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/5101808814757722907/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/03/its-obama-on-jay-leno.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5101808814757722907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5101808814757722907'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/03/its-obama-on-jay-leno.html' title='It&apos;s Obama on Jay Leno'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-1872752441897802307</id><published>2009-03-15T16:53:00.000-07:00</published><updated>2009-03-15T16:53:00.562-07:00</updated><title type='text'>The Kill-A-Watt experiment</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_lAp99O0l7Rs/Sb2T2vyeISI/AAAAAAAAu9o/uIp1GvhAF8w/s1600-h/DSC02541.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_lAp99O0l7Rs/Sb2T2vyeISI/AAAAAAAAu9o/uIp1GvhAF8w/s320/DSC02541.JPG" style="cursor: move;" /&gt;&lt;/a&gt;So, as part of the requirements for the Tweet-A-Watt, I also purchased a P3 Kill-A-Watt (model#: 4400).&amp;nbsp; So, before I open the thing up, I was curious what kinds of numbers it produces.&amp;nbsp; So I started a few tests.&amp;nbsp; I have completed the first test so far, and I have published the spread sheet that I am tracking the data in.&amp;nbsp; So far, I am monitoring Wattage, Amperage, and I will be doing some quality of service(QOS) tests too... just for kicks.&lt;br /&gt;&lt;br /&gt;And so far, I think the results have been interesting.&amp;nbsp; So, most of this data should be self explanitory.&amp;nbsp; I hope.&amp;nbsp; I have completed one test, so the results should be fairly accurate for test 1, however, test 2 is still in progress, and because I haven't created a way for the Kill-A-Watt to transmit the data to my computer, the kW section has to be entered in manually.&amp;nbsp; One more piece of data that is not clearly present in this chart is the cost per kilowatt.&amp;nbsp; On a separate sheet (which I did not publish) I recored my power usage in kilowatt hours for the past six months, and compared that data to the dollar amount of my bill (data provided by puget sound entergy.)&amp;nbsp; Then I took the average from the past six months, and came to the amount of $0.105695 as the average price per kilowatt hour.&amp;nbsp; Then I used that number to get the price per watt hour, and then multiply that number by the watt hours that I use.&amp;nbsp; As an extra and not yet useful piece of information, I have the % of my hourly average.&amp;nbsp; This is also based on my Puget Sound Energy bill, except I divided the months into day (because each bill tells me how many days it covers) and then days into hours, and take the average of all six months.&amp;nbsp; I imagine that this data will become more accurate over time, as I enter more electric bills into the table.&lt;br /&gt;&lt;br /&gt;&lt;iframe frameborder="0" src="http://spreadsheets.google.com/pub?key=pWlPEQUMkKulkNW879zswSA&amp;amp;output=html&amp;amp;gid=2&amp;amp;single=true&amp;amp;range=A1:S6" width="100%"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;In the above table, you should see a section for QOS, however, until I create a database to log that data in regular intervals, the data provided is useless.&amp;nbsp; It merely shows a snapshot that represents a small fraction of time.As far as QOS data is concerned, I am monitoring Volt, Frequency, Watt meter, Volt-Amps (VA), Power Factor (PF).&amp;nbsp; I still don't know what the difference between the Watt meter and kW functions are;&amp;nbsp; I assume is is probably the case that the watt meter uses a consistent amount of time, and the kW funciton meters kW hours over the total time that the unit was plugged into the wall.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;Volt-Amps are constantly changing with the load put on the system.&amp;nbsp; For most purposes they are the same thing as watts, however for determining power quality, they can be used to determine is you home handles low power loads better than high power loads.&lt;br /&gt;&lt;br /&gt;Power Factor (PF) is usually expressed as a percent because it is a number between 0 and 1.&amp;nbsp; It is the ratio of real power to apparent power, and is a fairly good indicator of the efficiency of your power grid.&amp;nbsp; Normally a residential PF is higher, and commercial is lower.&amp;nbsp; To compensate for a low PF, the utility companies will need to install additional equipment such as power regulators and capacitors.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;So, now you know!&lt;br /&gt;&lt;br /&gt;Anyway, as far as my power quality.. I know that I have seen the Voltage from the outlet my entertainment center is plugged into as high as 122 Volts and as low as 116 Volts.&amp;nbsp; The frequency is usually pretty close to 59.9Hz, but I did see it dip to about 57Hz.&amp;nbsp; My power factor is 88%, which makes me think my connection to the grid is fairly close to a power sub-station (like the one over by the Boeing plant), or at least is some what efficient. My Volt-Amperes seems to be fairly consistant around 120VA.&lt;br /&gt;&lt;br /&gt;I know it really doesn't mean a lot now, however, I will be able to collect this data over time, and hopefully soon I will be able to create a picture of what normal power consumption is supposed to look like.&lt;br /&gt;&lt;br /&gt;Anyway, more to come soon.&amp;nbsp; I'm still troubleshooting the whole XBee software issue&amp;nbsp; I guess I need to compile the driver as a kernel module, or recompile the kernel with the driver in it.&amp;nbsp; So... I'll post some instructions for anyone who is interested in the project.&lt;br /&gt;&lt;br /&gt;So, that's all for now.&lt;br /&gt;&lt;br /&gt;Later, &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-1872752441897802307?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/1872752441897802307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/03/kill-watt-experiment.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/1872752441897802307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/1872752441897802307'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/03/kill-watt-experiment.html' title='The Kill-A-Watt experiment'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_lAp99O0l7Rs/Sb2T2vyeISI/AAAAAAAAu9o/uIp1GvhAF8w/s72-c/DSC02541.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-5835883507481267284</id><published>2009-03-14T17:52:00.000-07:00</published><updated>2009-03-14T17:52:29.256-07:00</updated><title type='text'>XBee Module - My 1st electronics project!</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_lAp99O0l7Rs/SbxKmfzzCEI/AAAAAAAAu9Q/TsckxOJnunM/s1600-h/DSC02519.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_lAp99O0l7Rs/SbxKmfzzCEI/AAAAAAAAu9Q/TsckxOJnunM/s320/DSC02519.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;So, I have to admit I was a little surprised that the kit I ordered wasn't already put together, however I guess it gave my a chance to learn hot to solder!&amp;nbsp; So, I broke out my soldering iron and got to work!&amp;nbsp;&lt;br /&gt;&lt;br /&gt;The first thing I learned was that I had two problems.&amp;nbsp; the gauge of solder I was using was too thick.&amp;nbsp; I needed about a 23 gauge solder, but what I had was about 16 gauge solder.&amp;nbsp; The second thing I learned was that the point on my soldering iron was too big, however a little work with a file, and I was able to take the size of the soldering tip down to what I needed.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_lAp99O0l7Rs/SbxLBXxRDLI/AAAAAAAAu9Y/ToboMoLxH1k/s1600-h/DSC02527.JPG" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_lAp99O0l7Rs/SbxLBXxRDLI/AAAAAAAAu9Y/ToboMoLxH1k/s320/DSC02527.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;As you can see in this picture, because the gauge of sodder I had was too thick, I ended up with these big ugly clumps of sodder at the top of the unit, and because the iron wasn't sharp enough, I was melting the silicon on the board when I soddered each point.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;When I got to the 14 pins in the middle, and the 7 pins on each side, I had sharpened my soldering iron and gotten a smaller gauge solder.&amp;nbsp; So there I didn't have the huge clumps of useless metal.&amp;nbsp; I have a strange feeling that once I get around to testing this thing, the extra solder will need to be removed, but my friend didn't come over with his multimeter, so I haven't done that yet.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_lAp99O0l7Rs/SbxLC0ntQYI/AAAAAAAAu9g/VvhDq5elYzY/s1600-h/DSC02534.JPG" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_lAp99O0l7Rs/SbxLC0ntQYI/AAAAAAAAu9g/VvhDq5elYzY/s320/DSC02534.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;However, at the very least, I must have done something right, because when all was done, the XBee chip slid right into place, and the USB adapter worked fine.&lt;br /&gt;&lt;br /&gt;Now, I guess the next step will be to get some form of software to work with the module.&amp;nbsp; Then I will be able to flash the firmware, and start transmitting some data.&lt;br /&gt;&lt;br /&gt;My next step is to get my second module in the mail (I know, I was stupid and only ordered one module so it doesn't really do anything yet.)&amp;nbsp;&lt;br /&gt;&lt;br /&gt;However, I do have my Kill-A-Watt, so that means I am one step closer to my goal of having a way to log my power usage into a database!&amp;nbsp; The original project was called a Twit-A-Watt (post power usage to twitter, but I really didn't care about the twitter part.&amp;nbsp; Just a way for me to see how much power I am using.&lt;br /&gt;&lt;br /&gt;The cool part is that right now, I know that my DSL bridge and wireless router have used .02 Watts in the past 2 hours (.01 Watts/Hour.)&amp;nbsp; I guess it's not as cool as sa hooking it up to my TV, but it is something.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Actually, I should probably just hook it to my TV and see what happens.&amp;nbsp; OK, that's what I'm going to do now.&lt;br /&gt;&lt;br /&gt;Oh, BTW, I have a few web pages that I want to note here so other people can do what I have done:&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;a href="http://www.ladyada.net/make/tweetawatt/"&gt;The web page for the original Tweet-A-Watt project&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The general steps I have taken so far are:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16882715001&amp;amp;nm_mc=OTC-Froogle&amp;amp;cm_mmc=OTC-Froogle-_-Electronic+Gadgets-_-P3+International-_-82715001"&gt;Buy a P3 4400 Kill-A-Watt I chosse newegg.com because they had the right price&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.adafruit.com/index.php?main_page=index&amp;amp;cPath=29&amp;amp;sessid=cfffd3d3a4d072b28f22c49b3be6f54e"&gt;Buy 2 Xbee modules, and 2 Xbee Adapters and a FTDI (USB) cable.&lt;/a&gt;&amp;nbsp;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ladyada.net/make/xbee/make.html"&gt;Assemble the XBee adapter kit&lt;/a&gt;&amp;nbsp;&lt;/li&gt;&lt;/ul&gt;And that's what I've done so far.&amp;nbsp; Now, the actual Tweet-A-Watt project has some more to it than just what I've done, and on the original project's page they have a detailed list of all the small parts you need (diodes, capasitors, heat shrink, regulators, etc,) and that page is a good resource to figure out how to do everything except assemble the XBee adapter kit (however it does link to the site that contains the instructions.)&lt;br /&gt;&lt;br /&gt;So, yea, that's what I've done so far, and now I have to work on the software aspect of getting the Xbee to do something (anything!)&amp;nbsp;&lt;br /&gt;&lt;br /&gt;So, that's all for now, and I'll keep updating as things move along.&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-5835883507481267284?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/5835883507481267284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/03/xbee-module-my-1st-electronics-project.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5835883507481267284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/5835883507481267284'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/03/xbee-module-my-1st-electronics-project.html' title='XBee Module - My 1st electronics project!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_lAp99O0l7Rs/SbxKmfzzCEI/AAAAAAAAu9Q/TsckxOJnunM/s72-c/DSC02519.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-4510790471172009499</id><published>2009-02-01T14:13:00.000-08:00</published><updated>2009-02-01T14:29:16.723-08:00</updated><title type='text'>So, are they delaying digital or what?</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://lh3.ggpht.com/_lAp99O0l7Rs/SYM6GH9zYfI/AAAAAAAAs8A/LnSK4X7j_tk/s1600/DSC02423.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://lh3.ggpht.com/_lAp99O0l7Rs/SYM6GH9zYfI/AAAAAAAAs8A/LnSK4X7j_tk/s400/DSC02423.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;Here is a picture of my newest antenna; which is only to keep reminding you about the digital switch over that is coming!&amp;nbsp; There has been a lot off talk about delaying the switch to DTV.&amp;nbsp; Obama said delay it and the Senate agreed, but then the House said no.&amp;nbsp; So, it looks like as of right now, right t his moment, February 17th is the day you need to be ready for digital.&amp;nbsp; Which means that you will want to build an antenna.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I keep stressing the conversion to digital now because it is important to get ready before the analog signals are gone.&amp;nbsp; Both because you can use the analog signals to help find reliable digital signals, and because nobody likes to not have the option of watching TV... even though Hulu.com is so much cooler.&amp;nbsp; I also keep stressing to get ready now because we were told about this 10 years ago, and it is time to stop dragging you feet.&amp;nbsp; Everyone has waited until the last minute to request the coupon for the digital boxes, and now there is a waiting list to get a coupon.&amp;nbsp; You have until March to request a coupon, but you will have to wait to get one.&lt;br /&gt;&lt;br /&gt;In the mean time, I've been hearing about more and more people who are silly enough to go out and buy there $40 and $50 DTV antennas when you can build a much better and more reliable antenna for under $10!&amp;nbsp; I even build an antenna out of junk I found laying around the house that worked better than the one I purchased.&lt;br /&gt;&lt;br /&gt;It is the time to be thrifty, and this is one of those situations where you actually benefit from not wasting your money by getting a better product.&amp;nbsp; So, everyone keep in mind it is time to upgrade.&amp;nbsp; Even if the revote that may take place this week happens, don't keep procrastinating.&amp;nbsp; You can begin receiving the benefits now from DTV, so why keep wasting you time with analog?&lt;br /&gt;&lt;br /&gt;Embrace the ditigal change!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-4510790471172009499?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/4510790471172009499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/02/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4510790471172009499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4510790471172009499'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/02/blog-post.html' title='So, are they delaying digital or what?'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_lAp99O0l7Rs/SYM6GH9zYfI/AAAAAAAAs8A/LnSK4X7j_tk/s72-c/DSC02423.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-9092269694532959223</id><published>2009-01-27T01:06:00.001-08:00</published><updated>2009-01-27T01:23:57.447-08:00</updated><title type='text'>How to get the channels you want from you DTV Antenna</title><content type='html'>One thing that everyone who receives TV over the airwaves should start doing is working on setting up your digital TV experience before the digital switch!&amp;nbsp; I have heard of a great many people having trouble picking up channels.&amp;nbsp; It wasn't until today that I finally got Fox.&amp;nbsp; So, I'm positive that I get every channel now, but if you are having trouble picking up a digital channel that you can get the analog equivalent for, then I have some advice on what to do.&lt;br /&gt;&lt;br /&gt;Here are some tips for the procedure I used:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Tune your TV to the analog channel you are looking to get.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Just about every analog channel should have one or more digital channels.&lt;/li&gt;&lt;li&gt;Some of these are completely new channels, but others are just formatted to fit different TVs better&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Move your antenna around your home while watching the TV to find the spot with best reception&lt;/li&gt;&lt;ul&gt;&lt;li&gt;This does not have to be the spot where you will eventually mount the antenna &lt;br /&gt;&lt;/li&gt;&lt;li&gt;The exact spot and direction of where you hold the antenna may change reception quality&lt;/li&gt;&lt;li&gt;Higher is not always better&lt;/li&gt;&lt;li&gt;Near a window is not always better.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;I got the best reception in the middle of the room about 4.5 feet off the floor&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;li&gt;Hold the antenna in place while your TV or converter box goes through the auto-program routine...&lt;/li&gt;&lt;li&gt;Check your list of channels, and take note of how many channels are available&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Depending on your device, you may not be able to watch digital channels that the Auto-Program function does not find, even if you know the channel is there. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;You may decide later that you cannot live without a channel you never had before, however it may take a long time to find a single spot that receives every single channel available.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;If the channel doesn't come in, then repeat steps 2 - 4 until either it works or the TV defeats you...&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;it took me 3 days and 28 antenna designs to win...&lt;/li&gt;&lt;li&gt;I spent about 1.5 hours repeating steps 2 - 4 with my fractal antenna... then I won!&lt;/li&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;WARNING:&lt;/b&gt; The thrill of defeating the TV may make watching the TV seem less exciting.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;li&gt;Once you get all the digital channels you are looking for, tune your TV to the one that was hardest to get, and seek a spot to mount your antenna.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;If you spend as much time as I have at this, you can visualise the wavelength of a digital TV signal; which is really kind of cool and sad at the same time...&lt;/li&gt;&lt;li&gt;while finalising your setup keep in mind that you want to make sure your TV works while you are sitting in your normal TV viewing spot... it doesn't do you much good if you can only watch TV while standing with your hand on the ceiling...&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;br /&gt;Other than that, I'm not sure what else there is to say.&lt;br /&gt;&lt;br /&gt;Good luck, and embrase the Digital Revolution!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-9092269694532959223?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/9092269694532959223/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/01/how-to-get-channels-you-want-from-you.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/9092269694532959223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/9092269694532959223'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/01/how-to-get-channels-you-want-from-you.html' title='How to get the channels you want from you DTV Antenna'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-6968703570475010255</id><published>2009-01-26T23:14:00.000-08:00</published><updated>2009-01-27T01:24:26.841-08:00</updated><title type='text'>Digital Antenna Experiment - Part 3</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://lh3.ggpht.com/_lAp99O0l7Rs/SX6t-L24KKI/AAAAAAAAs3s/FUGGmn9ubvk/s1600/DSC02418.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://lh3.ggpht.com/_lAp99O0l7Rs/SX6t-L24KKI/AAAAAAAAs3s/FUGGmn9ubvk/s320/DSC02418.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;Well, I'll start with an action shot of my most recent design... and guess what;&amp;nbsp; I finally get Fox!&lt;br /&gt;&lt;br /&gt;That's right, this little baby picks up 23 digital channels (fox has a 24 hour weather channel too.)&amp;nbsp; I think the best part is that almost every channel is high definition, and even though they pushed back the conversion to digital to June, I am much happier with Digital than I ever was with an antenna.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;Anyway, I want to get into a little bit about how I made my antenna. &lt;br /&gt;&lt;br /&gt;For this duct-tape beauty, I actually went to the store and bought some wire.&amp;nbsp; That's right, this one isn't just peiced together with junk that I found around the house, or that people just gave to me for free.&lt;br /&gt;&lt;br /&gt;I spent a whole $3!&lt;br /&gt;&lt;br /&gt;All you need, is to go to your local hardware store and buy 28 inches of 6 gauge copper wire, and you might want to go to an electronics store and buy a TV-matching transformer.&amp;nbsp; The rest you can peice together from whatever you want.&amp;nbsp; it all depends on if you care about the way the thing works.&lt;br /&gt;&lt;br /&gt;However, there is one important rule to follow... don't connect to two sides together with a piece of metal.&amp;nbsp; It won't hurt anything, but your reception will go down the tube.&lt;br /&gt;&lt;br /&gt;So anyway... back to the instructions.&lt;br /&gt;&lt;br /&gt;Here is a breif breakdown of how to make this antenna:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Get your materials&lt;/li&gt;&lt;ol&gt;&lt;li&gt;&amp;nbsp;32 inches of 6 gauge copper wire&lt;/li&gt;&lt;ul&gt;&lt;li&gt;you may want extra in case you make a mistake, get extra wire in 8 inch increments, each increment will allow for 1 mistake&lt;/li&gt;&lt;li&gt;The directions that originally inspired me to make this said for 18 gauge... I disagreed!&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;a TV (Impedance Matching) Transformer&lt;br /&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;I am told that you want 300 - 50 ohms&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;duct tape and electrical tape&lt;/li&gt;&lt;ul&gt;&lt;li&gt;(although some people say to use screws with washers)&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;A this piece of plastic about 4 X 8 inches in size&lt;/li&gt;&lt;ul&gt;&lt;li&gt;I broke one of those magnetic picture things that you get from the dollar store.&lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;ul&gt;&lt;li&gt;it wasn't one of the ones my sister got me...&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;li&gt;Needle nose vice grips (I suppose you could probably use pliers)&lt;br /&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;You may want two pairs, but I made do with what I had&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;A good pair of wire cutters &lt;/li&gt;&lt;ul&gt;&lt;li&gt;or just ask the person at the hardware store to cut 6 - 8" strips &lt;/li&gt;&lt;/ul&gt;&lt;li&gt;An 8 inch ruler&lt;/li&gt;&lt;ul&gt;&lt;li&gt;I used a carpenter's square&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;A protractor&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Yet again the carpenter's square and a piece of paper...&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;A marker&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;Make your fractals&lt;/li&gt;&lt;ol&gt;&lt;li&gt;Cut an 8" piece of wire&lt;/li&gt;&lt;li&gt;Measure out and mark 1 inch increments in the copper&lt;/li&gt;&lt;ul&gt;&lt;li&gt;you may want to make a notch in the copper because the marker can rub off&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Draw a straight line on a piece of paper, then use the protractor (or carpenter's square) to find a 60 degree angle, and draw a second line that passes through the first line at 60 degrees.&amp;nbsp;&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;You now have a 60 degree angle, and a 120 degree angle on the paper&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;bend the wire at each inch marker using this patter:&lt;/li&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://lh3.ggpht.com/_lAp99O0l7Rs/SX7CFNRAywI/AAAAAAAAs5o/Y-kd_TYjhaU/s1600/FractalInstructions.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://lh3.ggpht.com/_lAp99O0l7Rs/SX7CFNRAywI/AAAAAAAAs5o/Y-kd_TYjhaU/s400/FractalInstructions.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;bend the wire 60 degrees to the left&lt;/li&gt;&lt;li&gt;Then bend the wire 120 degrees to the right&lt;/li&gt;&lt;li&gt;repeat steps one 1 and 2 two more times&lt;/li&gt;&lt;li&gt;then bend the wire 60 degrees to the left&amp;nbsp;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;Now do this 3 more times&amp;nbsp; so you have 4 fractals. &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;li&gt;Make your dipoles (After all, this is a type of dipole antenna)&lt;/li&gt;&lt;ul&gt;&lt;li&gt;For this, you need to take 2 straight pieces of 6" to 8 " wire&lt;/li&gt;&lt;ul&gt;&lt;li&gt;I really don't know yet if it helps to use larger pieces of wire. &lt;/li&gt;&lt;/ul&gt;&lt;li&gt;use electrical tape to fasten one fractal to the end of each wire&lt;/li&gt;&lt;ul&gt;&lt;li&gt;The picture best illustrates how this looks&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;li&gt;Mount the dipoles and the transformer&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Layout your piece of plastic, and draw a few lines on it so that the antenna looks symetrical.&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;There probably is more science to what works best, but if you use duct tape, then you can experiment on your own...&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Connect one wire from the transformer to each dipole, and there you have it!&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;So... these are obviously simplified instructions.&amp;nbsp; I've only built two of these so far, and I haven't figured out if it is better to use thicker or thinner gauge wire, but I have to say that copper seems to work better than a coat hanger!&lt;br /&gt;&lt;br /&gt;I would also like to take this opportunity to note that the location of your antenna is very important.&amp;nbsp; I have a 25 foot coax cable so I could move my antenna to the perfect spot. As you can see here:&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://lh4.ggpht.com/_lAp99O0l7Rs/SX6yZK5Fl-I/AAAAAAAAs4c/GlRjfhATwe0/s1600/Entertainment%20Center.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://lh4.ggpht.com/_lAp99O0l7Rs/SX6yZK5Fl-I/AAAAAAAAs4c/GlRjfhATwe0/s400/Entertainment%20Center.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;I had to go all over the apartment before I found the "majic" spot where the antenna picks up all the channels and a spot where I could actually mount an antenna;&amp;nbsp; I had done similar chores with all of my other anntenna's, but I just increased my cable length, and it was worth the extra couple of bucks to get a long coax cable.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So I plan to not mess&amp;nbsp; around too much with my antenna situation for a few days... and maybe I'll actually watch a little of the TV I've worked so hard to get reception for... or maybe I'll just watch all the shows I've missed on Hulu.&lt;br /&gt;&lt;br /&gt;but the important part is that now I have a choice between watching the shows whenever I want starting the day after they are aired on TV, or watching the shows at the mercy of the network exectutives!&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Next time: After you get your antenna, you need to actually fine tune your stations...I'll talk about my battle to get Fox, and how I finally got it done.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-6968703570475010255?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/6968703570475010255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/01/digital-antenna-experiment-part-3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/6968703570475010255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/6968703570475010255'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/01/digital-antenna-experiment-part-3.html' title='Digital Antenna Experiment - Part 3'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_lAp99O0l7Rs/SX6t-L24KKI/AAAAAAAAs3s/FUGGmn9ubvk/s72-c/DSC02418.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-2994504952577699462</id><published>2009-01-26T01:54:00.000-08:00</published><updated>2009-01-26T02:28:20.041-08:00</updated><title type='text'>Digital Antenna Experiment - Part 2</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://lh4.ggpht.com/_lAp99O0l7Rs/SX2IkcB5_MI/AAAAAAAAs2M/oefJZ3LMyDE/s1600/DSC02416.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img src="http://lh4.ggpht.com/_lAp99O0l7Rs/SX2IkcB5_MI/AAAAAAAAs2M/oefJZ3LMyDE/s320/DSC02416.JPG" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;Today's experiment was to try a Fractal Antenna.  I have heard these are the antenna to have, and they really aren't that hard to make.&lt;br /&gt;&lt;br /&gt;However, I did a really quick job on this one, so the angles weren't perfect.  After playing with it a little bit, I think that it may be work purchasing good materials to make the antenna with.&lt;br /&gt;&lt;br /&gt;For this one, I used two coat hangers, a transformer I had laying around, some random peice of plastic, duct tape, electrical tape, and two screws.  As it turns out, I think next time I will replace the two screws with electrical tape.&lt;br /&gt;&lt;br /&gt;I think that due to the large amount of wast that I had left over from the coat hangers, I probably could have used 1 coat hanger, but I would have had to straighten out the coat hanger completely.&lt;br /&gt;&lt;br /&gt;So, I tried to follow these directions that I found on &lt;a href="http://www.instructables.com/id/How_to_make_a_fractal_antenna_for_HDTV_DTV_plus_/" target="_blank"&gt;instructables.com&lt;/a&gt; but I didn't have all the stuff they said to use, and I was shooting for more of a $0 budget rather than $15.&lt;br /&gt;&lt;br /&gt;I also opted against the reflector, but as soon as I find a scrap peice of aluminum, I will be right on that.  (I may canabalize my Xbox case, there is a big peice in there... or I saw this chicken wire idea on YouTube.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So, down to what this thing can do!  Well, it still doesn't get FOX, but I can adjust the length of Coax cable that I have attached, and the antenna seems very sensitive to direction, height, and angle.   Sometimes I can pick up the analog signal enough to get sound, but I haven't gotten the digital signal yet.&lt;br /&gt;&lt;br /&gt;The real question is wether it is worth the effort.  And I think the answer is yes!  We have beaten the all mighty nail on the end of a Coax cable with this one!  However, we didn't beat it by much.  Today, while playing around with my antenna (AKA coax cable with a nail on the end)  and I found that if I continually run the autoprogram feature, sometimes my antenna wouldn't pick up all the channels, however, the Coat-Hanger fractal antenna will consistantly pick up 21 channels (even though 9-2 and 51-1 are in spanish, 16-1 and 16-2 are the same, but in different resolutions, 9-3 and 28-2 are completely identical, and 33-4 is the worship channel.)  So despite everything, I still have 16 completely unique channels that I can watch, including a channel for little kids (in the event that someone from my family actually comes out to Seattle with one of my neices of nephews.)&lt;br /&gt;&lt;br /&gt;So, the coat-hnger fractal antenna is worth the time to put together in my book, and with a little bit of luck, I might be able to put one together that actually picks up FOX.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-2994504952577699462?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/2994504952577699462/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/01/digital-antenna-experiment-part-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2994504952577699462'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2994504952577699462'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/01/digital-antenna-experiment-part-2.html' title='Digital Antenna Experiment - Part 2'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_lAp99O0l7Rs/SX2IkcB5_MI/AAAAAAAAs2M/oefJZ3LMyDE/s72-c/DSC02416.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-9173143307355755627</id><published>2009-01-24T22:42:00.000-08:00</published><updated>2009-01-25T03:34:20.133-08:00</updated><title type='text'>Digital Antenna Experiment - Part 1</title><content type='html'>So, lately there has been a lot of talk on the Internet about digital antennas.  So, after reviewing a few videos I decided to experiment a little bit with what I happen to have laying around the house.&lt;br /&gt;&lt;br /&gt;I have the results summary at the end if that is all you care about.&lt;br /&gt;&lt;br /&gt;Let my start by introducing the testing environment I have.  My apartment is 25 feet off the ground, and I get the best reception about 7 feet above my floor.  Ground level at my location is approximately 14 feet above sea level.  So, I conducted all of my tests at an elevation of 46 feet above sea level.  &lt;br /&gt;&lt;br /&gt;Most of the channels I receive are broadcast out of Seattle, WA.  This means that the signals I am receiving are 10 Miles North West of my location.&lt;br /&gt;&lt;br /&gt;So, now we can talk about the materials I used in this experiment.&lt;br /&gt;&lt;br /&gt;I had 3 types of nails, and 1 Screw&lt;br /&gt;&lt;ul&gt;&lt;li&gt;a 3" Galvanized Steel screw&lt;/li&gt;&lt;li&gt;a 3 7/8" 6 penny rusty steel nail&lt;/li&gt;&lt;li&gt;a 3 3/8" 6 penny rust-proof steel nail&lt;/li&gt;&lt;li&gt;a 3 3/4" Aluminium nail&lt;/li&gt;&lt;/ul&gt;I also had 2 - 5 foot lengths of coax cable, a Jensen model TV911 amplified digital antenna, and 2 - 7" deep tin cans&lt;br /&gt;&lt;ul&gt;&lt;li&gt;a 4 1/4" diameter can (Tin Can)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;a 6 1/8" diameter can (Hershey's Chocolate Can)&lt;/li&gt;&lt;/ul&gt;In each experiment I tried adjusting the height of the antenna, direction of the antenna (which doesn't seem to matter), material of nail/screw.&amp;nbsp; In nearly every case, I found that 46 feet above sea level was best for my location, however I could see this being very specific to my location.&amp;nbsp; You may have better luck with a different height where you are.&lt;br /&gt;&lt;br /&gt;My entire experiment in this set is to find out what the best combination of a Coaxial Cable, each nail/screw, and the tin cans.&amp;nbsp; I have broken the entire experiment into 5 individual experiments.&amp;nbsp; In my results, I ignore the analog channels because all the analog channels I receive are available in digital, however, the average number of analog channels I can receive is 3, but the maximum is 5 (with a rusty nail connected to the copper part of a Coax cable.)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Experiment 1 - Jensen Model TV911 Digital Antenna&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This Amplified digital antenna has the rabbit ears look to it, and also had an FM loop attached to it.&amp;nbsp; I originally bought this antenna with my TV thinking that it would be best to get an amplified antenna.&amp;nbsp; Boy was I wrong!&amp;nbsp; I am lucky to get more than 3 channels with this antenna, and have concluded that it is the worst antenna used in this experiment.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&lt;/span&gt; &lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Experiment 2 - 5 foot Coaxial Cable &lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; After my sheet disappointment with the antenna that I bought, I decided to just try plugging in a Coax cable to the back of my TV set, and use a safty pin to hold the end of the cable up as far as I could reach.&amp;nbsp; This resulted in more channels.&amp;nbsp; I was able to receive 10 digital channels.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Experiment 3 - Tin Can&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I received a tin can, that was used for some sort of food product.&amp;nbsp; I poked holes in the side of that can at every inch marker from the botton, then on the bottom I poked a hole in the center and mid-point between the center and edge.&amp;nbsp; I found that adjusting the placement of the screw did not affect the tin-can antenna's ability to receive channels, but a drastic improvement was found when I made sure that the copper and outer mesh of the coax did not touch.&amp;nbsp; I also found that the reception was better if the copper was connected to a nail/screw, and the outer mesh was pressed firmly on the side of the can.&lt;br /&gt;&lt;br /&gt;However, the best performance I was able to achieve with the Tin can was using the Anti-rust Steel screw, and I was able to 10 digital channels.&amp;nbsp; This places the tin can at place number 3, even with a coax cable.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Experiment 4 - Hershey's Can&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;After repeating the steps I took with the Tin can, the Hershey's Can prouced similar results, but had the ability to receive 12 digital channels. This means that the Hershey's can is placed at the number 2 spot.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Experiment 5 - Coaxial Cable with a Nail&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;In case you didn't guess yet, we have a winner!&amp;nbsp; A 6 penny rust proof steel nail on the end of a coax cable is the best Antenna I have tested so far!&amp;nbsp; I was able to receive 21 digital channels using this method!&amp;nbsp; (but for some reason I still don't get Fox...)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Results Summary&amp;nbsp; &lt;/span&gt;&lt;br /&gt;For those of you who skipped the rest to know what my resuts were, here is a recap:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;#5&lt;/b&gt; - A Jensen model TV911 amplified digital antenna (2 digital channels).&lt;br /&gt;&lt;b&gt;#3&lt;/b&gt; - A coaxial cable pinned to the wall with a safety pin (10 digital channels).&lt;br /&gt;&lt;b&gt;#3&lt;/b&gt; - A tin can antenna with a 6 penny rust resistant steel nail connected to the copper of a coax cable, and the outter mesh pressed against the outside of the can (10 digital channels).&lt;br /&gt;&lt;b&gt;#2&lt;/b&gt; - A Hershey's can antenna with a 6 penny rust resistant steel nail connected to the copper of a coax cable, and the outter mesh pressed against the outside of the can (12 digital channels).&lt;br /&gt;&lt;b&gt;#1&lt;/b&gt; - A six penny rust resistant steel nail connected to the copper core of a coax cable, and nothing connected to the outer mesh (21 digital channels).&lt;br /&gt;&lt;br /&gt;My advice, just strip the end of a coax cable, and put a nail on it, then hold it up as high as you can.&amp;nbsp; I also noticed that a longer coax cable gets better reception, so maybe a really long coax cable is all you need.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: arial,sans-serif; font-size: 13px; width: 288px;"&gt;&lt;div&gt;&lt;embed flashvars="host=picasaweb.google.com&amp;amp;captions=1&amp;amp;RGB=0x000000&amp;amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fimthefrizzlefry%2Falbumid%2F5295133503457010433%3Fkind%3Dphoto%26alt%3Drss" height="192" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" type="application/x-shockwave-flash" width="288" /&gt;&lt;/div&gt;&lt;span style="float: left;"&gt;&lt;a href="http://picasaweb.google.com/imthefrizzlefry/DigitalAnennaExperiment" style="color: #3964c2;"&gt;View Album&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: right;"&gt;&lt;a href="http://picasaweb.google.com/lh/getEmbed" style="color: #3964c2;"&gt;Get your own&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;Next time for part two will either be a pringles can antenna or a fractal antenna. &lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-9173143307355755627?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/9173143307355755627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2009/01/digital-antenna-experiment-part-1.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/9173143307355755627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/9173143307355755627'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2009/01/digital-antenna-experiment-part-1.html' title='Digital Antenna Experiment - Part 1'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-8050199454065298496</id><published>2008-10-31T12:24:00.000-07:00</published><updated>2008-10-31T12:32:16.786-07:00</updated><title type='text'>Take my survey!</title><content type='html'>&lt;iframe src="http://spreadsheets.google.com/embeddedform?key=pWlPEQUMkKuk-OFGNp3OqQQ" width="310" height="382" frameborder="0" marginheight="0" marginwidth="0"&gt;Loading...&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://spreadsheets.google.com/pub?key=pWlPEQUMkKuk-OFGNp3OqQQ&amp;oid=1&amp;output=image" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-8050199454065298496?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/8050199454065298496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/10/take-my-survey.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/8050199454065298496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/8050199454065298496'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/10/take-my-survey.html' title='Take my survey!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-2414277328539290755</id><published>2008-10-30T11:19:00.000-07:00</published><updated>2008-10-30T11:20:13.668-07:00</updated><title type='text'>Another Don't Vote video...</title><content type='html'>&lt;span style="font-family: Arial; font-size: 10px; white-space: pre;"&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/_TGf2o4qeBo&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/_TGf2o4qeBo&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-2414277328539290755?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/2414277328539290755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/10/another-dont-vote-video.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2414277328539290755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/2414277328539290755'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/10/another-dont-vote-video.html' title='Another Don&apos;t Vote video...'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-3450535701675593002</id><published>2008-10-13T10:51:00.000-07:00</published><updated>2008-10-13T11:52:36.263-07:00</updated><title type='text'>Is buying DRM content purchasing or renting?</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://imgs.xkcd.com/comics/steal_this_comic.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://imgs.xkcd.com/comics/steal_this_comic.png" /&gt;&lt;/a&gt;&lt;/div&gt;This wonderful xkcd comic just made me start thinking about DRM (Digital Rights Management) content. &amp;nbsp;Now, at work, I happen to work for a music store that offers DRM and non-DRM content depending on what record labels will allow. &amp;nbsp;However, the very concept of DRM removes the user's control over their own property. &amp;nbsp;If you purchase content and the store you&amp;nbsp;bought&amp;nbsp;the content from either decides to stop renewing licenses, or if you purchase a new computer, change operating systems, decide to switch from an Ipod to a Zune, or make any decision based upon what you want as opposed to the store you purchased the music from... then you are screwed.&lt;br /&gt;&lt;br /&gt;So, in order to protect you property, you have to use circumventive technology, which is a violation of the DMCA (Digital Millenium Copyright Act.) &amp;nbsp;So, you are left with a choice, allow a system that enables media outlets to hit the switch to turn off all of the content you paid for, or stand up for your right to own property and break the law (in many cases). &lt;br /&gt;&lt;br /&gt;It's a tough situation, but somebody has to stand up for individuals' rights.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-3450535701675593002?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/3450535701675593002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/10/is-buying-drm-content-purchasing-or.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/3450535701675593002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/3450535701675593002'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/10/is-buying-drm-content-purchasing-or.html' title='Is buying DRM content purchasing or renting?'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-795636045264369235</id><published>2008-09-04T10:34:00.000-07:00</published><updated>2008-09-04T13:10:20.537-07:00</updated><title type='text'>Google Chrome</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://blogoscoped.com/files/browser-war-pls.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="312" src="http://blogoscoped.com/files/browser-war-pls.jpg" width="420" /&gt;&lt;/a&gt;&lt;/div&gt;So far I have been pretty happy with Google's chrome browser. &amp;nbsp;My cube-mate and I have been&amp;nbsp;arguing&amp;nbsp;about which performance testing site is right, because it just seems everyone has chosen a side for or against the browser. &amp;nbsp;Some sites say it is better, some say it is worse than either Firefox or IE. &amp;nbsp;Personally, I have seen a drastic improvement with Java script speeds.&lt;br /&gt;&lt;br /&gt;I like the idea that when one tab crashes, the whole browser doesn't crash (even though I heard a team of researchers somewhere found a way to force it to crash.)&lt;br /&gt;&lt;br /&gt;I think it's good that Google is modifying section 11 of the EULA. &amp;nbsp;The new EULA now reads:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; font-family: 'courier new'; font-size: 13px;"&gt;&lt;span style="font-weight: bold;"&gt;11. Content license from you&lt;/span&gt;&lt;br /&gt;11.1 You retain copyright and any other rights you already hold in Content which you submit, post or display on or through, the Services.&lt;/span&gt;&lt;/blockquote&gt;that's it. &amp;nbsp;Plain and simple.&lt;br /&gt;&lt;br /&gt;It seems to be fairly free of security vulnerabilities... aside from the file download vulnerability I heard about which was by design, but maybe somehow they will find a way to make it more secure.&lt;br /&gt;&lt;br /&gt;I still hope to see a replacement for ubiquity in the browser, and I wish to see Google toolbar included as I mentioned here:&amp;nbsp;&lt;a href="http://groups.google.com/group/google-chrome-group/msg/5b91a279c06f72c7"&gt;http://groups.google.com/group/google-chrome-group/msg/5b91a279c06f72c7&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I know as a beta project, this is not a final release project, and for the first browser Google released it is excellent! &amp;nbsp;However, I have to admit, I was really looking for a browser to specialize in uniting Google services.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-795636045264369235?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/795636045264369235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/09/google-chrome.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/795636045264369235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/795636045264369235'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/09/google-chrome.html' title='Google Chrome'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-4764414132005458954</id><published>2008-08-29T14:59:00.000-07:00</published><updated>2008-08-29T15:20:53.719-07:00</updated><title type='text'>Google App Engine.</title><content type='html'>Yesterday I had the pleasure of attending a Google Hackathon that focused on the App Engine API and hosting service.&amp;nbsp; At first my learning curves were very steep; I rarely ever use python, but I have a little experience with the language.&amp;nbsp; I was first thrown off because the app that we were using was built with Templates, and I haven't ever used them before.&amp;nbsp; So, I decided I wanted to talk about Google's App engine, and some other time I'm going to talk about Python Templates.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The first thing you need to do in order to use App Engine is Install Python.&amp;nbsp; This varies with different operating system, but basically it installs the same way any other program would be installed in your OS.&amp;nbsp; Then you need to download the SDK, and maybe even sign up for an App Engine account.&amp;nbsp; The best resource is the &lt;a href="http://code.google.com/appengine/"&gt;App Engine site on Google Code&lt;/a&gt;.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;After unpacking/installing the SDK, you are ready to start writing your program.&amp;nbsp; I created an RSS reader with a social twist.&amp;nbsp; In reality, if you took Google Reader, and added an automatically generated feed of articles both you and one or more of your friends read, then offered to initiate an email conversation based on the shared articles.&lt;br /&gt;&lt;br /&gt;The App Engine API allows you to utilize Google Accounts, which is how I authenticated users for my app.&amp;nbsp; Another cool thing I learned about App engine, is that the SDK includes a development server environment that is great for troubleshooting your code before you deploy it to your app engine account.&amp;nbsp; That's why I said that making an app engine account is the last and optional step.&amp;nbsp; However, if you want to actually use your app, you should get an account.&amp;nbsp; It is free after all.&lt;br /&gt;&lt;br /&gt;The one thing that kind of caught me off gaurd, but at the same time was perfectly reasonable is the quota system.&amp;nbsp; Apparently there are two quotas that are set for each app that you host with app engine: Number of users and allow processing power.&amp;nbsp; I don't know the exact numbers because they can vary according to your account, and what you can arrange with Google, but the idea is that you are given X number of page views, and X milliseconds of processing time.&amp;nbsp; If you exceed one of these quotas, then your app is disabled for the rest of the month.&amp;nbsp; However, there is a plan to allow users to pay to have more views and processing power.&lt;br /&gt;&lt;br /&gt;Over all, I have to say that the app engine APIs simplify the process of making complex user-based server-side apps.&amp;nbsp; I plan to write up a documentation/tutorial on using app engine to create your own RSS reader, but first I need to finish some research to better explain why I did things the way I did.&lt;br /&gt;&lt;br /&gt;until next time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-4764414132005458954?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/4764414132005458954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/08/google-app-engine.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4764414132005458954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4764414132005458954'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/08/google-app-engine.html' title='Google App Engine.'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-358191101528848771</id><published>2008-08-21T13:09:00.000-07:00</published><updated>2008-08-21T17:22:37.549-07:00</updated><title type='text'>FOSS for Students...</title><content type='html'>So, I've read a few of these articles about Free Open Source Software (FOSS) for students.  I guess everyone else has summed it up, but here is my two cents:&lt;br /&gt;&lt;br /&gt;(Please keep in mind the programming section is really my area of expertese.)&lt;br /&gt;&lt;br /&gt;Tools for all students:&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Open Office.org&lt;/span&gt; - It's pretty much a free version of Microsoft Office, and if you know MS office this will be easy.  It also has many plugins for specific needs like linking quotes with bibliography data, then automatically using a given format.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Google Documents&lt;/span&gt; - For most of your word processing. spreadsheets, and Presentations you may want to use a program installed on your computer, but if you frequently work from public computers or write group papers, then you really want to use an online editor.  That way all the team members can continually check eachother's work and everyone can work from the same document.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Google Calendar&lt;/span&gt; -This is my favorite tool for scheduling my time.  If you get in the habit of doing things on a schedule, then an online calendar is the perfect solution.  You can access your calendar from anywhere, and sync it with your favorite calendar programs.  Even use it to manage invitations and RSVPs.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Gmail&lt;/span&gt; -Everyone needs email.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Google Reader&lt;/span&gt; - This is a RSS reader, nothing too fancy, it's good for keeping track of frequent Google searches, news papers, blogs, and an ever growing list of pod-casts and similar services.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Math and Science:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LaTeX&lt;/span&gt; - Essential for engineering, mathematics, science... anything where you repeatedly need funky symbols and advanced editing features.  It requires a bit of learning, but you will save a lot of time in the end.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;TiLP&lt;/span&gt; - Texas Instruments calculator emulator for your PC.  That's all you need to know.  If you want a second calculator, or you want to copy and past you calculator work into a text document, this is the best way... in my opinion.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Maxima&lt;/span&gt; - If you ever hear the words MatLab or Octave, then you want to learn Maxima.  It's not everything MatLab and Octave are, but it is a little easier to learn, and most of what you learn will still apply.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Kalzium&lt;/span&gt; - A periodic table with a little extra.  You can find examples of where you see each element, plus additional information on a second page.  Great for Chemistry students everywhere.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Programming:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Emacs&lt;/span&gt; - An advanced text editor wich is totally worth learning.  The advanced features require a bit of learning for all the shortcut keys, but once you get proficient with them you can accomplish a lot in a small amount of time.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;VI&lt;/span&gt; editor - I have seen more textbooks listing this as the Linux editor.  Emacs is a competitor to VI, both of them do the same thing in different ways.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;GCC (GNU C Compiler)&lt;/span&gt; - A C/C++ compiler that I think is essential for any programmer to learn.  Especially if you learn C/C++ in MS Visual Studio (you're too pampered).  Real men do it in Notepad!  (j/k, but it is good to learn.)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Eclipse&lt;/span&gt; - This JAVA based IDE is really the ideal environment to do JAVA development, but the IDE itself can handle any language (you just have to point it to a compiler/interpreter.)&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Mono&lt;/span&gt; - Personally, I hate Mono, but I have to admit it is one of the best FOSS apps for .NET development.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Perl&lt;/span&gt; - If you can learn perl, you can learn any programming language... practically.&lt;/li&gt;&lt;/ul&gt;So, there are some apps I recommend/use a lot.  I should note that many programming students will want to use the Math/Science tools as well.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-358191101528848771?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/358191101528848771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/08/foss-for-students.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/358191101528848771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/358191101528848771'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/08/foss-for-students.html' title='FOSS for Students...'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-1521086956488914523</id><published>2008-08-01T13:46:00.000-07:00</published><updated>2008-12-09T16:52:48.764-08:00</updated><title type='text'>Homeland Security has gone too far!</title><content type='html'>I am really outraged by this new Homeland security policy.  I know I don't travel outside the US... well, ever really, but I think that we the people of this great nation need to start banding together as a nation to prevent this type of abuse of power.&lt;br /&gt;&lt;br /&gt;I understand that when going through customs you are subject to [bend over and] give up all your rights and have everything you bring with you inspected, but this policy goes far beyond inspecting what you bring with you.   Plus, there is no good that can come from this policy.  If someone wants to transport data that could be harmful to transport into or out of this country, they could use the Internet and render this policy useless.  Not to mention, how long will it be before CD and DVD ripping software will be catagorized as a circumventive technology and then declaired illegal under the provisions of the Digital Millennium Copyright Act (DMCA).&lt;br /&gt;&lt;br /&gt;Seizure of laptops on international flights poses a risk to anyone who saves personal data on their computer.  I do not trust homeland security to do the right thing.  Plus TSA agents are not highly trained experts.&lt;br /&gt;&lt;br /&gt;I can't believe that we let this happen.  First we allow congress to steal the public domain from us, and now we let homeland security take our laptops for &lt;span style="font-weight: bold;"&gt;no reason&lt;/span&gt;!   I fear this policy could be used to enforce copyright laws that I feel are unethical.  It is the job of the copyright owner to find violators of their copyrights.  I also feel that copyright law needs to be reformed to a pre-1984 mentality (no reference to the book specifically intended.)  [I feel] copyright laws should only apply to the commercial use of content covered by the copyright.  For example, if I hold a copyright, that should only mean you can't &lt;span style="font-weight: bold;"&gt;publish and sell&lt;/span&gt; that content.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_lAp99O0l7Rs/SJOUEAEzsMI/AAAAAAAAY8s/a93hkF9_N8A/s1600-h/guns_and_vcrs_1.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_lAp99O0l7Rs/SJOUEAEzsMI/AAAAAAAAY8s/a93hkF9_N8A/s400/guns_and_vcrs_1.jpg" alt="" id="BLOGGER_PHOTO_ID_5229686388767830210" border="0" /&gt;&lt;/a&gt;   However (ironically) in 1984 that changed to cover free distribution because the VCR manufacturers and retailers were found responsible for the violation of copyrights performed by the users recording TV shows.  Anyway... back topic at hand.&lt;br /&gt;&lt;br /&gt;I could understand if this policy applied to non-US citizens entering or leaving the country, but we are supposed to have rights.  We are supposed to have the right to privacy, and I feel the government should not have the authority to allow an organization to violate that right.&lt;br /&gt;&lt;br /&gt;I am not sure what we have to do, but something needs to be done.  I would love to have some suggestions as to what should be done.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That's my two cents.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.ibiblio.org/ebooks/Lessig/Free_Culture/18.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px;" src="http://www.ibiblio.org/ebooks/Lessig/Free_Culture/18.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-1521086956488914523?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/1521086956488914523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/08/homeland-security-has-gone-too-far.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/1521086956488914523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/1521086956488914523'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/08/homeland-security-has-gone-too-far.html' title='Homeland Security has gone too far!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_lAp99O0l7Rs/SJOUEAEzsMI/AAAAAAAAY8s/a93hkF9_N8A/s72-c/guns_and_vcrs_1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-544928144240413443</id><published>2008-07-23T10:07:00.001-07:00</published><updated>2008-07-23T10:19:09.833-07:00</updated><title type='text'>Home Made Games for Xbox360</title><content type='html'>The XNA creator's club isn't exactly new, nor is the XNA Game Studio; The new info here is that Microsoft actually announced prices for XNA Game Studios! Here is an update of everything going on here.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;For about $100 a year anyone can joint the XNA Creator's Club.&lt;/li&gt;&lt;li&gt;Club members can submit a game for peer review.&lt;/li&gt;&lt;li&gt;If approved by peers (via democratic process, I hope,) those games can now be distributed on Xbox Live's Marketplace.&lt;/li&gt;&lt;li&gt;The club members can choose a price between 200 and 800 Microsoft Points (or up to $10).&lt;/li&gt;&lt;li&gt;Microsoft will allow the member to keep up to 70% of the revenue (Microsoft will keep more that 30% if the game is prominently advertised.)&lt;/li&gt;&lt;/ol&gt;I read the &lt;a href="http://www.usatoday.com/tech/gaming/2008-07-22-xbox-game-creators_N.htm"&gt;USA Today article&lt;/a&gt; about it.&lt;br /&gt;&lt;br /&gt;I like this news because it is one of all too few distribution policies that allows independent developers to sell their products to the main stream audience. Plus, it's something being pushed by one of the biggest players in the gaming industry.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-544928144240413443?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/544928144240413443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/07/home-made-games-for-xbox360.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/544928144240413443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/544928144240413443'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/07/home-made-games-for-xbox360.html' title='Home Made Games for Xbox360'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-4224435691509845930</id><published>2008-06-06T12:44:00.000-07:00</published><updated>2008-06-06T14:41:25.390-07:00</updated><title type='text'>Is P2P harmful to copyright holders?</title><content type='html'>I have been reading this book Titled &lt;a href="http://books.google.com/books?id=tRwsKG2LBGkC&amp;amp;lr=&amp;amp;source=gbs_summary_s&amp;amp;cad=0"&gt;Free Culture by Lawrence &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Lessig&lt;/span&gt;&lt;/a&gt;.  The content of the book is very closely related to copyrights and piracy.  What specifically grabbed my attention is the view of piracy as a beneficial free marketing tool for copyright holders, but before I talk about the interpretations and conclusions I drew from the book, allow me to talk a little bit about who exactly Lawrence &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Lessig&lt;/span&gt; is (as to avoid someone just pawning him off as insignificant based on my views.)&lt;br /&gt;&lt;br /&gt;     Lawrence &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;Lessig&lt;/span&gt; (&lt;a href="http://en.wikipedia.org/wiki/Lawrence_Lessig"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;Wikipedia&lt;/span&gt; Link&lt;/a&gt;) is a Law professor at Stanford.  He founded the creative commons and has written four books, that I know of, and I have read (or at least started to read) all of them with the exception of &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;Codev&lt;/span&gt;2, which there is a list his books and a link to download &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;Codev&lt;/span&gt;2 for free from &lt;a href="http://lessig.org/blog/"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;Lessig&lt;/span&gt;.org&lt;/a&gt;.  That being said I hold his work to be very good and insightful, but I like to think I don't judge people (I like to think I judge their work/actions.)&lt;br /&gt;&lt;br /&gt;     The subject at hand is the concept of P2P being harmful to copyright holders.  After reading the first few chapters, you a presented with a generalized view of copyrights, in which &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;Lessig&lt;/span&gt; mentions a system of lumping P2P users into 4 categories that would be needed to establish if P2P specifically is harmful.  (I hope I don't violate a copyright by talking about it on my blog...) The categories are:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;A. People who will download free content as a substitute for purchasing.&lt;/li&gt;&lt;li&gt;B. People who will download free content to sample it before purchasing.&lt;/li&gt;&lt;li&gt;C. People who will download free content because it is not commercially available, or financially feasible for them to obtain the content otherwise.&lt;/li&gt;&lt;li&gt;D. People who will download free content because the copyright allows it.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;Lessig&lt;/span&gt; says that the way to establish if P2P is harmful you need to determine if the benefit from category B is less than the damage from category A.  Also in his argument he notes a figure suggesting that at one point in time over twice as much recorded content was being downloaded than the record industry sold. &lt;br /&gt;&lt;br /&gt;     This is the point where I draw away from what &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;Lessig&lt;/span&gt; said (I think) and I ask the question of analyzing category A a little more.  If there are twice as many people downloading content annually than the number of albums the recording industry has every sold in a year(not to be confused with the change in records sales), then how many records would the record industry sell if pirates did not download free content?  I think this is the only question that matters.  The basis of my belief in this is re-affirmed in the book when &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;Lessig&lt;/span&gt; talks about the difference between being illegal and being wrong.&lt;br /&gt;&lt;br /&gt;     Any moral philosophy class will start making you think about the differences between morality and legality.  I feel it is rare we can find a subject like murder where it is both illegal and wrong.  This is one of the reasons why laws often change with time (segregation, slavery, copyrights, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;ect&lt;/span&gt;.)  I actually think it is a crime that Mickey Mouse has not yet become property of the public domain the same way that the works of other dead creators' works have been in the past, but does that make it wrong for me to disobey the law and use Mickey Mouse in a cartoon I created?  Should Disney be able to sue me for using their creation that is now such an icon for children of my generation that the mere silhouette of Mickey instantly pulls up a relation to Disney and the mouse?  After all, Mickey's first appearance with sound, &lt;span style="font-style: italic;"&gt;Steamboat Willie&lt;/span&gt;, was nothing more than a pirated concept of the time. &lt;br /&gt;&lt;br /&gt;     I actually feel very strongly that piracy via P2P is not nearly as harmful as the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;RIAA&lt;/span&gt; makes it look to be.  I also feel that all copyrights should expire after a reasonable length of time (probably around 10 years).  Meaning that morally I do not have an issue with people downloading any content released before 1987 (21 years before this post) to avoid permanent monopolies on content.  Meaning that a very large amount of older content should be considered property of the public domain making it legal for anyone to share.  An example would be that Pink Floyd's original version of &lt;span style="font-style: italic;"&gt;A Momentary Lapse of Reason &lt;/span&gt;and all albums published before it (basically all of their original albums) should be free for anyone to distribute as well as &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;Metallica's&lt;/span&gt; first three albums.  However, many older albums are re-mastered;  This raises a question of whether or not these remastered works could be covered under a new copyright as original works.  I admit that re-mastering an album takes a bit of work, and requires equipment most people can not afford or advanced technical knowledge or writing remastering software.  Because these works are not original I don't feel they should be covered under a separate license, however it would provide a valid excuse for an exception to the rule;  allowing publishers to provide new and improved content at a price, while the old content could be free.&lt;br /&gt;&lt;br /&gt;      Now that I have established my moral views, what about harm to the copyright holder?  I recall the case with &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;Jimmi&lt;/span&gt; Hendrix;  where after Hendrix died the record label retained distribution rights, but the Hendrix family (namely his children) did not receive payment for their father's work.  This is a case where I feel the creators of content are being cheated.  If I record a song with a record label I would be paid a fee, set by congress, for each copy of the album that was sold.  I have no control over the content from that point forward.  Once it is recorded I get paid per album, then I get paid for each show I perform, but if I want to take my work, and start giving it away for free because I feel I have made the money I need off of the content, then I will have no authority to make that decision.  The same is true toward the creator of &lt;span style="font-style: italic;"&gt;The &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;Simpsons&lt;/span&gt;&lt;/span&gt;; The Fox corporation actually owns everything.  Even with the creator's permission, you can not distribute this content in any way (even if &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;Simpsons&lt;/span&gt; happens to be in the background while you are shooting a documentary. &lt;br /&gt;&lt;br /&gt;     The argument I am starting to form is not a legal argument, but a moral argument.  An argument of who has acted wrongfully: the copyright holder or the pirate.  Certainly Shakespeare is considered the public domain, why should Disney, Fox, or anyone else be treated differently.  The copyright should last a reasonable time then fade away to the public domain.&lt;br /&gt;&lt;br /&gt;     Regardless of whether the copyright is valid, enforceable, or even should be enforceable we need to come back to the argument at hand;  does P2P harm copyright holders.  Can P2P pirates be viewed the same as thieves that steal books or albums off of a shelves in stores?  Absolutely not.  When you steal a physical object, the entity the object was stolen from no longer has that object;  unlike when you share something on a P2P network, nobody looses a physical object.  This is because digital objects can be reproduced infinitely at no additional cost to the producer.  Decentralized networks like &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;BitTorrent&lt;/span&gt; and &lt;a href="http://en.wikipedia.org/wiki/Gnutella"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;Gnutella&lt;/span&gt;&lt;/a&gt; or even semi-centralized networks like &lt;a href="http://en.wikipedia.org/wiki/FastTrack"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;FastTrack&lt;/span&gt;&lt;/a&gt; (&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;KaZaa&lt;/span&gt;) clients can distribute content highly efficiently.  The user only has to leave the program running after downloading content to automatically share anything on the user's hard drive.  Should there be a responsibility for the creators of these networks to scan million or even billions of computers regularly to ensure no copyright content is available?  I guess the real question will come down to cost.  While a networks like &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;BitTorrent&lt;/span&gt; and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;Gnutella&lt;/span&gt; can't exactly be just shut down the same way as a centralized network like Napster, a semi-decentralized network like &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;FastTrack&lt;/span&gt; can be shut down.  What is the cost to society of shutting these networks down?&lt;br /&gt;&lt;br /&gt;     I view the claims of the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;MPAA&lt;/span&gt; and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;RIAA&lt;/span&gt; as typical rejections of new technology.  These same &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_26"&gt;arguments&lt;/span&gt; were made of Radio, Hollywood, and Cable TV;  the copyright holders are not getting exclusive control of all &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_27"&gt;distribution&lt;/span&gt; methods their content is being distributed with.  In all past cases Congress has stated that there is not harm is playing copyright content over the radio without paying the copyright holder;  the same is true for TV.  Hollywood was formed under the premise that California was not policed, and the film makers did not want to pay Thomas Edison to use his video equipment;  so they moved to California and waited for the copyright to expire.  These foundations that form much of our every day life now, were once all just a bunch of pirates trying to use the work of someone else.  Now, being played on the radio is the main goal for many record companies;  TV is our source of entertainment and news.  These older industries were forced to give content to the public domain in certain ways that would benefit society over the monopoly of a copyright holder.&lt;br /&gt;&lt;br /&gt;     I think that it is a greater crime to not allow P2P sharing of free and otherwise unavailable content than to allow a subset of P2P users to illegally download content as a substitute for purchasing content.  I am sure that some of these people will not buy an album that they otherwise would have bought, but I feel more people will download content that they otherwise would not have bought;  which means these people are not stealing profit from the copyright holder as much as they are enjoying content that exists in the world on demand. &lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;     SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-4224435691509845930?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/4224435691509845930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/06/is-p2p-harmful-to-copyright-holders.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4224435691509845930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/4224435691509845930'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/06/is-p2p-harmful-to-copyright-holders.html' title='Is P2P harmful to copyright holders?'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-9072070265387499357</id><published>2008-05-28T17:00:00.001-07:00</published><updated>2008-05-28T17:04:58.932-07:00</updated><title type='text'>Android at Google IO!</title><content type='html'>I like the new features that seem to be popping into Android as the development moves on.  At first some of the features currently present in the mobile phone OS either were not present or appeared to be poorly implemented.  Now the layout has become more in tune to the concept of "Natural Input", as opposed to using a keyboard and mouse, which is key to making a cell phone.&lt;br /&gt;&lt;br /&gt;Here is a video I found, on download squad (via Google reader).&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/arXolJrLVEg"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/arXolJrLVEg" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;That's all for now.&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;    SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-9072070265387499357?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/9072070265387499357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/05/android-at-google-io.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/9072070265387499357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/9072070265387499357'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/05/android-at-google-io.html' title='Android at Google IO!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-3729165216527150854</id><published>2008-05-13T09:58:00.000-07:00</published><updated>2008-05-13T11:10:43.639-07:00</updated><title type='text'>Ubuntu 8.04 LTS installation conclusion.</title><content type='html'>After installing the system on both of my machines, I concluded that the installation was a success for myself, but the upgrade has some issues.  Granted that I probably had some errors that other people will not have because I performed all of the operations right when the distribution was first released, and now there have been several updates to the upgrade tool.  So, lets dive into exactly what I am talking about.&lt;br /&gt;&lt;br /&gt;Dell Inspiron 5100:&lt;br /&gt;&lt;br /&gt;   This computer is currently running a triple-boot configuration.  I have 4 partitions: Windows, root, home, and swap.  The boot loader is installed to the MBR (Master Boot Record), and I performed a standard install and a Wubi install.  Both of the installs are successful, however the ATI Mobility drivers are still not perfect.  Because I am not allowing myself to perform command line repairs to any machines I have not gotten my S-Video port to work, nor have I gotten 3D acceleration to work properly.  I admit that the fix for this is a simple one line edit to the x11 config file, but a novice user should not have to do that, so graphics are considered a failure.&lt;br /&gt;&lt;br /&gt;  Other than that the two installations came out nearly identical with a slight performance decrease in the Wubi install.  I have to say the process is great for those that want to install an OS without knowing what they are doing, nor commiting to any permanent changes to the machine, but some users with older computers may run into issues.  Typically you will want to have a minimum of 15 - 20 Gigabytes available on your machine.  This way you will insure that you have enough memory to perform the install and work with some of the applicaitons, but more memory is always better.  Over all, the Wubi install is easy and great, but I find myself caught up on the graphics issue.&lt;br /&gt;&lt;br /&gt;Lenovo 3000 N200:&lt;br /&gt;&lt;br /&gt;     I have upgraded this machine a few times now.  Normally the upgrade process runs fairly smooth, however after this upgrade I am seeing a decrease in performance, unstable applicaitons, and bugs that are popping up from apps that have been running fine for a while.  Graphics performance on the Intel chipset are running fine, althought I hear that NVidia cards are the only way to go if you want S-Video functionality out of the box.  I have a feeling that the upgrade process is less buggy now that a few of the bugs I ran into have been resolved as fixed on Launchpad.&lt;br /&gt;&lt;br /&gt;   Other issues I was having include a sound issue where the headphone port does not automatically mute/unmute the laptop's speakers.  My usual fix of running a script that downloads and re-compiles the alsa drivers does not seem to work, but I don't actually want to go to the command line, so I have been living with it.&lt;br /&gt;&lt;br /&gt;   I have been contemplating re-formatting this machine and starting over with a fresh install to work out the bugs.  I think that the released updates should solve all the issues I am having, but I have notices that bugs still seem to pop up with every ditrbution upgrade.&lt;br /&gt;&lt;br /&gt;Other than that, I am happy with the changes.  Exile is a great media player, and the "dynamic" playlist feature means that the music will never stop until I hit stop.  Firefox 3 Beta 5 is quick and runs great, however I am having issues with google toolbar's incompatability.  It was also disappointing to find out that many of the firefox plugins that I use don't work in the beta, but with firefox 2 installed I can get by.&lt;br /&gt;&lt;br /&gt;In conclusion, The installation of Ubuntu 8.04 LTS seems to be more stable than the distribution upgrade.  Most of the improvements in the OS invole look and feel or ease of use.  The ditribution is getting closer to the goal of being a user friendly system for normal desktop users.  There is a little room for improvement, but it is getting better.&lt;br /&gt;&lt;br /&gt;So, that is a quick review of Ubuntu 8.04 LTS.  If you have any comments suggestions or questions, please give me something to write about that people want to read.&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;     SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-3729165216527150854?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/3729165216527150854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/05/ubuntu-804-lts-installation-conclusion.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/3729165216527150854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/3729165216527150854'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/05/ubuntu-804-lts-installation-conclusion.html' title='Ubuntu 8.04 LTS installation conclusion.'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-7207076535529464294</id><published>2008-04-26T13:59:00.000-07:00</published><updated>2008-04-26T14:25:45.662-07:00</updated><title type='text'>Ubuntu 8.04LTS installation review.</title><content type='html'>I just installed Ubuntu 8.04LTS on my Dell Inspiron 5100.  The installation went smooth, but I was disappointed that Google Toolbar is not compatible with Firefox 3B5.  Most of the hardware is working correctly, but my S-Video out does not work.  This is common with fresh installs.&lt;br /&gt;&lt;br /&gt;I also performed the new Wubi install.  The neat thing about this type of install, is that you perform it from within Windows.  I am not very familiar with that type of install yet, but it creates a large file in Windows rather than using a different partition.  This makes it easier to test drive the distro before really commiting to the change (which means re-formatting your intire drive in some cases.)  The process in this case is very easy to reverse because the Wubi install can be uninstalled from the windows control panel.&lt;br /&gt;&lt;br /&gt;The result of the Wubi install is that the user can choose between Windows of Ubuntu when the computer is booting.  The speed of the Wubi install is slower than a standard installation.  I typically keep one partition for my OS files, a second for my swap partition, and another partition for my home directory, which runs quick.  My hard drive also has a fourth partition that I run Windows on, just to keep around for work purposes. &lt;br /&gt;&lt;br /&gt;In the other room I am currently upgrading my Lenovo to Ubuntu 8.04 from an installation I've been upgrading sense Ubuntu 6.  That is my primary computer, and I use it for most of my day to day work.  It has an 80GB hdd that is devided into 3 partition: swap, root, and home.  That machine actually runs everything, but I will be testing out life without my Google Toolbar for a little while (at least no toolbar at home.)  I don't think I could give it up for too long. &lt;br /&gt;&lt;br /&gt;So far the install is going sort of slow.  I have Qwest DSL, which is supposed to be a 7mb connection, but it doesn't ever seem to get close to that speed.  I must admit I am comparing it to the Gigabit connection at work, but that is a different story. &lt;br /&gt;&lt;br /&gt;It reported that more than 1300 files will be upgraded.  Most of which would be un-installed first.  I am not sure if the upgrade will actually mess up my system in any way yet; I have had issues with my S-Video out after upgrades in the past, but I am hoping that even though I am sure I know how to deal with the issue, I do not want to do it again.&lt;br /&gt;&lt;br /&gt;So, I'll get back once I have my third version of Ubuntu up and running.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-7207076535529464294?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/7207076535529464294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/04/ubuntu-804lts-installation-review.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/7207076535529464294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/7207076535529464294'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/04/ubuntu-804lts-installation-review.html' title='Ubuntu 8.04LTS installation review.'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-743661552306955884</id><published>2008-03-11T23:46:00.000-07:00</published><updated>2008-03-12T00:24:07.082-07:00</updated><title type='text'>Linux in our lives.</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;Linux on PCs&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;     Over the years, more and more people have heard of Linux.  I have been watching this OS grow from difficult to usable, and recently I have really started to think the OS has a chance.  I suppose the thing that worries me is seeing Linux distributions like gOS being sold at Wal-Mart.  I am excited to see Linux pre-loaded on a cheap PC, however I would prefer to see an original Ubuntu distribution rather than a modified Ubuntu distribution that puts such a large emphasis on web 2.0 services.   &lt;br /&gt;   Linux needs an easy to use distribution that functions the way Windows users expect the machine to function.  Then, the additional perks of having online repositories of free software and clearly written documentation in laymen's terms.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Linux on Mobile Devices&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;     I have been happy to see the Nokia 770, N800, and N810 released with Nokia's mobile OS, however I would have liked to see more long term support for at least the proprietary portions of the system.  I was also disappointed to see a lack of pre-loaded PIM software.  It was easy enough to add repositories to allow easy installation of a fairly impressive software library.  I personally enjoyed loading putty for the purpose of using my own encryption for my personal internet traffic through untrusted access points.&lt;br /&gt;     Another mobile device I have high aspirations for is the Neo1973.  I hope to see the retail version of this device released in the next year;  you can currently obtain a really nice kit including the developer model, a debug board, and their OS pre-loaded on the phone.  I just wish I were sponsored so I could give a review of this, however I plan on continueing on this idea after I actually get my hands on one of the advanced developer kits ($400 USD).&lt;br /&gt;     I am looking forward to the Google Android OS to be released.  I have been testing simple applications with the SDK using Eclipse.  I have found that Oreilly's Eclipse Pocket Guide was very useful to quickly familiarize myself with the IDE; which I felt was easy to transition to from Visual Studio.  The Android OS features a built in web browser based on Webkit, a Google Map viewer, and Contact List. &lt;br /&gt;&lt;br /&gt;I think this post is horrendous... however I will try and improve over time.&lt;br /&gt;&lt;br /&gt;I think my next post will be themed around social networking.&lt;br /&gt;&lt;br /&gt;If you read this, tell me what you think/hate/like?/how stupid I sound.&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;    SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-743661552306955884?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/743661552306955884/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/03/linux-in-our-lives.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/743661552306955884'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/743661552306955884'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/03/linux-in-our-lives.html' title='Linux in our lives.'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-876980531806336439.post-8769594880724253830</id><published>2008-03-11T22:57:00.000-07:00</published><updated>2008-03-12T00:24:51.537-07:00</updated><title type='text'>New Blog!</title><content type='html'>I started this blog with the idea of having somewhere to just rant about tech news and that sort of stuff....&lt;br /&gt;&lt;br /&gt;I will start ranting next post...&lt;br /&gt;&lt;br /&gt;in a few minutes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Later,&lt;br /&gt;&lt;br /&gt;     SteveO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/876980531806336439-8769594880724253830?l=frizzletech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://frizzletech.blogspot.com/feeds/8769594880724253830/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://frizzletech.blogspot.com/2008/03/new-blog.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/8769594880724253830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/876980531806336439/posts/default/8769594880724253830'/><link rel='alternate' type='text/html' href='http://frizzletech.blogspot.com/2008/03/new-blog.html' title='New Blog!'/><author><name>Steven Farnell</name><uri>https://profiles.google.com/106612198252274444886</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0bQ9_ERma8o/AAAAAAAAAAI/AAAAAAAA8Cc/sfni6WFJ-Oc/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry></feed>
