Monthly Archives: January 2011

Yes, I’m switching to Verizon iPhone4

Verizon Morphine

What is your current pain level?

Should you switch to the Verizon iPhone4?  I answer this question the same way a nurse asks you about an injury–On a scale between 1 and 10, what level of pain are you in?  If you give the nurse a high number, she will give you a shot of morphine, and the pain will go away.  In the same manner, if your AT&T pain level is high enough, maybe a shot of Verizon is exactly what you need.

My AT&T pain level is about a 9 right now.  I reserve 10 for women in labor trying to get directions to the hospital and their call drops.  That would be a solid 10.  I put myself at a 9 because I’ve gotten to the point that I scream and yell at my phone when it drops or fails to send a text.  The other day I was on an important call when it dropped and I started beating up my car’s steering wheel and screaming irrationally.  I should be throwing the iPhone out the window instead of beating up my car.  I’m just so tired of dropped calls and the red icon on my text messages prompting me to try again.  I’m tired of beginning every call with, “I’m on an AT&T iPhone so if this call drops I will call you back from a land line.”

Should you make the switch?  The first factor you need to consider is how much will it cost above the initial $199 for the phone?  In my case, I bought the iPhone 3GS on the day it came out so I have about 6 months left in my contract.  It will cost  me around $75 in early termination fees.  If you already bought the iPhone4 then you should know that AT&T changed it’s terms and conditions and placed a much higher penalty on early termination.  Pull up your terms on AT&T’s website and calculate what it will cost to get out of your contract.

If you are okay with the early termination fees, we then need to ask the question, how upset will you be if they introduce an iPhone5 in June?  History does show that every year a new iPhone gets introduced. My best guess is there won’t be a major new version of the iPhone.  Maybe they will introduce the iPhone4S and make the current model faster while fixing the AT&T antenna issue.  I don’t think they will support 4G LTE this year.  Verizon is just rolling out their LTE network and AT&T hasn’t even announced their 4G strategy other than saying it’s coming.  It’s just too early for Apple to jump in.

I think this is going to be the year of iPad and Mac.  All the rumors are currently pointing to a new iPad2.  The iPad needs a ton of features to bring it up to the feature list of the iPhone4.  It can’t take pictures. It can’t FaceTime. It doesn’t have an insane amount of pixels per inch found in the retina display. Compared to the iPhone4, the iPad is outdated technology. That’s why I think the big announcement this year at WWDC will be about the iPad.  Steve Jobs has even said it’s time for the rest of the products to catch up.

Some of you may want to hold out until June to see what happens.  Or maybe you think AT&T’s network will become better with the mass exodus of people switching to Verizon.  All I know is my car will thank me for making the switch.  On February 10th, you should ask what level of pain are you in?

Making it Rain with Arduino!

Long way to go...

Arduino kits from Maker SHED arrived at my doorstep this week and today I finally had a chance to put it together.  I bought a starter kit which comes with the main Arduino controller and a bunch of parts like buttons, LEDs, resisters, and bread boards.   I ran through all the basic experiments in a day such as making LED’s blink, push button toggles, and performing IO over USB between the Arduino and computer. The Arduino software for creating programs is simple and really easy to use.  In addition to the starter kit, I also purchased some shield kits which are basically expansion kits for the Arduino.  I decided to build the LoL (Lot’s of LEDs) shield which mounts directly to the top of Arduino and provides visual feedback.

Back of Board

The back of the board shows many rows and columns of solder.

The LoL board has 126 LEDs arranged in a 14 x 9 rectangle.  In order to put this thing together, I had to run out to Radio Shack today to buy a 40W solder iron, flush cutters, pliers, and of course solder.   This shield requires soldering almost 300 connections!

My soldering skills were a little weak at first, but after a couple rows it became much easier.  It took me a couple hours, but I finally got every LED soldered and clipped.  Look at the back of the board and all the drops of goo it required.

The connections are very close together so you really have to be careful.  I constantly worried about holding the iron for too long against the board which might change some of the underlying logic or even worse make the board unusable.  I also worried about shorting out pins from using too much solder.  I don’t think I blinked much because I had to get up twice to get eye drops.

There is nothing like finishing up that last row of LEDs.  I did a final inspection to make sure everything looked in order.  I touched up a few places, adding solder where needed, and clipping where there was too much.  The crop of red LEDs were aligned evenly and looked great.

Now came the real test to see if it worked.  I attached the shield to the top of the Arduino controller, plugged it into the USB port of my Mac, and then brought up the Arduino development environment.  I went over to Google code and downloaded the LoL shield library.  It took me a minute to figure out how to install the library but dropping it into your sketches folder under libraries/LoL did the trick.  The compiler was now able to find the library and all the sample code compiled without error.  I ran the basic test and was extremely relieved to see all the LEDs working.

I decided it was time to code something of my own.  I started with the example code for Conway’s Game of Life and stripped it down to the bare essentials.  I ended up creating a rain effect, where dots are placed randomly at the top, and then they fall down until they are off the screen.  Here is a video of the final result:

Building and coding the Arduino Lol Shield has been a lot of fun.  My next goal will be to create a game of some kind.  I know others have created Pong and Space Invaders.  I’d like to come up with something different.  Any ideas?

Download Rain Source Code

Verizon to announce iPhone at CES?

Verizon iPhoneVerizon has never given a keynote speech at CES but will be doing so in a couple days. What’s the big news? Last year, they announced their LTE network for faster speeds and this year it is expected they will unveil new 4G phones that will use it. The rumor mill has been running at full force over what operating system the new phones will use–Android or iOS?

I will add to all the rumors and say one of my friends, who works for CES, has been telling me for months it will be the iPhone. But reports came out early this week that it will be a series of 4G Android phones.

All I know for sure is that I have not upgraded my 3GS iPhone because I want an iPhone4 on Verizon’s network. I think many people are in the same boat. January 6th will be an interesting day with the Mac App Store being released and the Verizon keynote. Buckle up.

WordPress Mods

I have been troubleshooting WordPress today as I have noticed a couple issues:

1. On my first Hello World blog I noticed when using an apostrophe it had a strange behavior. It keeps adding additional apostrophes every time I save. So if I wrote I’m, it would change it into I”m. If I saved the blog again it would change to I””m.

2. Downloading and upgrading plugins would fail with “Could not create Temporary file.”

It turns out that problem #1 is not a WordPress issue but a PHP setting issue. I found this site which explains how to disable Magic Quotes. Just had to add “php_flag magic_quotes_gpc off” to my .htaccess file and no more issues.

The solution to Problem #2 was not as nice. Tried numerous things from the support thread but in the end the only thing that works was changing the permissions for the wp-content folder to 777, perform the updates, and then revert the permissions back to 755. Not ideal but I suppose I won’t be updating and download plugins that often.

I was able to easily add the Twitter integration to pull from @toddmoore using the “Wickett Twitter Widget” Plugin. It was so simple that I highly recommended it. My previous WordPress blog suffered from a lot of SPAM in the comments so I also enabled the Akismet plugin to manage it.

I think WordPress and the various plugins are great.