<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TheTwidgetLog</title>
	<atom:link href="http://thetwidgetlog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thetwidgetlog.com</link>
	<description>Technology for everyone</description>
	<lastBuildDate>Mon, 26 Dec 2011 18:25:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Secret messages: no lemon juice needed.</title>
		<link>http://thetwidgetlog.com/2011/08/secret-messages-no-lemon-juice-needed/</link>
		<comments>http://thetwidgetlog.com/2011/08/secret-messages-no-lemon-juice-needed/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 00:30:24 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[commentary]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1374</guid>
		<description><![CDATA[I have found an extension for chrome called encrypt the cloud. It allows you to post encrypted message to twitter,face book and several other sites, encrypt them and decrypt the replies or posts from your secretive friends. You can get it at the chrome web store. Once installed you just add your  [...]]]></description>
			<content:encoded><![CDATA[<p>I have found an extension for chrome called <a href="https://chrome.google.com/webstore/detail/ecfckgibjmlghlgpljbkcoecgpfljcdb" target="_blank">encrypt the cloud</a>. It allows you to post encrypted message to twitter,face book and several other sites, encrypt them and decrypt the replies or posts from your secretive friends. You can get it at the chrome web store. Once installed you just add your name and key and the name and key of your secret friends. you may also have to add each site you wish to encode/decode.</p>
<p>On twitter just type your tweet, hit ctrl-y and there you are. It does take up extra room so it will mean less information or more abbreviations. you can also use the dem pasge to encrypt a message for general posting with clear text or an un supported site.</p>
<p>&nbsp;</p>
<p>Give it a try. my ussername is thetwidgetlog and key is starbuck.</p>
<p>&nbsp;</p>
<p>{{thetwidgetlog::YJdVTu3 t7e157w XQYlrc4 4CYlmps V8oxYnl OJ6boAy HbxZaXQ d8ivOGi /sub0Sy NYQa8My 6YRXuiJ TNIkGnX KarXP0A wXcNE8T baB5ALs Kq7AOsc E95iqeo /B9TQ0f uloIpk4 4zERkUE PVh02D4 48N0l/K rxAEWRi 1a0}}</p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/08/secret-messages-no-lemon-juice-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pulsing LED is adjustable!</title>
		<link>http://thetwidgetlog.com/2011/06/pulsing-led-is-adjustable/</link>
		<comments>http://thetwidgetlog.com/2011/06/pulsing-led-is-adjustable/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 19:00:10 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[commentary]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[maker]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[tinycad]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1351</guid>
		<description><![CDATA[Here is the second installment of Arduino projects.
This time I have jumped several stages and am giving you two types of functions, serial monitoring and schematics using tinycad.
As I worked with this sketch I found that using the input values and a millisecond delay made it way to long and  [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the second installment of Arduino projects.</p>
<p>This time I have jumped several stages and am giving you two types of functions, serial monitoring and schematics using <a title="Tinycad" href="http://sourceforge.net/apps/mediawiki/tinycad/index.php?title=TinyCAD" target="_blank">tinycad</a>.</p>
<p>As I worked with this sketch I found that using the input values and a millisecond delay made it way to long and interval to brighten and dim.</p>
<p>I changed to microsecond and used the analogRead value as the interval.</p>
<p>I also found that if the delay value became zero, delay behaved badly. To fix this I put a 330 ohm resistor on the ground side of the potentiometer so that the analogRead would never be zero.</p>
<p>You will notice some code left in that appears to be not needed. You are right! Some lines are left over from what I tried to do first;.</p>
<p>If the notes in the sketch are not clear please let me know in the comments. I have left out the video, for now</p>
<p><a href="http://thetwidgetlog.com/wp-content/uploads/2011/07/adjustable_PULSE_LED_schematic1.pdf">adjustable_PULSE_LED_schematic</a></p>
<p>&nbsp;</p>
<p>/*<br />
Pulse an led on a pin. Go from dark to full bright in an adjustable interval then back down to dark in the same interval. The interval is adjusted via a potentiometer.<br />
*/</p>
<p>int ledPin = 11; // led pin used for LED in entire program<br />
int sensorPin = 0; // pin pot is tied to<br />
int interval = 1000; // interval for change in microsecond, 100000 is one second up and one second down<br />
int sensor1 = 0; // sensor raw<br />
int sensor1a = 0; // sensor expanded<br />
int waitforit = (interval/255); //delay this much between each increment</p>
<p>void setup ()  {<br />
Serial.begin(9600); //start serial comm<br />
pinMode(ledPin, OUTPUT); //initialize ledPin for OUTPUT<br />
pinMode(sensorPin, INPUT); // initialize sensorPin for INPUT<br />
}</p>
<p>void loop()    {</p>
<p>waitforit = readSensor(); //<br />
/*<br />
The Serial.print lines are a debugging aid printing out the value used to count up and down in the bright functions<br />
*/<br />
Serial.print(&#8220;waitforit is &#8220;);<br />
Serial.println(waitforit, DEC);<br />
brightup(); //call the brightup function to raise the led brightness from 0 to 255<br />
brightdown();  //call the brightdown function to lower the led brightness from 255 to 0</p>
<p>}<br />
/*****************************************************************************************<br />
additional functions defined below<br />
*****************************************************************************************/<br />
int readSensor () {<br />
/* This is the subroutine to read the potentiometer and return the value 0 &#8211; 1023</p>
<p>*/</p>
<p>sensor1 = analogRead(sensorPin); // read sensor</p>
<p>/*<br />
The Serial.print lines are a debugging aid printing out the value read from the potentiometer<br />
a 330 ohm resistor was added to the ground leg of the potentiometer as a current limiter and to disallow<br />
a reading of &#8220;0&#8243;. Zero as a value for delayMicrosecond statement causes the loop to behave abnormally<br />
*/</p>
<p>Serial.print(&#8220;Sensor1 is &#8220;);<br />
Serial.println(sensor1, DEC);</p>
<p>sensor1a = sensor1 * 1; //stretch the interval out, if needed</p>
<p>sensor1a = sensor1a / 1 ; //divide value by a number for use as the count delay waitforit</p>
<p>return sensor1a; // return the adjusted value for the interval<br />
}</p>
<p>void brightup () {<br />
/* this is the subroutine to raise the brightness from zero to 255 over a specific delay<br />
brightness is declared and initialized in this function<br />
waitforit was declared and initialized for the entire program first<br />
*/</p>
<p>for (int brightness = 0; brightness &lt; 255; brightness ++){</p>
<p>analogWrite(ledPin,brightness); //write the brightness value</p>
<p>delayMicroseconds(waitforit); // delay 1/255 of the interval to maximum brightness<br />
}<br />
}</p>
<p>void brightdown () {<br />
/* this is the subroutine to lower the brightness from zero to 255 over a specific delay<br />
brightness is declared and initialized in this function<br />
waitforit was declared and initialized for the entire program first<br />
*/</p>
<p>for (int brightness = 255; brightness &gt; 0; brightness &#8212; ){</p>
<p>analogWrite(ledPin,brightness); //write the brightness value</p>
<p>delayMicroseconds(waitforit); // delay 1/255 of the interval to maximum brightness<br />
}<br />
}</p>
<p><a rel="author" href="https://profiles.google.com/112879869307604862658">About Jerry</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/06/pulsing-led-is-adjustable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino ho!!</title>
		<link>http://thetwidgetlog.com/2011/06/arduino-ho/</link>
		<comments>http://thetwidgetlog.com/2011/06/arduino-ho/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 00:31:09 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[commentary]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[led]]></category>
		<category><![CDATA[program]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1343</guid>
		<description><![CDATA[This will be my first post about arduino although not my first program. I waited until I had done some basic stuff and had something interesting to say.
I have done the blink and press button to blink. I decided the one to post about would be my venture into functions.
I needed to be able to call  [...]]]></description>
			<content:encoded><![CDATA[<p>This will be my first post about arduino although not my first program. I waited until I had done some basic stuff and had something interesting to say.</p>
<p>I have done the blink and press button to blink. I decided the one to post about would be my venture into functions.</p>
<p>I needed to be able to call functions to allow for a program that had more flexibility to it. To that end I made what is a simple program to raise and lower the brightness of a led over a flexible period of time. I am going to post the program with what I hope are copious notes to make it understandable. If you have any trouble with it just leave a comment and I will try to clear the fog.</p>
<p>&nbsp;</p>
<p>Here it is:</p>
<p>/*</p>
<p>Pulse an led on a pin. Go from dark to full bright in a designated interval then back down to dark in the same interval</p>
<p>*/<br />
int ledPin = 11; // led pin used for LED in entire program</p>
<p>int interval = 500; // interval for change in milliseconds, 1000 is one second up and one second down</p>
<p>int waitforit = (interval/255); //delay this much between each increment</p>
<p>void brightup () {</p>
<p>/*</p>
<p>this is the subroutine to raise the brightness from zero to 255 over a specific delay</p>
<p>brightness is declared and initialized in this function</p>
<p>waitforit was declared and initialized for the entire program first<br />
*/</p>
<p>for (int brightness = 0; brightness &lt; 255; brightness ++){</p>
<p>analogWrite(ledPin,brightness); //write the brightness value</p>
<p>delay(waitforit); // delay 1/255 of the interval to maximum brightness</p>
<p>}</p>
<p>}</p>
<p>&nbsp;</p>
<p>void brightdown () {</p>
<p>/*</p>
<p>this is the subroutine to lower the brightness from zero to 255 over a specific delay</p>
<p>brightness is declared and initialized in this function</p>
<p>waitforit was declared and initialized for the entire program first</p>
<p>*/</p>
<p>for (int brightness = 255; brightness &gt; 0; brightness &#8212; ){</p>
<p>analogWrite(ledPin,brightness); //write the brightness value</p>
<p>delay(waitforit); // delay 1/255 of the interval to maximum brightness</p>
<p>}</p>
<p>}</p>
<p>void setup ()  {</p>
<p>pinMode(ledPin, OUTPUT); //initialize ledPin for OUTPUT</p>
<p>}</p>
<p>void loop()    {</p>
<p>brightup();   //call the brightup fuction to raise the led brightness from 0 to 255</p>
<p>brightdown();  //call the brightdown fuction to lower the led brightness from 255 to 0</p>
<p>}</p>
<p>&nbsp;</p>
<p>This is it working</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/s5U_nKcBwQA?hl=en&amp;fs=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/s5U_nKcBwQA?hl=en&amp;fs=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/06/arduino-ho/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your password is what!!?</title>
		<link>http://thetwidgetlog.com/2011/04/your-password-is-what/</link>
		<comments>http://thetwidgetlog.com/2011/04/your-password-is-what/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 22:33:35 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[commentary]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[password]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1337</guid>
		<description><![CDATA[&#160;
We all do it, it&#8217;s easy. You don&#8217;t want to remember a dozen passwords so you just makeup a simple one and use everywhere. It&#8217;s no big deal, until a service you use that was not important is hacked and the &#8220;one&#8221; password is now exposed and is fed to a bot that will try every possible bank and  [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>We all do it, it&#8217;s easy. You don&#8217;t want to remember a dozen passwords so you just makeup a simple one and use everywhere. It&#8217;s no big deal, until a service you use that was not important is hacked and the &#8220;one&#8221; password is now exposed and is fed to a bot that will try every possible bank and service to see what they can get.</p>
<p>Another common mistake is choosing names in your life, past or present  for the password or reset questions. That was the mistake <a href="http://www.wired.com/threatlevel/2008/09/palin-e-mail-ha/" target="_blank">Sarah Palin</a> made.</p>
<p>There is also the rule method. With this method you devise a formula and use it to make a self recoverable password. The simplest example is the all ways fun igpay atinlay. As with all things that can be made by a plan they can be undone. There is no simple way to make a robust password plan. It will require variety, random choices and lies.</p>
<p>One plan could be to create a tier of passwords:</p>
<p>&nbsp;</p>
<ul>
<li>Highly secure with eight or more characters including numbers and capitals like fFer55$5$ERTGgH. Use these with banks and sites that can affect your life directly.</li>
<li>Moderately secure with eight or more characters. A pass phrase is good here like, supercalifragilisticexpealidocious. Use this for sites that you pay to use and may have your credit cards attached.</li>
<li>Moderately secure with just eight characters. for example MoonBeam. Use this with sites that you access for information but can&#8217;t purchase items or send email on your behalf.</li>
</ul>
<p>The More passwords you have the better though. To that end I use a service called <a href="https://lastpass.com/" target="_blank">LastPass</a>. There are other services and the browsers them selves can store passwords. LastPass has plugins and extensions for Chrome, Firefox and a tabbed browser for IOS that make it a better choice for me.. They have a free version and a paid version with more services. I current use the free version. It will save the password for any site and fill in the username and password fields when you go to each site. They also has a password generator that can create a random password of long length for your protection.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/04/your-password-is-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud printing for the poor</title>
		<link>http://thetwidgetlog.com/2011/03/cloud-printing-for-the-poor/</link>
		<comments>http://thetwidgetlog.com/2011/03/cloud-printing-for-the-poor/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 21:01:49 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[commentary]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1333</guid>
		<description><![CDATA[I was going through my chrome options this morning, trying to find a way to reduce the visible size of the app screen  and found &#8220;cloud printing&#8221;?
This feature showed up in Chrome v9 apperently, I just didn&#8217;t notice. So I set it up and checked to see if I could print from my ipad to the desktop  [...]]]></description>
			<content:encoded><![CDATA[<p>I was going through my chrome options this morning, trying to find a way to reduce the visible size of the app screen  and found &#8220;cloud printing&#8221;?</p>
<p>This feature showed up in Chrome v9 apperently, I just didn&#8217;t notice. So I set it up and checked to see if I could print from my ipad to the desktop printer. It worked! I can even print from my iPod touch on IOS 4.2</p>
<p>Setting up was a breeze. Just click on the wrench and go to options then the under the hood tab. Sign in to &#8220;Cloud print&#8221; and your off.</p>
<p>I tested it with my iPad and Google docs. I tried two different docs and both printed just as they should. You are offered a choice of printers, based on what you have installed on the computer.</p>
<p>Currently the spreadsheet did not offer a cloud print choice.</p>
<p>I then used team viewer to setup cloud printing on a home computer with a printer and WOW. There is the printer at home. I could be anywhere and send a print-job to a printer at work or at home!</p>
<p>This is just one more reason to use chrome and Google docs for your word processing needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/03/cloud-printing-for-the-poor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IOS 4.3 the shocking truth</title>
		<link>http://thetwidgetlog.com/2011/03/ios-4-3-the-shocking-truth/</link>
		<comments>http://thetwidgetlog.com/2011/03/ios-4-3-the-shocking-truth/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 09:45:23 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[commentary]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1331</guid>
		<description><![CDATA[Wednesday, 3-9-11, at 10am IOS 4.3 was released. I quickly connected my IPad and upgraded. Yea, a painless upgrade. Now for the testing, is it better? 
I began with Safari. Opening a page was quicker. Then I went to a You Tube video I had tried the night before. It had taken several minutes to  [...]]]></description>
			<content:encoded><![CDATA[<p>Wednesday, 3-9-11, at 10am IOS 4.3 was released. I quickly connected my IPad and upgraded. Yea, a painless upgrade. Now for the testing, is it better? </p>
<p>I began with Safari. Opening a page was quicker. Then I went to a You Tube video I had tried the night before. It had taken several minutes to buffer the one and a half minute show. Now it began playing and did not need to stop for buffering, that is a win. </p>
<p>Now we check Hulu. Normally I have several stops to buffer and some total stops during any length show. With IOS 4.3 the show started up, only had some minor blips that would have been a stop. It kept on going without a hitch. Yet another win. App loading feels faster too.</p>
<p>What about the playing of your library media to the iPad via AirPlay? That&#8217;s not exactly what they mean. They mean&#8217;t you could access your home-shared library from your iPad or iPhone or touch. Once you go to settings on the device and put in your apple ID you can access your music, podcasts and video from either the iPod app or the video app.</p>
<p>I think this update is a win, right now. Now we will see how the new apps work this Friday.</p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/03/ios-4-3-the-shocking-truth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Daily Telegraph</title>
		<link>http://thetwidgetlog.com/2011/03/the-daily-telegraph/</link>
		<comments>http://thetwidgetlog.com/2011/03/the-daily-telegraph/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 22:02:32 +0000</pubDate>
		<dc:creator>jcoffey</dc:creator>
				<category><![CDATA[Coffey Break]]></category>
		<category><![CDATA[commentary]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1327</guid>
		<description><![CDATA[The Daily has been out for several weeks now. I have found it to be a little too slow. It has taken as long as fifteen minutes to update and crash at least once during that time. It&#8217;s not that the news is not current or even a problem to be updated during the day. But taking more that a minute to  [...]]]></description>
			<content:encoded><![CDATA[<p>The Daily has been out for several weeks now. I have found it to be a little too slow. It has taken as long as fifteen minutes to update and crash at least once during that time. It&#8217;s not that the news is not current or even a problem to be updated during the day. But taking more that a minute to update is too slow.</p>
<p>As for the presentation, I like the carousel of pages,, but the movement of the page is too slow and clunky.  I don&#8217;t like the need to rotate my iPad to see some pages. Reading the news should not require movements to get the whole story. At the same time I think having accessible extra information is good. Those methods should be the same throughout the program.</p>
<p>Overall if you want an overview of some news then try The Daily, while it is free. I do not think you should subscribe though.</p>
<p>I think that if you subscribe to something you should be getting extras and lose the ads. You might say &#8220;but jerry, the magazines have ads in them and you subscribed to them&#8221;. I would respond, &#8220;hey the subscription was supposed to pay for the transport of that magazine to me, ahead of the general release to the public stands. The cover price of a magazine goes mostly to pay for the transportation and distribution chain, not the publisher&#8221;. They are, or should be, making their income from the ads in the publication.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2011/03/the-daily-telegraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Headed to NYC</title>
		<link>http://thetwidgetlog.com/2010/12/microsoft-headed-to-nyc/</link>
		<comments>http://thetwidgetlog.com/2010/12/microsoft-headed-to-nyc/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 00:58:11 +0000</pubDate>
		<dc:creator>tech5</dc:creator>
				<category><![CDATA[commentary]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1324</guid>
		<description><![CDATA[
Google Chrome under attack by critics. Operation payback cripples MasterCard site. Wikileaks cannot be stopped say the experts. Will Nokia jump to Android? Let&#8217;s hope so. No Windows 7 slates by year end. Meanwhile MSFT get huge government contract. Japan misses Venus with rocket. Bad math? Holiday  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tech5.mevio.com"><img src="http://www.mevio.com/images/shows/12115/shows/small/tech5.jpg" alt="" /></a>
<p>Google Chrome under attack by critics. Operation payback cripples MasterCard site. Wikileaks cannot be stopped say the experts. Will Nokia jump to Android? Let&#8217;s hope so. No Windows 7 slates by year end. Meanwhile MSFT get huge government contract. Japan misses Venus with rocket. Bad math? Holiday shopping through the roof according to Comscore. NYC getting MSFT store.</p>
</p>
<p>Click to listen: <span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=%3Ahttp%3A%2F%2Fm.podshow.com%2Fmedia%2F12115%2Fepisodes%2F260277%2Ftech5-260277-12-08-2010.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /><param name='wmode' value='opaque' /></object></p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2010/12/microsoft-headed-to-nyc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://m.podshow.com/media/12115/episodes/260277/tech5-260277-12-08-2010.mp3" length="0" type="audio/mpeg" />
		</item>
		<item>
		<title>Google Versus Amazon</title>
		<link>http://thetwidgetlog.com/2010/12/google-versus-amazon/</link>
		<comments>http://thetwidgetlog.com/2010/12/google-versus-amazon/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 00:28:40 +0000</pubDate>
		<dc:creator>tech5</dc:creator>
				<category><![CDATA[commentary]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1323</guid>
		<description><![CDATA[
Google does a demo and shows Chrome OS plus the new Android OS and other items. The company is also in a battle with Amazon over book sales. 4Chan goes after the Swiss bank and others who attack the Wikileaks folks. AT&#38;T still the worst carrier after one day. Cityville now on Facebook. IE9  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tech5.mevio.com"><img src="http://www.mevio.com/images/shows/12115/shows/small/tech5.jpg" alt="" /></a>
<p>Google does a demo and shows Chrome OS plus the new Android OS and other items. The company is also in a battle with Amazon over book sales. 4Chan goes after the Swiss bank and others who attack the Wikileaks folks. AT&amp;T still the worst carrier after one day. Cityville now on Facebook. IE9 supposed to stop tracking. Oh really? Japan floating around Venus. Twitter worm using Goo.gl. And Verizon thinks it can use LTE for home Internet service? Har.</p>
</p>
<p>Click to listen: <span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=%3Ahttp%3A%2F%2Fm.podshow.com%2Fmedia%2F12115%2Fepisodes%2F260143%2Ftech5-260143-12-07-2010.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /><param name='wmode' value='opaque' /></object></p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2010/12/google-versus-amazon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://m.podshow.com/media/12115/episodes/260143/tech5-260143-12-07-2010.mp3" length="0" type="audio/mpeg" />
		</item>
		<item>
		<title>Free Money!!</title>
		<link>http://thetwidgetlog.com/2010/12/free-money/</link>
		<comments>http://thetwidgetlog.com/2010/12/free-money/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 22:37:26 +0000</pubDate>
		<dc:creator>tech5</dc:creator>
				<category><![CDATA[commentary]]></category>

		<guid isPermaLink="false">http://thetwidgetlog.com/?p=1322</guid>
		<description><![CDATA[
Google finally selling all those books it has been scanning. Two new phones from Google including the Nexus S. Whatever happened to the Nexus 2? Facebook on 60 Minutes to promote, uh, advertising? Apple to hire hot designer for new campus. Columbia backs off on anti-Wikileaks attitude. AT&#38;T is the  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tech5.mevio.com"><img src="http://www.mevio.com/images/shows/12115/shows/small/tech5.jpg" alt="" /></a>
<p>Google finally selling all those books it has been scanning. Two new phones from Google including the Nexus S. Whatever happened to the Nexus 2? Facebook on 60 Minutes to promote, uh, advertising? Apple to hire hot designer for new campus. Columbia backs off on anti-Wikileaks attitude. AT&amp;T is the worst says consumer Reports. Samsung tablet news. IBM giving it away. HP&#8217;s new University. Lose you job over offshoring? Get money! Tech deals will continue forever. Tumblr blows up, for a day. </p>
</p>
<p>Click to listen: <span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=%3Ahttp%3A%2F%2Fm.podshow.com%2Fmedia%2F12115%2Fepisodes%2F260014%2Ftech5-260014-12-06-2010.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /><param name='wmode' value='opaque' /></object></p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://thetwidgetlog.com/2010/12/free-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://m.podshow.com/media/12115/episodes/260014/tech5-260014-12-06-2010.mp3" length="0" type="audio/mpeg" />
		</item>
	</channel>
</rss>

