<?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>Verbophobia</title>
	<atom:link href="http://www.blyon.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blyon.com/blog</link>
	<description>Tech and other thoughts of Barrett Lyon</description>
	<lastBuildDate>Mon, 30 Aug 2010 23:48:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Build your own URL shortener</title>
		<link>http://www.blyon.com/blog/index.php/2010/08/30/build-your-own-url-shortener/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/08/30/build-your-own-url-shortener/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 23:48:09 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Twitter Research]]></category>
		<category><![CDATA[bit.ly]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[TinyURL]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[URL Shortener]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=1195</guid>
		<description><![CDATA[Build your own URL shortener!  Quick and simple instructions and code to start your own URL shortener service.]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td><img src="http://r1.3crowd.com/blyon/blogimg/url_logos.jpg">
</td>
<td>There are a lot of URL shorteners out there such as <a href="http://bit.ly">bit.ly</a>, <a href="http://www.tinyurl.com">tinyurl.com</a>, <a href="http://is.gd">is.gd</a>, <a href="http://tiny.cc">tiny.cc</a>.  The list of services is large.  For those of you that don&#8217;t know what a URL shortener is, it&#8217;s a piece of software that converts very long URLs such as:</p>
<p>http://www.blyon.com/blog/index.php/2010/08/28/build-your-own-url-shortener</p>
<p>Into: http://blyon.com/?efa</p>
<p>  This make the URL easy to cut and paste and reduces the characters you use for things such as Twitter.
</td>
</tr>
</table>
<p>I&#8217;ve been using <a href="http://www.tinyurl.com">TinyURL.com</a> for ages.  This morning I wondered to myself, &#8220;why not just use blyon.com?&#8221;  After all, the domain is shorter than TinyURL by 3 characters and if it&#8217;s just me using <a href="http://blyon.com/t/">my service</a> the hash only needs to be about 3 characters long because I am not storing millions of URLs.  Other services use a long hash (7+ characters) because they need more unique ways to identify URLs.</p>
<p>It took all of 30 minutes to write the code, and maybe another 30 to debug it.  </p>
<h3>Here&#8217;s how it works and how to setup your own!</h3>
<p>Go to <a href="http://www.blyon.com/t/">http://www.blyon.com/t</a> to input the URL and get the short URL which uses http://blyon.com/? as the base.  There&#8217;s a simple PHP script inside /t/ which creates the hash and puts it into a two table MySQL database.  I used /t/ just because I already had something at the root of blyon.com.  </p>
<p>I added another snippet of code on blyon.com&#8217;s index.php page which figures out if someone is trying to lookup a hash or not.  If it finds a hash that&#8217;s valid, it does a 302 redirect to the right location.  The 302 redirect is an easy location director built right into HTTP, so basically you&#8217;re telling a browser that goes to the short URL to go somewhere else.</p>
<table>
<tr>
<td>
Now, why do this?  For starters I was trying to wake up and wanted to have something to do while drinking coffee (the NPR stream was down).  However, there may be a lot of SEO reasons to do this.  For one, all my links I post are linked back to blyon.com, which means if something I tweet goes around the block a few times, it will all point back at blyon.com.   Taking this one step further might mean that I should also allow for special keywords to be created, thus helping google learn indexicals that I want valued for my web site.  The third great reason to do this (besides keeping oneself busy while drinking coffee) is to maintain your own links.  If TinyURL goes down someday, everything you have ever linked to will stop working as well.  However, who&#8217;s to say your (or my) admin skills are better than theirs.
</td>
<td><img width=250 src="http://r1.3crowd.com/blyon/blogimg/bsdcup2.jpg"></td>
</tr>
</table>
<p>Anyway, here&#8217;s the code!</p>
<p>The entire package as a tar:  <a href="http://blyon.com/t/redir.tar.gz">redir.tar.gz</a></p>
<p>To create the TinyURL you need this PHP code (my /t/ index page):  index.php</p>
<p>The database include code: dbconfig.php</p>
<p>To figure out if a request is for your main index page or a shortened URL: mainindex.php </p>
<p>The MySQL database you&#8217;ll need:  redir.mysql</p>
<p>PS:  Thanks to Nathan Hickson for helping me debug this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/08/30/build-your-own-url-shortener/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get the iPhone4 on to T-Mobile</title>
		<link>http://www.blyon.com/blog/index.php/2010/08/04/get-the-iphone4-on-to-t-mobile/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/08/04/get-the-iphone4-on-to-t-mobile/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 23:12:10 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[iPhone4]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[Carrier Unlock]]></category>
		<category><![CDATA[Jailbreak]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=1094</guid>
		<description><![CDATA[ It feels great to enjoy freedom from the clutches of AT and T!   ]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td><img width=250 src="http://r1.3crowd.com/blyon/death-star-att-1.jpeg"></td>
<td>Finally!  The iPhone4 can be carrier unlocked, which means you can put the phone on any GSM network you would like!  It feels great to enjoy freedom from the clutches of AT&#038;T &#8212; their data services are over priced, their customer service is awful, their contracts and plans are nearly fraudulent, they opt-in to governmental monitoring, and to top it off their network barely works in most major markets.  The alternative I prefer is T-Mobile.  T-Mobile&#8217;s Edge service is not the fastest in the world but at least it works and is more reliable in the markets I use it in.</td>
</tr>
</table>
<p>Here is a step-by-step instruction set to migrate your iPhone4 from AT&#038;T to T-Mobile.  </p>
<h3>Step 1:  The Micro SIM</h3>
<p>Engadget published an article on how to <a href="http://www.engadget.com/2010/05/06/how-to-create-your-own-micro-sim-card-using-a-chef-knife-and-som/">create your own Micro SIM from your old SIM</a>, however, it is missing a bunch of details: </p>
<table cellpadding=10>
<tr>
<td>
First, there are several types of SIM cards that are out there in the wild.  T-Mobile has two which are interchangeable.  One of them <u>will not work</u> as a Micro SIM because it has connectors which are too wide.  If you try to modify one of the older types you&#8217;ll end up destroying the SIM card and be left with nothing. </p>
<p>You can go to a T-Mobile store and buy a new SIM for $20.  What you need is a 39.01a type SIM (shown in the picture) which is thinner and has smaller electrical contacts than the older types.  [If anyone has more detail on the differences between the different SIM cards, please let me know and I will update the article to make this more clear.]</p>
<p>The SIM itself is the metal contact portion of the card, so what you&#8217;ll need to do is cut the plastic of the SIM to fit inside the iPhone SIM cradle.  </p>
</td>
<td><img src="http://r1.3crowd.com/blyon/t-mobile-sims.jpg"></td>
</tr>
</table>
<table cellpadding=10>
<tr>
<td>Removing the actual sim is very easy, just get a staple and fold it out a bit and push it solidly into the center hole located on the side of the phone.  The SIM cradle will pop free.  Pull out the old ugly nasty AT&#038;T SIM and use it as a template for the new T-Mobile SIM card. </td>
<td><img src="http://r1.3crowd.com/blyon/iphone-remove-sim.jpg"></td>
</tr>
</table>
<table cellpadding=10>
<tr>
<td><img width=150 src="http://r1.3crowd.com/blyon/t-mo-sim2.jpg"></td>
<td>Do your best to align the metal contact area on the T-Mobile SIM with the existing AT&#038;T Micro SIM, pay close attention to orientation of the notch cut into the SIM cards, keep those in the same direction.  If you have the right SIM style, it&#8217;s pretty easy, you really just need to align the SIM as closely as possible.
</li>
</td>
</tr>
</table>
<p>
	When cutting out the SIM, do not initially use scissors &#8212;  doing so will put a lot of stress on the SIM itself and if you hear a &#8220;crunch&#8221; noise you&#8217;re destroying the SIM.  I used a knife to cut out the SIM and a very sharp set of scissors to trim it in order to get it to fit into the iPhone4 SIM cradle.
</li>
<p>
	Make sure that there&#8217;s no protruding shards of plastic, if there are, you may have a very hard time removing your SIM card.
</li>
<h3>Step 2:  Jailbreak</h3>
<p>This step is pretty simple.  Using your iPhone4 (connected to wifi or some network) browse to <a href="http://www.jailbreakme.com">www.jailbreakme.com</a> and follow their really simple instructions to jailbreak the phone.   Once the phone is jailbroken, you can move on to further steps.</p>
<p>If you find you can&#8217;t &#8220;slide to jailbreak&#8221; you may need to factory reset your phone using iTunes.  I had to factory reset because apparently the www.jailbreakme.com site needs a fresh install.  </p>
<p>If you run into problems or want to know more about this process, follow the direction on <a href="http://blog.iphone-dev.org/">http://blog.iphone-dev.org/</a></p>
<h3>Step 3: Carrier Unlock</h3>
<table>
<td><img src="http://r1.3crowd.com/blyon/us101.jpg"></td>
<td>
There will be a new application on your iPhone desktop called Cydia, just open Cydia, allow it to upgrade itself (upgrading the packages ensure you get the most current packages).  Search for the application ultrasn0w and install ultrasn0w.  Once it is installed, you will be prompted to reboot the phone.</p>
<p>Before you do this, please take the time to visit the <a href="http://blog.iphone-dev.org/">Dev-Team Blog</a> to read more about their work and possibly give them a donation to help them with further efforts.</p>
<p>They also have much better and in-depth tutorials on Unlocking and Jailbreaking phones.
</td>
</tr>
</table>
<h3>Step 4: Swap the SIM</h3>
<p>After the phone has rebooted, make sure the phone activates and is functioning before you swap the old AT&#038;T sim out with the new T-Mobile SIM.  </p>
<h3>Step 5:  MMS and Internet setup</h3>
<p>Make sure you have a data plan with T-Mobile, they have an unlimited service available which can be ordered by asking for the Blackberry data service.  That will come with SMS and MMS services as well.</p>
<p>First you need to re-enable your data plan and MMS, you can do that by going to Settings -> General -> Network -> Cellular Data Network and enter the following:</p>
<p><b>Cellular Data:</b></p>
<table width=650 cellpadding=10>
<tr>
<td width=350>
<table>
<tr>
<td>APN:</td>
<td>wap.voicestream.com</td>
</tr>
<tr>
<td>Username:</td>
<td>[do not put anything]</td>
</tr>
<tr>
<td>Password:</td>
<td>[do not put anything]</td>
</tr>
</table>
</td>
<td width=300><img src="http://r1.3crowd.com/blyon/iphone-example1.jpg"></td>
</tr>
</table>
<table width=650 cellpadding=10>
<tr>
<td width=350>
<b>MMS</b></p>
<table>
<tr>
<td>APN:</td>
<td>wap.voicestream.com</td>
</tr>
<tr>
<td>Username:</td>
<td>[do not put anything]</td>
</tr>
<tr>
<td>Password:</td>
<td>[do not put anything]</td>
</tr>
<tr>
<td>MMSC:</td>
<td>216.155.174.84/servlets/mms</td>
</tr>
<tr>
<td>MMS Proxy</td>
<td>216.155.165.50:8080</td>
</tr>
<tr>
<td>MMS Max Size:</td>
<td>[do not put anything]</td>
</tr>
<tr>
<td>MMS UA URL:</td>
<td>[do not put anything]</td>
</tr>
</table>
</td>
<td width=300><img src="http://r1.3crowd.com/blyon/iphone-example2.jpg"></td>
</tr>
</table>
<table width=650 cellpadding=10>
<tr>
<td width=350>
<b>Internet Tethering</b></p>
<table>
<tr>
<td>APN</td>
<td>wap.voicestream.net</td>
</tr>
<tr>
<td>Username:</td>
<td>[do not put anything]</td>
</tr>
<tr>
<td>Password:</td>
<td>[do not put anything]</td>
</tr>
</table>
</td>
<td width=300><img src="http://r1.3crowd.com/blyon/iphone-example3.jpg"></td>
</tr>
</table>
<h3>Step 6:   Canceling your AT&#038;T contract</h3>
<p>Dial customer support at 1-800-331-0500, enter your old phone number that was on the old AT&#038;T SIM.  Wait to get a customer service person on the phone and tell them you are moving to Spain or somewhere like Brazil and ask to cancel the service.  By telling them you&#8217;re leaving the country they&#8217;ll give you 60 days to re-activate service.  </p>
<p>If you have the time, throw a fit and tell them you never signed a physical contract.  Just sit back and demand they find your signature and the AT&#038;T cancellation person will actually call the Apple store where you bought the phone.  It will at least cost AT&#038;T some money for the hour they will spend digging around for your information.</p>
<p><B>**Tip For Jailbreakers:  Buy the phone under contract and sign &#8220;Apple Store Sales Person&#8221; when you agree to the contract.  Then sing your real name on the bill itself.  That will result in no termination fees because you can contest you never signed the contract!  (I know it&#8217;s evil but so is AT&#038;T)</b></p>
<h3>Problems:  Facetime</h3>
<p>T-Mobile apparently does not have support for Facetime.  I&#8217;ve tried a few different methods to get it to register while on T-Mobile but no luck yet.  This is all so fresh that I am sure there will be a patch to re-enable it soon.  I will update this post when there is a method to update the phone to enable Facetime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/08/04/get-the-iphone4-on-to-t-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;Barretbyte&#8221;</title>
		<link>http://www.blyon.com/blog/index.php/2010/07/20/the-barretbyte/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/07/20/the-barretbyte/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 20:18:02 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[3Crowd]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Barretbyte]]></category>
		<category><![CDATA[Barrettbyte]]></category>
		<category><![CDATA[Gigabyte]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=1064</guid>
		<description><![CDATA[There has been a lot of confusion as to what the policy is for calculating various measures of data transfer.  Due to the fact that there is no hard policy on if a GB is 1000 or 1024 MB.  ]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td><img src="http://r1.3crowd.com/blyon/bytes.jpg"></td>
<td>A number of years ago while I was creating the billing and stats system at BitGravity, I ran into a small conundrum on how to calculate what constitutes a Gigabyte of data.  There has been a lot of confusion as to what the policy is for calculating various measures of data transfer, due to the fact that there is no &#8220;hard&#8221; policy on if a GB is 1000 or 1024 MB.   </p>
<p>There are two different definitions of gigabyte in general use:
</td>
</tr>
</table>
<blockquote><p>1,000,000,000 bytes or 10^9^ bytes is the decimal definition, used in telecommunications (such as network speeds) and most computer storage manufacturers (such as hard disks and flash drives). This usage is compatible with SI.
</p></blockquote>
<blockquote><p>1,073,741,824 bytes, equal to 1024^3^, or 2^30^ bytes. This is the definition commonly used for computer memory and file sizes. (This is equivalent to 1,024 megabytes, where one megabyte is 1,048,576 bytes or 2^30^ bytes.) Since 1999, the International Electrotechnical Commission (IEC) recommends that this unit should instead be called a gibibyte (abbreviated GiB).
</p></blockquote>
<p>I decided to do what was best for the customer and the company by splitting the difference between the two.  The billing system ran well and after a year or two another developer Tim Dietrich (whom now works at <a href="http://www.3crowd.com">3Crowd</a>) coined my measurement as a &#8220;Barretbyte&#8221;.  At first he was rather disturbed and he thought I was over billing customers because of the averaged calculation, so I had to dig out the old code and my thinking and it turns out what we were doing as actually very fair to both the company and the customer.</p>
<blockquote><p>The Barretbyte is (commonly misspelled as a BarrettByte) is the equivalent of a Gigabyte.  It&#8217;s symbolized by GbB.  The Barretbyte defines a billable Gigabyte as 1000 Megabytes, and a Megabyte as 1024 Kilobytes or 1048576000 bytes.</p></blockquote>
<p>This is important because if your business is focused on billing in Gigabytes, it&#8217;s difficult to decided which one to choose.  The GB is 6.87% less data than a GiB.  The Barretbyte is somewhere in the middle at 4.63% larger than a GB but smaller than a GiB.  As a content delivery network, that difference can cut heavily into the margin of the business.  If a Gigabyte is calculated as a GB it harms the customer&#8217;s bill by almost 7% and if it&#8217;s calculated as a GiB it harms the CDN&#8217;s profit margin by nearly the same.</p>
<p>The following chart shows the math that constitutes the conversion between the various units:</p>
<table>
<tr>
<td>8 bits</td>
<td>=</td>
<td>1 byte</td>
</tr>
<tr>
<td>1024 bytes</td>
<td>=</td>
<td>1 Kilobyte (KB)</td>
<td>1,024 bytes</td>
</tr>
<tr>
<td>1024 KB</td>
<td>=</td>
<td>1 Megabyte (MB)</td>
<td>1,048,576 bytes</td>
</tr>
<tr>
<td>1 GB</td>
<td>=</td>
<td>1 Gigabyte (GB)</td>
<td>1,000,000,000 bytes</td>
</tr>
<tr>
<td>1 GbB</td>
<td>=</td>
<td>1 Gigabyte (a.k.a. Barretbyte GbB)</td>
<td>1,048,576,000 bytes</td>
</tr>
<tr>
<td>1 GiB</td>
<td>=</td>
<td>1 Gigabyte (GiB)</td>
<td>1,073,741,824 bytes</td>
</tr>
</table>
<p>This has become a standard in billing for data transfered at BitGravity, 3Crowd, and a number of other Content Delivery Networks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/07/20/the-barretbyte/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Internet is Beta</title>
		<link>http://www.blyon.com/blog/index.php/2010/05/04/the-internet-is-beta/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/05/04/the-internet-is-beta/#comments</comments>
		<pubDate>Tue, 04 May 2010 20:49:47 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[Hackers]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ARPANET]]></category>
		<category><![CDATA[Barack Obama]]></category>
		<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Future of Networking]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security Policy]]></category>
		<category><![CDATA[TCP/IP]]></category>
		<category><![CDATA[Vint Cerf]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=1007</guid>
		<description><![CDATA[Like Gmail, the Internet’s core protocol should also have had a Beta tag on it for an extended time - for the past 41 years to be precise.  Generally speaking, it works pretty well, but the founding fathers of the Internet could not have anticipated that the software they were building would ever become what it is now:  The infrastructure for all of society.  
]]></description>
			<content:encoded><![CDATA[<table>
<tbody>
<tr>
<td><img src="/blogimg/gmail-is-beta.jpg" alt="" width="200" /></td>
<td>Beta is an engineering way of saying “almost done” &#8211; the product is good enough to use but it’s not quite finished yet.  Google often releases their new products with a cute little “BETA” logo.  Gmail, the Google email system used by millions, has been in beta for five years.</td>
</tr>
</tbody>
</table>
<p>Like Gmail, the Internet’s core protocol should also have had a Beta tag on it for an extended time &#8211; for the past 41 years to be precise.  Generally speaking, it works pretty well, but the founding fathers of the Internet could not have anticipated that the software they were building would ever become what it is now:  The infrastructure for all of society.</p>
<p>So it appears today that some major features were left out&#8230;but not because the people behind the design made a mistake.  When MIT first used packet switching in 1965 to communicate with a remote computer in California (confirming that packet switching works), the furthest thing from anyone’s mind was security, network neutrality, network education, privacy, cyber warfare, and the slurry of problems that challenge both business and individual users of the Internet today.</p>
<table width="100%">
<tbody>
<tr>
<td width="400">In 1969, with the original workings of the Internet (ARPANET), security was simple: the network was tiny and users on the computers that were connected to it were trusted researchers.  It was an open community.  As Vint Cerf, one of the most notable developers of the Internet, was quote in <i><a href="http://fserror.org">Fatal System Error</a></i> as saying, “My thought at the time, thirty-five years ago, was not to build an ultra-secure system, because I could not tell if even the basic ideas would work…We never got to do the production engineering.”   The focus at the time, sensibly, was on fault tolerance, not security.</td>
<td align="center"><img src="/blogimg/vint-cerf-google.jpg" alt="" width="200" /><br />
<small>Vint Cerf &#8211; Photo by <a href="http://www.flickr.com/photos/haynes/398653550/">Charles Haynes</a></small></td>
</tr>
</tbody>
</table>
<p>Now, nearly 41 years later, we read about Internet security issues constantly.  The lack of security features in IP (Internet Protocol) has spawned entire industries, with vendors and service providers that are happy to sell you the next generation protect-all, whiz-bang software.  If one were to ask a roomful of people in the security industry what they think about the security products, including their own, on the market today &#8211; if they think there are real solutions to the problems we all face &#8211; their answer would be a unified “NO”.  No one thinks we are at the point where we can all just stop worrying about security.</p>
<table cellpadding="5">
<tbody>
<tr>
<td><img src="/blogimg/obamathinking.jpg" alt="" width="175" /><br />
<small> Barack Obama<br />
Courtesy The White House</small></td>
<td>The disturbing fact is that the engine that enables our modern global economy is based on a really cool experiment that was not designed for security.  Risks can be reduced, but the naughty truth is that the ‘Net is not a secure place for business or society.</p>
<p>The role that the Internet plays in our economy places it in the category of a critical resource that the government must protect – just as it does our water supply and the national power grid.  A threat to Internet security is a threat to national security.  In May 2009, President Obama spoke about this issue and the plan his administration has to address it.  He stated that the US is &#8220;not as prepared as it should be” to defend against cyber threats and he proposed new “digital infrastructure” initiatives to “ensure that these networks are secure, trustworthy and resilient.”</p>
<p>But can the US Government, or any other governing authority, ever adequately protect and defend the Internet?  How can that be done if the Internet Protocol itself was not designed to, in Obama’s words, “deter, prevent, detect, and defend against attacks”?</td>
</tr>
</tbody>
</table>
<p>Given the world economy’s substantial dependence on the Internet, wouldn’t it make sense to create a well-funded think-tank with the brightest minds in society to design a new protocol with a new vision?  This time when we start the process, we will have the benefit of 41 years of Internet beta testing and we can rethink the vision to also include things such as:</p>
<ul>
<li><strong>Security:</strong> Transmitting data safely but easily without special software.</li>
<p></p>
<li><strong>Privacy:</strong> Balancing anonymity and accountability.  Allowing people to communicate freely but ensuring accountability to protect against abuses and criminal activity.</li>
<p></p>
<li><strong>Routing Intelligence:</strong> Routing data without neutrality issues and allowing the protocol itself to route traffic based on a myriad of metrics, conditions, agreements, and other factors.</li>
<p></p>
<li><strong>Enculturation and Education:</strong> Bringing new people (children, emerging nations, etc) onto the network with a step approach to ensure that they learn about network culture and functionality before they make mistakes.</li>
<p>
</ul>
<p>I don’t think any of us who are involved with cyber security on a professional level can see the Internet as it is today functioning successfully for the next 50 years.  I can envision a world of networking much different than today’s.  So why not start turning the ship now?</p>
<blockquote>
<h3>Is designing a better protocol difficult?  Yes.  Can it be done?  Absolutely!</h3>
</blockquote>
<p>I will be writing more on this topic in the coming months. Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/05/04/the-internet-is-beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Li-Ion Motors Has Crossed The Line</title>
		<link>http://www.blyon.com/blog/index.php/2010/04/30/li-ion-motor-company-crook/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/04/30/li-ion-motor-company-crook/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 15:37:20 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[EV]]></category>
		<category><![CDATA[Electric Cars]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Electric Lemon]]></category>
		<category><![CDATA[EV Innovations]]></category>
		<category><![CDATA[EV Lemon]]></category>
		<category><![CDATA[Li-Ion Motors]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=966</guid>
		<description><![CDATA[Despite the fact that Li-Ion Motors deliver junk cars, despite the fact that Li-Ion Motors appears to be defrauding their shareholders, the nail in their coffin was finding an apology letter to them that I did not write.  These guys are out to scam people on their stock and have no honest interest in building a real business.
]]></description>
			<content:encoded><![CDATA[<p>I woke up this morning to find out that (unbeknownst to me) I wrote an apology letter about my own blog post, <b><i><a href="http://www.blyon.com/blog/index.php/2009/12/31/ev_innovations_crooks/">Li-Ion Motors &#8211; The Electric Lemon</a></b></i>.  I&#8217;m not sure if I should be flattered that there&#8217;s a fake me on the Internet writing apology letters or if I should be upset that someone is out there is damaging my integrity.</p>
<table>
<tr>
<td><a href="/blogimg/Li-Ion-fake.pdf"><img width=300 src="/blogimg/Li-Ion Motors Crooks_1.jpg"></a></td>
<td>
It appears that Li-Ion Motors may have paid a company to publish my fake apology on <a href="http://www.consumercomplaints.in">India Consumer Complaints Forum</a>.  Maybe they did it themselves, I have no evidence to tie it directly to them.  However, I did contact the India Consumer Complaints suggesting that they&#8217;re hosting a fake letter and they removed it.</p>
<p>I&#8217;m guessing they are behind it because when you search, &#8220;Li-Ion Motors&#8221; in Google, my blog comes up on their first page of results.  I imagine that they&#8217;re trying to push that out of the front page.  However, this is only speculation on my behalf.</p>
<p>If you would like to see my fake apology, I saved a PDF of the site:  <a href="/blogimg/Li-Ion-fake.pdf">click here for the PDF</a>.</p>
<p>What&#8217;s more disturbing is that the letter used my picture, my name, and even suggested &#8220;My hosting providers has closed down the FTP of my website.&#8221;  I think it would be rather difficult for my hosting provider to shut down my FTP given I am my hosting provider.
</td>
</tr>
</table>
<blockquote><p><b>Let me state this very clearly:  By no means do I apologize for my blog post, to my knowledge everything that I wrote is factual, and in my opinion Li-Ion Motor Company, EV Innovations, Hybrid Technologies or whatever they want to call themselves &#8212; is a scam.</b>
</p></blockquote>
<p>More over, in my suit <i>Lyon vs Li-Ion Motors</i> (read the <a href="http://www.blyon.com/blog/index.php/2009/12/31/ev_innovations_crooks/">Electric Lemon</a> article for background), their lawyer Scott Meehan <a href="http://blyon.com/blogimg/Motion-To-Quit.pdf">quit representing Li-Ion Motors about two weeks ago</a>.  I am guessing that had something to do with not being paid and possible liability over what they are doing now.  </p>
<p>To wrap this up:  Stay away from these guys, they&#8217;re bad.<br />
<br />
<b><br />
<h3>UPDATE:</h3>
<p></b></p>
<p>More evidence that Li-Ion Motors are trying to manipulate chat forums and sweep what has happened here under the rug.  Jay Groh emailed me this today and I thought it was worth sharing: </p>
<blockquote><p>I don&#8217;t know if you have been made aware of the recent crap this company is trying to pull on priuschat.com but I will let you know anyway.</p>
<p>It starts here on a topic that points to your blog about your horror story.</p>
<p>http://priuschat.com/forums/ev-electric-vehicle-discussion/74243-electric-vehicle-innovations-li-ion-motors-horror-story.html</p>
<p>I&#8217;ll give you the quick short version.</p>
<p>The poster is john joseph. He claims to purchase a vehicle from the company and wants the topic closed.</p>
<p>He then posts again and a customer saying the company is great and still wants the topic deleted.</p>
<p>Then he represents hims self as someone from the company and if the topic is not removed he will take legal action. LOL</p>
<p>He creates another account under william larry and tries the same crap.</p>
<p>john joseph goes on to create two more topics on how great his company is.</p>
<p>http://priuschat.com/forums/other-cars/80560-li-ion-motors-hybrid-electric-cars.html</p>
<p>http://priuschat.com/forums/ev-electric-vehicle-discussion/80562-li-ion-motors-successful-story.html</p>
<p>I reported this as spam to the moderators and he goes as far as calling my posts illegal. <img src='http://www.blyon.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  lol He also claimed I posted links to my website which I did not do. I&#8217;m guessing he was referring to my sig which is in all my posts.</p>
<p>Anyway I though you might want to add this to your site to show how low these scumbags will go. The topics have a little more detail but will only take a few minutes to read through.</p>
<p>I&#8217;m glad you have not removed the blog and not cave into these dumbass take down notices. Good luck in the future. I just wish you did not get screwed because this is a small setback in the EV community.</p>
<p>&#8211;<br />
Thanks,<br />
Jay Groh</p>
<p>http://www.jaygroh.com</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/04/30/li-ion-motor-company-crook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome CrowdDirector</title>
		<link>http://www.blyon.com/blog/index.php/2010/02/02/welcome-crowdmonitor-and-crowddirector/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/02/02/welcome-crowdmonitor-and-crowddirector/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 05:57:21 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=934</guid>
		<description><![CDATA[Welcome CrowdMonitor and CrowdDirector At 3Crowd have been working furiously over the last month on the development of our first two services. The whole team has been dedicated to delivering on our mission of helping companies reduce costs, deliver, and scale their network applications through a healthy ecosystem for data delivery. With our first services [...]]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td><a href="http://www.3crowd.com"><img src="http://r1.3crowd.com/blyon/blogimg/3crowd.jpg"></a></td>
<td>Welcome <a href="http://3crowd.com/products/crowddirector/">CrowdMonitor</a> and <a href="http://3crowd.com/products/crowddirector/">CrowdDirector</a></p>
<p>At <a href="http://www.3crowd.com">3Crowd</a> have been working furiously over the last month on the development of our first two services. The whole team has been dedicated to delivering on our mission of helping companies reduce costs, deliver, and scale their network applications through a healthy ecosystem for data delivery.
</td>
</tr>
</table>
<p>With our first services – CrowdMonitor and CrowdDirector, we’re giving the world just a tiny view of the foundation we’re building to enable a new type of Content Delivery System. We are using the idea of a crowd or crowd-sourcing to leverage multiple CDNs that can be monitored, managed and deployed as one single service.</p>
<p>CDNs have been an integral part of the vitality of video on the Net, but we think they are starving the next generation of innovation. The natural evolution of this marketplace has favored the content distributors but the market needs to continue its evolution into a more balanced relationship. </p>
<table>
<tr>
<td>CrowdMonitor and CrowdDirector will give content owners the power to know what’s happening with their content and the tools to dynamically manage their assets. They will have significant implications on performance, vendor flexibility and costs and not only impact the business of current content providers, but also re-orient the economics and invite a new generation of providers to participate in the market.</td>
<td><img src="http://r1.3crowd.com/blyon/blogimg/crowddirector_icon.png"></td>
</tr>
</table>
<p>We have been thoughtful about how we are creating this ecosystem and have been working on it for a while. If we do our job right, Internet streaming will be more affordable than traditional broadcast systems and together will have success.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/02/02/welcome-crowdmonitor-and-crowddirector/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Top 10 Things To Do While Under DDoS Attack</title>
		<link>http://www.blyon.com/blog/index.php/2010/01/24/ddos_top_10/</link>
		<comments>http://www.blyon.com/blog/index.php/2010/01/24/ddos_top_10/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 16:11:30 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[DDoS]]></category>
		<category><![CDATA[Hackers]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[DoS]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=874</guid>
		<description><![CDATA[In my past decade-plus dealing with distributed denial-of-service attacks, I have noticed a few patterns in the way that companies handle these attacks. Usually when a virgin company is first attacked, all hell breaks loose.  ]]></description>
			<content:encoded><![CDATA[<p>In my past decade-plus dealing with distributed denial-of-service attacks, I have noticed a few patterns in the way that companies handle these attacks. Usually when an unprepared virgin company is first attacked, all hell breaks loose.  The lack of preparedness causes several chain reactions that make the situation worse. Addressing these most common mistakes ahead of time can help a situation tremendously.</p>
<p>When someone calls me for advice, the first few items I go over have nothing to do with fixing the attack. I’m giving advice that I think is common sense, and I’ve been surprised that others don’t find it obvious.  </p>
<p>Here are my Top 10 To-do’s for making life less painful during an attack.</p>
<h3>1.  Don’t Panic </h3>
<table>
<tr>
<td>While the network and your services are exploding and bouncing offline, there must be someone that is comfortable enough to make good decisions.  I’ve seen managers freak out and threaten everyone with the prospect of the company collapsing.  I think they were trying to motivate people to figure out some solution, but they ended up creating more chaos during an already tough situation. </td>
<td><img width=200 hight=200 src="http://r1.3crowd.com/blyon/blogimg/dontpanic.jpg"></td>
</tr>
</table>
<p>Once I saw employees hastily rip out the network’s firewalls and re-configure the load balancers. They ended up creating more mess than they had before because they were reacting to an angry and stressed manager.</p>
<p>You are going to create a disaster if you approach with a sledgehammer and wishes.  Don’t let anyone make quick changes; try to follow your company’s policies.  Sit back, analyze the problem, isolate the actual device that’s failing in the chain, and make an informed&#8211;and usually small&#8211;adjustment.</p>
<p>If you’re in the 10th hour and things don’t seem to be improving, gather everyone, go away from the office, have a beer, relax for 15 minutes, and talk about something positive.  The information flow after that beer might just save you and motivate everyone to do a good job – the solution will come!</p>
<h3>2.  Create a contact list of external email addresses and phone numbers.</h3>
<table>
<tr>
<td><img src="http://r1.3crowd.com/blyon/blogimg/doh.jpg"></td>
<td>This one is sadistically funny. Most companies host their email, VoIP system, IRC, Wiki, databases, primary storage, etc. all in the same colocation behind the same network connection that hosts their web sites and services.  This is, for lack of better words, stupid. All of your digital eggs are in one basket, and that basket is also holding a grenade.  A DDoS attack ends up crippling the company&#8217;s infrastructure, leaving it with no phones, email, or any communications structure whatsoever.</td>
</tr>
</table>
<p>I’ve seen CEOs of massive companies using their hotmail account and cell phone to contact me because it was their only way of communicating from their multi-million dollar offices.</p>
<p>If you insist on being an “eggs in one basket” company, keep a list of vital email accounts and cell phone numbers on a notepad.  That way you can at least call your IT person when everything is down.</p>
<h3>3.  Setup a “War Room”</h3>
<p>Convert your conference room into a war room. Get everyone that has influence in the company in that room.  This includes marketing, IT, the CEO, etc.  It ensures everyone is on the same page, leaders can lead, and everyone can be in sync.</p>
<p>I typically fill the room with a constant flow of healthy snacks, coffee, and other beverages.  If you don’t have anything like that handy, order pizza immediately or send someone shopping.</p>
<h3>4.  Get one of your guys to the colo ASAP</h3>
<table>
<tr>
<td><img width=200 src="http://r1.3crowd.com/blyon/blogimg/Netinstall_cable-01.jpg"></td>
<td>
If you are offline due to DDoS attack, chances are your IT staff cannot log in to the remotely hosted hardware in your datacenters.  The easy solution is to physically get them there.  They can console in to the hardware and actually see what is going wrong.  It’s not fun, but it will result in a much faster resolution to the problem (Make sure they have folding chairs, cash for the vending machines, and serial cables).</td>
</tr>
</table>
<h3>5.  Find an old hub</h3>
<p>Yes, I said hub.  You know, those old things that cause collisions?  If you’re dealing with an attack and yours is like a lot of companies, it may be difficult for you to set up a traffic monitoring port on your main routers.  Assuming you’re setup with Ethernet, at least you can bridge a hub in-line and connect a laptop to the hub and sniff or analyze the traffic!</p>
<p>This is key because having eyes into the data stream really helps figure out how to filter it.  Pulling random cables and shutting down random services is not the solution. Make an informed call because you were thoughtful enough to have a hub or SPAN/Mirror port pre-configured.</p>
<h3>6.  Understand the nature of the attack</h3>
<table>
<tr>
<td>
There’s a reason you are the target for this attack.  Obviously there are a lot of reasons for any given attack, yet understanding the attacker’s motivation is key to creating a better defense strategy.</p>
<p>In the field I have observed a very strange phenomenon; the people working at a victim company usually have a gut feeling about why they are being attacked.  So far, their gut instinct has been correct.</p>
<p>Some people know they are being extorted and some people feel it’s a competitor trying to shut them down. Others have a customer that has pissed someone off so the attacker takes down the whole company just to silence one customer. Maybe shutting down the attacker’s target for awhile may actually save the entire ship. Go with your gut on this, make a hypothesis and test it.
</td>
<td>
<img width=150 src="http://r1.3crowd.com/blyon/blogimg/vernetroyer.jpg"></td>
<td>
</td>
</tr>
</table>
<h3>7.  Document everything</h3>
<p>Your business was just smacked around by some bad guys, but what proof do you have?  If you don’t have any, then what do you think the law enforcement is going to do for you? </p>
<p>During the attack, lock down all your logs and assign someone within the company to be the custodian of the records.  Save server logs, web logs, email logs, any packet capture, network graphs, reports – anything – including a timeline of events.</p>
<h3>8.  Call your ISP</h3>
<p>Your ISP can help, however they have a process to follow.  The process usually requires a ticket escalation requirement before you can get real help.  If you call early in the attack and open a ticket, that can help you when you really need someone.  </p>
<p>Your ISP also has hardware that may be capable of filtering or rate-limiting the attack.  The more you know about the attack and you can point them in the right direction, the more they can help you.</p>
<p>They may also suggest you to sign up for their DDoS protection system. Don’t do that right away; reserve that until you are out of all other options.  If you do sign up, make sure there is a service level agreement.  In the meantime, there are a number of free services you can request:</p>
<p>Null routing of the target IP address<br />
Router ACLs of the top attacking source addresses<br />
New IP addresses<br />
Detailed traffic reports</p>
<p>If you can find the guru at the ISP that knows how to fix these problems, that might be time well spent.</p>
<h3>9.  Setup &#8220;We are down&#8221; web hosting services</h3>
<table>
<tr>
<td><img width=250 src="/blogimg/twitter-fail-whale-full.jpg"></td>
<td>If the attack is running longer than you had anticipated and you don’t have a solution in sight, you could get your site working at least enough to communicate to your customers.</p>
<p>There are web-hosting companies, which as part of what they do, provide DDoS service level agreements. For a small amount of money you could quickly sign up with several of these companies, upload a “Sorry we’re down, but contact us here” page, and flip your DNS to the cluster of hosted servers.</td>
</tr>
</table>
<p>Your customers will have more confidence in your performance and the attackers may get bored because the attack has not completely shut everything down.  If this plan doesn’t work, at least you have diverted some of the attack away from your network.</p>
<h3>10.  Learn from the event</h3>
<p>Post attack can be a blur; everyone is exhausted and burnt out.  Mostly, everyone just wants the day-to-day atmosphere to return to status quo.  Well, if you’ve been attacked and you did not learn and improve your strategy on how to deal with future attacks, then you are not doing your job.</p>
<p>You should start a review the very day after, while everything is fresh, and make sure that everyone is prepared.  Go over what worked, what did not work, and how to improve your system’s overall technology.</p>
<p>Spend the money to fix things properly. Don’t just duct-tape it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2010/01/24/ddos_top_10/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Electric Lemon &#8211; Li-Ion Motors</title>
		<link>http://www.blyon.com/blog/index.php/2009/12/31/ev_innovations_crooks/</link>
		<comments>http://www.blyon.com/blog/index.php/2009/12/31/ev_innovations_crooks/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 18:34:48 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[Electric Cars]]></category>
		<category><![CDATA[Electric Car]]></category>
		<category><![CDATA[EV]]></category>
		<category><![CDATA[EV Innovations]]></category>
		<category><![CDATA[Hybrid Technologies]]></category>
		<category><![CDATA[Li-Ion Motors]]></category>
		<category><![CDATA[Li-Ion Motors Corp]]></category>
		<category><![CDATA[Scam]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=683</guid>
		<description><![CDATA[In June of 2008 I decided to purchase an electric car.  I find new technology really exciting and I knew if I wanted to learn fully about the nuances of electric cars I had to purchase one...  This is the story of my electric car turned Electric Lemon.]]></description>
			<content:encoded><![CDATA[<table cellspacing=5 cellpading=5>
<tr>
<td><img width=300 src="http://r1.3crowd.com/blyon/blogimg/lemon_car.jpg"><br /><small><i>EV Innovations &#8211; Their logo looks like EVil doen&#8217;t it?</i></small></td>
<td>Back in June of 2008 I decided to purchase an electric car.  I find new technology really exciting and I knew if I wanted to learn fully about the nuances of electric cars I had to purchase one. The Tesla was just coming out of the gate and my friend, Jay Adelson, purchased one but I thought it would be interesting to have a vehicle that&#8217;s more down-to-earth and something I could use as an every day car.</p>
<p>I wrote this blog to protect other people from making the same bad decision I made.  Please understand that this experience is not an epidemic with all electric vehicles, it just happens to be my experience with this particular company.
</td>
</tr>
</table>
<p>I found a company called EV Innovations (whom just changed their name to Li-Ion Motor Corporation and was formally known as Hybrid Technologies).  They convert (or as they would say “build”) standard gas-powered PT Cruisers into fully electric vehicles.  This made sense for my needs. </p>
<p>My wife at the time was driving a PT that we bought from my late grandmother, it&#8217;s a pretty gutless car which has no sex appeal whatsoever, but it worked for us.  It reminded me of my grandmother and is also a car I could drive into San Francisco and not really worry about theft or vandalism.</p>
<p>EV Innovations advertised their converted PT Cruisers as getting a distance of 120+ miles per charge with a charging time of 8 hours.  Based on those specifications I could drive to the Sierra Foothills and commute to the Bay Area carbon free.</p>
<p>I did some research and found out EV Innovations at the time was testing their PT conversion as an EV Taxi in New York (which later ended in failure).  They sold two cars to a company in Sacramento and the company was also featured on the <a href="http://www.youtube.com/watch?v=S17iiT5ZKec">Discovery Channel&#8217;s program Modern Marvels</a>. </p>
<p>I also liked the idea of supporting a startup, I myself enjoy starting companies.  Purchasing a car from an American based startup felt right.  I know that if something was wrong with one of my customers, I would do anything under my power to make it right. Naively I assumed this was also true for EV Innovations.</p>
<table cellpadding=5 cellspacing=5>
<tr>
<td>
I spent time asking EV Innovations a lot of questions about charging, regenerative breaking, cell types, and their engineering philosophy.  Their sales people Kelli Cerven and Mike Cerven were very helpful.  </p>
<p>I decided to move forward and paid the deposit for half of the car, which was used to purchase a new PT with my specification.  The car was to be ready in 90 days. Unfortunately, it ended up shipping in 120+ days. But things started to go wrong much before the car was delivered.</p>
<p>It turns out the “new car” I paid for was in fact a demo car that already had 4,000 miles on it.  In addition, they told me the car was ready to ship a month before it was actually finished. They asked for the balance so they could ship the car.  I wired the remaining balance of the car only to find out later the car was not ready.
</td>
<td>
<img width=400 src="http://r1.3crowd.com/blyon/blogimg/my_electric_lemon.jpg"><br /><i><small>My Electric Lemon being converted from ICE to EV.</small></i>
</td>
</tr>
</table>
<table cellpadding=5 cellspacing=5>
<tr>
<td align=left><img width=300 src="http://r1.3crowd.com/blyon/blogimg/ev6.jpg"><small><i>My first moments with the Li-Ion Motors (formally EV Innovations) lemon.</i></small></td>
<td>After all was said and done, three months after the promised delivery date, the vehicle was finally shipped, and yes, it was dead on arrival.  The truck driver that delivered it didn’t even have a ramp on his truck, so we used the loading dock at a local grocery store where I was visiting family for Christmas in the Sierra Foothills.  The truck driver pushed the car off the truck and drove away.</p>
<p>I had it towed back to the garage at my family’s home and plugged it in but it would not charge.  I immediately contacted EV Innovations and they instructed me to plug it into a 220V outlet and informed me that it cannot charge from empty on a 110V outlet.  That seemed obnoxious, but I did as instructed and found a 220V line and plugged it in.  It slowly charged to full.</td>
<tr></table>
<p><strong><br />
<blockquote>The first drive made it about 50 miles (downhill) before we had to have it towed the rest of the way home to the Bay Area.  The car was to do 120+ miles and their sales people suggested the &#8220;+&#8221; would be impressive.
</p></blockquote>
<p></strong></p>
<p>EV Innovations asked me to do a number of things with the car, which eventually resuted in the car&#8217;s charging connector to melt and nearly catching on fire (Later they had to install a relay to prevent some sort of voltage issue which caused the problem).  </p>
<p>After I reported the smoking plug to EV Innovations, I received this email::  <strong><br />
<blockquote>
From: &#8220;Luc Pham&#8221; <LPham@hybridtechnologies.com><br />
Date: December 29, 2008 3:58:14 PM PST<br />
Subject: Charging<br />
Mr. Lyon,<br />
Please stop charging the car for until we replace the bad cell.<br />
Please open up the emergency switch (EPO).
 </p></blockquote>
<p></strong></p>
<table cellpadding=5 cellspacing=5>
<tr>
<td>
From there, it sat in the garage inoperable for months while EV Innovations figured out what to do.  Eventually they sent people to work on the car; they replaced the lithium cells, re-wired parts of the car, etc.  I had them sign work orders to prove that they were there.</p>
<p>In all fairness, Luc was a very nice guy and he wanted the car to work.  He apologized for the awful things his management has done.
</td>
<td align=right><img width=300 src="http://r1.3crowd.com/blyon/blogimg/ev4.jpg"><i><small>Luc Pham, EV Innovations intern working on the car.</small></i></td>
</tr>
</table>
<p>I demanded a refund on the car but they ignored my requests.  I followed up by sending their CEO and board of directors a certified letter demanding them to repurchase the car based on the Song Beverly Act (California Lemon Law), again they refused to respond.  </p>
<p>Eventually, they asked me to ship the car back to North Carolina so they could attempt to jam more batteries into the vehicle, change the power steering system, and perform various upgrades to improve the issues I have been experiencing.</p>
<p>I contemplated this option but with all the bad experiences I had with the company, I did not fully trust them. So I suggested that if I were to send the car back, perhaps they could provide me with my deposit back as a gesture of good will and integrity on their part. They of course refused saying this was “warranty” work and in no way was the car being sent back due to any fault of the company. I was at a loss.</p>
<p>At this point the car would go about 70 miles on a 10 to 20 hour charge (depending on voltage/amperage). </p>
<p><strong><br />
<blockquote> I was able to drive it between my office and home for a month until the driver side wheel nearly fell off because the bearings were incorrectly packed.  That was it for me.
</p></blockquote>
<p></strong></p>
<p>I demanded a refund, I demanded them to take care of this problem the way any decent company would.  I called Tom Zgoda their “Plant Manager” and asked them to do this right.  He said I was driving the car wrong and that it&#8217;s all my fault and hung-up on me.  I then pressed him via email and he said said:<strong><br />
<blockquote>&#8220;It is our position that we have been diligent in addressing the warranty on your vehicle.  I guess since you disagree with that, it will be up to the courts to make a final determination.&#8221;
</p></blockquote>
<p></strong></p>
<p>I hired <a href="http://www.kabolaw.com/">Mark Anderson</a>, a lawyer who specializes in Lemon Law cases and set out to do exactly what he suggested.  I filed suit.</p>
<p>My lawyer and I hired a superstar electrical engineering expert named Art MacCarley, Ph.D., PE., who happens to be the Department Chair of the Electrical Engineering department at <a href="http://www.calpoly.edu">Cal Poly San Luis Obispo</a>.  Dr. MacCarley drove to my house and spent the entire day meticulously going through the car. Later he wrote:<strong><br />
<blockquote><a href="http://r1.3crowd.com/blyon/blogimg/Lyon_vs_EV.pdf">&#8220;I determined that the converted vehicle may best be characterized as an engineering prototype or work-in-progress conversion, containing multiple deficiencies and defects introduced by the modification to battery-electric propulsion. These deficiencies and defects affect vehicle function, features and safety, and could be expected to limit reliability.  Overall, the subject vehicle fails to meet the manufacturer’s representations and reasonable owner expectations of engineering quality.&#8221;</a>
</p></blockquote>
<p></strong><br />
Art put it very politely, but basically he was saying that college students could have built this car better than EV Innovations.  <a href="http://blyon.com/blogimg/Lyon_vs_EV.pdf">Attached to this article is the full report written by Dr. MacCarley.</a></p>
<table>
<tr>
<td>
<strong>There were spliced wires exposed to the undercarriage of the vehicle.  In some cases it appeared that EV Innovations used the wrong gauge wire for high voltage lines and to top it off, and the power steering was powered by what looks to be a Briggs and Stratton electric lawn mower motor!<br />
</strong>
</td>
<td>
<a href="http://r1.3crowd.com/blyon/blogimg/Lyon_vs_EV.pdf"><img width=400 src="/blogimg/ev-cap1.jpg"><br />Excerpt from Dr. MacCarley&#8217;s report.</a></td>
</tr>
</table>
<table cellpadding=5 cellspacing=5>
<tr>
<td><a href="http://r1.3crowd.com/blyon/blogimg/Lyon_vs_EV.pdf"><img width=400 src="http://r1.3crowd.com/blyon/blogimg/ev_cap2.jpg"><br />Excerpt from Dr. MacCarley&#8217;s report.</a></td>
<td>After we sent EV Innovations the report (I ended up paying to help EV Innovations understand why their cars are not safe) they asked to settle for less than I paid for the car.  Minus the legal fees, I ended up with a loss.  It was not the best outcome but at least the car would be out of my hair and I would never have to talk with the people at EV again.  However, the “settlement” ended up being a delay tactic. They changed the terms of the settlement, never paid, never finalized the paperwork, did not return calls or emails as they promised, said we had been &#8220;overly aggressive&#8221; and said this is going into a &#8220;holding pattern&#8221;.</td>
</tr>
</table>
<p>In their <a href="http://www.faqs.org/sec-filings/091208/EV-Innovations-Inc_10-Q/">SEC filings from December 8th, 2009</a> they wrote:<strong><br />
<blockquote>“Barrett Lyon, an individual, has filed suit against the Company in the Superior Court of California, San Mateo County, for alleged breach of warranty for a vehicle he purchased from the Company seeking $68,222 in damages, plus attorney’s fees estimated in the range of $10,000 to $30,000. The Company has entered into a settlement agreement with Mr. Lyon.”
</p></blockquote>
<p></strong><br />
However, by December 8th, 2009 we did not have a settlement agreement and we were preparing to file a motion to continue the case and re-set a trial date.  Prior to December 8th, they stopped responding to us and started to delay and break promises.  Their statement in their SEC filings was very misleading to any shareholders of EV Innovations.</p>
<p>Today, the car sits in my garage.  While very disappointing, I learned a lot during this year and a half long experience.</p>
<p>EV Innovations/Li-Ion Motors is in my opinion a criminal operation operated by people more interested in taking money from shareholders than building a real electric car.</p>
<p>There are plenty of amazing electric car companies out there such as Tesla, Fisker, and soon the big auto manufactures.  Maybe in 3 to 5 years I will take another look at electric cars as a serious mode of transpiration but until then, hopefully morons like EV Innovations do not create a bad name for electric vehicles.</p>
<p><b><a href="http://r1.3crowd.com/blyon/blogimg/Lyon_vs_EV.pdf">A detailed report on my car and the failure of EV Innovation&#8217;s design written by Art MacCarley.</a></b></p>
<p><b>Other EV Innovations a.k.a. Hybrid Technologies related links:</b></p>
<blockquote>
<li><a href="http://theportnoygroup.typepad.com/my_weblog/2008/04/hybrid-technolo.html">Hybrid Technologies is involved in illegal junk faxes</a>
<li><a href="http://www.greencarcongress.com/2005/12/fritolay_to_acq.html">Hybrid Technologies And The Missing Fritos</a>
<li><a href="http://apteraforum.com/archive/index.php/t-252.html">Is Hybrid Technologies legitimate?</a>
<li><a href="http://www.complaintsboard.com/bycompany/hybrid-technologies--lithium-battery-powered-products a37655/bypupularity.html">EV Innovations Stock Holders Screwed!</a><br />
</blockquote>
<p><object width="364" height="280"><param name="movie" value="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" /><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="playerType=embedded&#038;type=id&#038;value=50005773" /><embed src="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" type="application/x-shockwave-flash" wmode="transparent" width="364" height="280" allowFullScreen="true" FlashVars="playerType=embedded&#038;type=id&#038;value=50005773" /></object><br />
<small>A hilarious CNET Review of EV Innovations.</small></p>
<p><a href="http://money.cnn.com/news/newsfeeds/articles/globenewswire/180904.htm"><B>UPDATE #1:  Two days ago they changed their name from EV Innovations to Li-Ion Motor Corporation.  I&#8217;m guessing this is to avoid bad press?</b></a></p>
<p><strong>UPDATE #2: 1/4/2010 EV Innovations/Li-Ion Motors lawyer responds to my lawyer:<br />
</strong></p>
<blockquote><p>On Mon, Jan 4, 2010 at 11:01 AM, Scott Meehan <malibupictures@earthlink.net> wrote:<br />
Dear Mr. Anderson:</p>
<p>My client was not amused by the false and defamatory comments made by your client.  I hereby demand that your client take down the subject entry and CEASE AND DESIST any further dissemination of the blog entry.  We will be filing libel actions against Mr. Lyon and Dr. MacCarley.  Will you accept service on behalf of Mr. Lyon and/or Dr. MacCarley?</p>
<p>Scott Meehan
</p></blockquote>
<p><strong>UPDATE #3: 2/16/2010 Li-Ion Motors lawyer responds and demands I take down the blog:<br />
</strong></p>
<p>The letter accuses me of staying that EV Innovations/Li-Ion Motors has refused to do the repairs, which is not the case at all.  Read the blog and you will see that I am stating the facts of the case and my opinion.  I actually highlight the fact that they have offered to take the car back to rebuild it to the standards I was expecting over a year ago.  However, adding more batteries so it can achieve the driving distance that it was to reach from day one coupled with my past experience with them, just seems like a losing proposition.  Given the absolute nightmare and consistent problems I have experienced, not to mention the fraudulent sales representations, I think they should buy the car back.    In my opinion, if they were good honest people, they should buy the car back and learn from this experience.  </p>
<p>Here is the letter they just sent:<br />
<img src="http://r1.3crowd.com/blyon/blogimg/li-ion_motors_letter.jpg"></p>
<p><strong>UPDATE #4: 4/22/2010 Li-Ion Motors&#8217; Lawyer Quits:<br />
</strong></p>
<p>Apparently Li-Ion Motors was not paying him and or he did not like the liability that this case was creating for him.  <a href="http://blyon.com/blogimg/Motion-To-Quit.pdf">Here&#8217;s the PDF of his motion</a>.</p>
<p><strong>UPDATE #5: 4/30/2010 Li-Ion Motors Posts Fake Apology Letter from me!:<br />
</strong></p>
<p>This is so strange I wrote post regarding my fake apology letter: <a href="http://www.blyon.com/blog/index.php/2010/04/30/li-ion-motor-company-crook/">Li-Ion Motors Crossed The Line</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2009/12/31/ev_innovations_crooks/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Here we go again… Buckle your seat belts!</title>
		<link>http://www.blyon.com/blog/index.php/2009/12/21/here-we-go-again-buckle-your-seat-belts/</link>
		<comments>http://www.blyon.com/blog/index.php/2009/12/21/here-we-go-again-buckle-your-seat-belts/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 20:03:31 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[3Crowd]]></category>
		<category><![CDATA[Crowdsourcing]]></category>
		<category><![CDATA[New Technology]]></category>
		<category><![CDATA[Startup]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=664</guid>
		<description><![CDATA[I will be launching a company blog tomorrow to keep everyone updated on 3Crowd developments. This will be the place where I reveal what is happening on a regular basis and where I unveil what 3Crowd is and how it is transforming the status quo. ]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td width=250><img src="http://www.3crowd.com/assets/graphic/logo/3crowdtm.gif"></td>
<td>As I have said before the Internet is a life-changing technology for everyone and the driving force behind my past ideas and projects. I think that change is critical to moving the Internet closer to something that is stronger and better for everyone.
</td>
</tr>
</table>
<p>It is in this vein that I am starting a new business venture – <a href="http://www.3crowd.com">3Crowd Technologies</a>. It’s in my blood. I can’t stop developing ideas that will reach these goals. I am more than excited to unveil this new project, but before I can fully do so, there needs to be some additional hard work put into it. </p>
<p>Stay tuned. It’s going to be a great ride and I can’t wait to tell everyone about it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2009/12/21/here-we-go-again-buckle-your-seat-belts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>RSA 2010</title>
		<link>http://www.blyon.com/blog/index.php/2009/12/15/rsa-2010/</link>
		<comments>http://www.blyon.com/blog/index.php/2009/12/15/rsa-2010/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 18:32:04 +0000</pubDate>
		<dc:creator>Barrett Lyon</dc:creator>
				<category><![CDATA[DDoS]]></category>
		<category><![CDATA[Hackers]]></category>
		<category><![CDATA[RSA]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.blyon.com/blog/?p=659</guid>
		<description><![CDATA[I'm presenting at RSA 2010 with co-speaker Joseph Menn.  We will be talking about the soon-to-publish book Fatal System Error, which covers some of my adventures with Cyber Warfare and cyber-extortionists. ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m presenting at RSA 2010 with co-speaker Joseph Menn.  We will be talking about the soon-to-publish book <i>Fatal System Error</i>, which covers some of my adventures with Cyber Warfare and cyber-extortionists. </p>
<p>What aspects of the adventure would you find most interesting? </p>
<p>Send me an email with suggestions:  blyon [at] blyon.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blyon.com/blog/index.php/2009/12/15/rsa-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
