Friday, December 2, 2011

Python boto aws s3 multipart uploads

Did you know that there are two ways to upload data into Amazon AWS S3?  Single Part and Multi Part uploads.  As the names suggest, the first method uploads the whole file in one shot.  The second method takes a collection of files that are sequences, uploads them separately, then when signalled that the upload is complete, assembles them into a single file.  This has a few advantages for larger files.  One can resume a failed upload by looking at the parts that are present and uploading the rest, or one can upload the parts in parallel, allowing the upload to complete faster.

What is not obvious or clear is that if a multi-part upload fails in the middle, is leaves a partially finished upload file (called a key) in S3 with a bunch of unassembled parts associated with it.  This makes sense as you could not resume a failed upload if the failed upload were automatically deleted.  However, the unfinished upload is not visible through the AWS console or the standard methods for listing files in S3 and you are charged for them, so it is useful to periodically look for them and remove them.

I discovered this while learning how to use boto in Python to interface with AWS, and much to my surprised discovered a number of failed 50GB uploads that were orphaned and costing me money.  I wrote a simple script (my first python script) to allow the enumeration and removal of the orphans.

Tuesday, November 22, 2011

Apache 1.3.41 on Windows 2008

Why you might ask would I want to install an old, depreciated version of Apache (v1.3.41) on a Windows 2008 x 32 server instance.  Well, in this case I have an application that I need to support that uses a very old version of cold fusion that only supports 1.3.x, so I don't have a choice.

This should however have been a pretty straight forward process, download apache, install it as service, start the service, confirm that it returns the default webpage, then get the application configured and running.  The only problem is that Apache would not start as a service after the installation.  It ran just fine from the command line, but when started as a service it would raise an error 1067 and exit.  The error in the event log is:

Faulting application Apache.exe, version 0.0.0.0, time stamp 0x478f7539, faulting module ApacheCore.dll, version 0.0.0.0, time stamp 0x478f7537, exception code 0xc0000005, fault offset 0x00026a7b, process id 0x9e4, application start time 0x01cca96325cefb6e.

Turns out that Windows 2008 has this security feature called "User Account Control" that prevents apache from installing properly as a service.  This can be disabled by clicking on Control Panel-> User Accounts.  Turn it off, reboot, and reinstall apache and everything is fine.

Oh, don't turn UAC back on or Apache will again refuse to start with a 1067 error.  I'm sure there is a good reason and a workaround, but I don't think it is worth spending anymore time on.

Friday, November 11, 2011

Windows Python and boto for AWS

Yeah, this is a little geeky, but I spent way too much time figuring this out so I thought that I would share.  I mostly work with Windows, but I want to do some Amazon Web Services (AWS) Scripting in Python (which I don't really know yet).  The way to do it seems to be by using a package called BOTO.  However, everyone online seems to write about BOTO and Python on Linux.

The first problem I had was that BOTO does not work with Python 3.x, but I didn't figure that out until I did a little digging as to why the setup script would not work with my Python installation.  So, only 2.x.

The next problem was that it was not really clear how to install BOTO.  It does not come in a .zip, but only in a .tar.gz format which intimidates windows folks.  Have no fear, it is not *nix only, it is just packaged that way.  Extract BOTO to a temp directly using 7zip or something else that can read tar.gz files. Then change into the directory and run 'setup.py install', which will build and install the module.

Now in order to access AWS you need to either put your credentials in a config file or pass them in your code.  The former is much easier.  All the documentation seems to indicate that you need to create a section called [credentials] in your boto.cfg file.  Hmm, where is the boto.cfg file in windows.  Can't find it.  Never did find it.  However you can set an environment variable called 'BOTO_CONFIG" that contains the path and the filename to the config file.  Easy enough.

Credential set, environment variable set, help (boto) shows that it knows where the boto config file is located... hmm, still doesn't work.  Still can't find the credentials.  Odd.  Oh wait, there is more... there is another environment variable called AWS_CREDENTIAL_FILE which should be set to the path to the file containing the [credentials] section.  Now it works.

Why was that so hard to find information about?  I have no idea.  Maybe I just missed it, hopefully this will help someone else out who has missed it also.

Tuesday, November 8, 2011

The new workout

Anyone who knows me knows that I really like going to the gym and really like lifting weights.  Unfortunately my current schedule really makes it hard to go the gym unless I get up at 5:30am, and that is not likely to happen.  I have decided to try a modified workout.

Typically I will workout for a few hours, full body weights, plus cardio plus stretching, but that just isn't happening.  Everyone keeps telling me that I should workout during lunch, but how do you walk 10 minutes each way to the gym, change, and workout.  Forget 2.5 hours, how to you do it in 60 minutes.

Well, I am modifying the workout.  I am working out in street clothes so I don't lose time changing... and am doing low reps high weight, so that I don't even really break a sweat.  I can't do too much in 30 minutes, but with HIT (High Intensity Traning) training 1 or 2 sets of 4 to 6 reps is all you need, and I can squeeze 8 mixed sets into 30 minutes.

It's only been 2 days, and it feels pretty good.  Workout heavy for 30 minutes, walk to Starbucks, get a protein smoothy and a sandwich, then back to work.  It works, except that I really want a nap by 3p.  I'm going to try to do it 4 days a week, plus a real workout on Sat or Sun.  Lets see what happens.

Monday, November 7, 2011

Outlook 2011 on the Mac will not start

We use Intermedia hosted exchange with Macs and PCs and a few Linux workstations.

One of my partners comes over and tells me that he is having a problem Outlook 2011 on his Mac Air.  When he launches it, Outlook briefly flashes the splash screen then closes.  He thinks that it may be related to some anti-virus software that he installed and uninstalled.  I have no idea.

I hit Google and find a reference to repairing damaged user profiles on Office 2011 Mac.  Launch Outlook while holding the Option key and it brings up the profiles and you can repair the profile.  Repairing goes through a few steps in which it scans the database, repairs it, makes a backup, then copies all the records.  Piece of cake, Outlook now launches and the user is up and running again.

Until... the same person comes over and asks why he is receiving alerts that he has hit his quota.  He had a 2GB quota, which lasted about 8 months, and a month ago I increased his quota to 3GB.  There is no way he should have been at his quota.  We look at his screen and see that Outlook is uploading data.  ACK!  The profile repair made outlook think that all it's data was not on the exchange server, so it was uploading everything back into exchange, an creating duplicate data. I exited outlook, launched it with the option key, created a new profile, set it as the default, then launched it and configured it with the Exchange server.

Lesson learned.  Don't fix profiles on Outlook when Outlook is connected to an Exchange Server.  Just remove the profile, create a new one, and let Outlook re-download all the data that it needs from the exchange server.  That would have been way easier and would have avoided all the duplicates.

Next posting will probably be on de-duping data in outlook...

iPad (iPhone) choices

A friend was shopping for an iPad the other day and asked the 2 question that seem to always come up (not white or black).  How many GB do I need and do I want 3G service.

My first iPad did not have 3G as I figured that I had a verizon MiFi hotspot and there was Wifi all over so I didn't need it. That worked great until I found myself on a business trip with the MiFi not working properly and no Wifi anywhere to be found.  I would gladly have subscribed to a month of the 3G service in order to have internet access, but I couldn't because I did not have the 3G model. The lesson, hedge your bets and buy the 3G model with no service, just in case.


The Memory questions is a little trickier as it really depends on the usage profile of the use.  The big memory hogs are photo's, video content, music and online publications that cache content.  If you download movies from iTunes (perhaps you travel a lot), figure that a full length film is 4GB, so you will likely want at least a 32GB device just have space enough extra space for movies.  Everything else is relatively small.  Some publications though are 100MB+ per edition and this can add up.  Podcast can take up a fair bit of space also so depending on how many old podcasts you keep on your device, it may be material.

Looking at the usage on my iphone though, I am using 17GB of 32GB.  10GB of that is music, of which I probably only listen to a small subset, but it is nice to have.  A few Apps use a lot of Memory (facebook is using 350MB, it must cache a lot of information).  I don't download podcasts or any publications or have any movies on the device, so the bulk of the difference is likely photos and videos as I take a lot and do not do a good job of maintaining the library.  With iOS5 and photo stream, your photo's end up on multiple devices, so that should be taken into account as well.

A friend recently lost their 16GB iphone and got an 8GB as a replacement and was constantly out of memory.  Lesson learned, 8GB is not enough, and apple would seem to agree as they don't even offer an 8GB model any longer.  I think that for an iPhone, 16Gb is manageable, but 32GB is better (considering that I am using 17GB currently).  64GB is overkill, at least the way that I use it.

An iPad on the other hand, which is more of a consumption device and may be caching a lot of publications (The new yorker is 150MB per issue and the NY times takes up 60MB) and movies (at 4GB each).  If you ever think you will want to put movies on it, and probably even if you don't, I would suggest not getting less that 32GB.  Just remember that as time goes on you will always use MORE memory, not less, so perhaps buying more upfront will future proof you a bit.

Tuesday, November 1, 2011

ALGO 8028 SIP Door Intercom

Installing a VOIP system in the office seemed like a good idea, but there were some subtleties that I had not counted on.  Take the front door for instance.  I should be easy to install an intercom that rings all the phone lines and allows someone to release the door and let the visitor in.  Right?  Wrong.  There are very few SIP Door Phones on the market.  I researched a number of models and it seemed like amateur hour.  Poorly constructed, ugly, even models where the release was in the unit itself, such that anyone with a screwdriver could open the unit, short two wires and trigger the door to release.

Through my research I came across the Algo 8028.  It did everything I needed, Attractive brushed steel, separate controller for security, simple browser based intercom to program it.  So I buy it, install it, configure it with my Ring Central account (which goes really well) and, um, it rings but there is no voice.  Hmm, call algo, upgrade the firmware (also easy) and voice is working but I cannot release the door.

Ok, another call to Algo, which tell me to call Ring Central, who tells me it is an Algo problem.  Grrrr.  So I email Algo a description of the problem, tell them what ring central said, and ask how to troubleshoot the issue.  The next day I get an email that they spoke to Ring Central and determined that the issue was that the that Ring Central is converting SIP DTMF to RTP audio DTMF and the Algo 8028 will not recognize RTP audio DTMF.  I appreciate the proactiveness.

Now hopefully either Algo will engineer a solution or Ring Central will change a setting and not convert the SIP DTMF. Until then, I can answer the door, but not open it.


Monday, October 24, 2011

Dell Vostro 3400

One of the guys at the office travels a lot and the Dell Vostro 3400 that he was using is a bit of a brick so we upgraded him to a nice light Toshiba Portege 800 series laptop.  When I reclaimed the Vostro, I thought that it would be prudent to reinstall it with a clean installation of Windows 7 since he had been having some issues.  Simple right?  I thought so.

First I ran some exhaustive diagnostics to try to rule out any hardware issues, and it passed, Then I had dell send me original media since he didn't provide it to me.  Dell OEM windows 7 and a drivers disc.

- Windows 7 x64 installation, no problem
- Load drivers disc... nice feature that scans the hardware and tells you what you have.  recognized everything, um, except that video and the wlan card.  Must be a mistake... so I try all the video drivers, but not of them work and I am stuck at some default resolution.  Try all the wlan drivers, none of them work.  Frustrating.

Go to the Dell website and research the laptop.  Hmm, wifi card is listed as 802.11 n network.  That doesn't help.  No guidance on the video either.  Mind you, what I write in 2 sentences took hours and hours and 2 full reinstalls of the Windows as I was sure that something MUST have gotten corrupted.

Finally I have the bright idea to ask someone else with the Vostro 3400 to look in the device manager and tell me what video card and what wlan adapter he has.

Nvideo GoForce 310M.  Hmm, that driver isn't even on the disc, but it is on the website.  Actually there are two, on labelled as switchable and one as discrete.  I have no idea what that means.  I'll just try one.

DW1501 Wireless-N wlan Half-Mini Card.  Also not on the disc but it is on the website.

Download to a USB drive from another system, install and voila, video and WLan are working properly.

Amazing.  How can Dell send out a driver disc that does not recognize the hardware in the system of have the right drivers on it?

How can searching Google not turn up ANYONE who has had this issue and figured it out.

I bet that the 32bit version of Windows 7 would have found the right drivers, though looking at 'all' drivers on the disc, I may be wrong as I do not actually see these present.

What a colossal waste of time.  At least it is working now.

Monday, October 17, 2011

Replace or Refurbish

There is a side of me that is very green, no not the Greene side, the other side, and doesn't like throwing away things.  I prefer to fix it if it's broken, or sell it or give it away if I don't need it.  One person's trash is often another man's treasure.  I have had great luck using the website Freecycle (http://www.freecycle.org) to give away things that I don't need, can't really sell, but I was sure had a happy home waiting somewhere.  I have even given away broken things that I 'knew' could be fixed by someone with a little patience.

Recently I have been going through my stuff and fixing things that are broken.

Shoes.   My daily wear shoes are Mephisto's.  They have a factory refurbishing program where you send the shoes in and for a fee, depending on what you need, just soles. rebuild the shoe including stitching, etc, they will send them back in almost new condition.  The shoes were $300+ each I think and I must have purchased them 7 or 8 years ago.  I think that this is the 3rd time that I am sending them in to be resoled (I live in NYC and walk a lot), and for one pair, completely rebuilt.  It's cheaper than new shoes, it is avoids landfill, and I get to keep wearing shoes that I like.

Headphones.  I have a pair of Sony MDR-V700 headphones that I think that I have had for 7 or 8 years now.  They are pretty good, DJ style phones and I use them daily at work.  I think that they cost about $179.  The ear cushions and the headband, which are rubberized have started flaking little pieces of rubber just through age,  Guess what?  For $9.95 each, I was able to get new ear cups from Sony.  I also ordered a headband, which was $39... still a pretty good total cost for fully refurbishing the headphones.  One catch though with the headband... soldering required. I can handle it.... but it was not expected.  It would have been nice if the rubber part of the headband could just be replaced without having to remove and add wires that are soldered on.

Jacket and Pants.  About a year ago I decided to take a North Face shell that I had into the North Face Store in SOHO and show them some areas where it had worn badly and point out that it was no longer waterproof. The jacket was maybe 8 years old.  North Face has a lifetime warranty.  They took my jacket and a few weeks later sent me a new one at no charge.  It was not identical, but after 8 years of wear, I am not complaining.  I also gave them a pair of snowboarding pant that had a big tear on the butt from me sitting on a sharp rock in Jackson one winter.  Repaired good as new for $75.  Pants cost $300.  Not Bad.

Sunglasses. As I said in my other post, I love my Maui Jim's, and will keep repairing them until they refuse to fix them again.

Hmm, I wonder what else I can fix.

iCloud for families


I watched through Facebook as my friends and acquaintances struggled through their iOS5 upgrades the day that it came out and I told myself that they were all crazy and that upgrading to iOS5 in the first few days was a mistake.  Let someone else figure out all the issues.  I upgraded my iPad that night, of course.  The upgrade went very smoothly, but required some of patience.  It does a backup, upgrade, restore, then re-installs all the apps and media as a separate step and is not very clear that it is still processing so your may think that it is hung when it is not and stop the process early.  All in all though it went fine.  Now I will qualify that the iPad was only 2 weeks old so I really didn't care if I screwed it up, so it was a safe upgrade. I managed to wait 5 days to do my iPhone. 

The most confusing part of the upgrade is the addition of iCloud for wireless syncing and backups.  If you only own a single device and have a single iTunes account then the process is pretty simple, but really, who only own a single device and has a single account these days?  In my case I have an iPhone 4 and iPad 2, and 2 of my kids each own an iPhone 3GS, and we have another iPad 1 for the family and 2 iPod touches (though these are 1st generation devices and can't use the cloud).  I have 2 iTunes accounts, one for myself and one for my wife.  I usually use mine to sync all the devices.

I would like this setup such that that the devices that I use can share documents and bookmarks and photo's and such, but do not share with the kids accounts.  The kids phones should only sync with themselves, as should the iPad 1.  All of our devices will use the same iTunes account so that we can share apps.  I think that covers everything.


I have all my devices set to NOT automatically install music, apps or books since not everyone would want to install everything that everyone else purchases (ok, I admit it, I purchase the explicit versions of songs and don't want the kids to have them automatically).  Instead, apps can be downloaded selectively on each device by using the 'Purchased' tab on the App store.  Note that apple has quietly (at least I had not heard) added a 'Purchased' tab to the iTunes store as well, so you can download purchased music and video to up to 10 devices linked to the iTunes account.  Gone are the days of purchasing, downloading, syncing, and they syncing to every device you want it on... maybe.  In theory, with the ability to reinstall media and such from the various 'Purchased' tabs, you don't really need to sync to your local computer anymore, except that it may be easier to add or restore a bunch of apps and music by syncing than it is by downloading.


So far I have only setup my iPad and my iPhone for syncing and it appears to be working properly.  The first backup takes some time, subsequent backups are differential and go pretty fast.  They should run automatically at night when you are plugged in and locked, or you can run them manually.


One cool note, I read on my phone a lot using iBooks and have always had a bit of Kindle envy in that I wanted be able to open my books on any device and be on the same page, which kindle does automatically for books purchased from the kindle store (not from personal content though which was a show stopper for me) and iCloud appears to accomplish this between my iPhone and iPad (though I cannot seem to determine the auto sync interval).  And this is one place that I think that I will still need to sync since most of my books are purchased outside of iBooks, converted to iPub, then loaded into iBooks through the Sync process.  I am not sure how I can get not iBooks content into iBooks without syncing.  I guess I'll tackle that soon.

So, the family iCloud setup summary according to Justin is:

- Separate iCloud account for each user with each user's devices syncing to their account.
- Single iTunes account for the Family so that apps and music can be shared.
- Backup to the cloud (who really remembers to backup their devices, right Leslie)
 (note: I use exchange for my contacts, calendar and reminders so I am not backing these up to the cloud).
- Do not automatically download purchased content, get it manually.
 
I see that I have the ability to have multiple iCloud accounts on a device.  It may be possible to consolidate the backups all onto one account, but allow the bookmarks and document syncing and such all take place on a separate account for the kids so that we do not mix things, though I think that I would prefer to not have my iCloud account anywhere on their phones so that they cannot inadvertently access my content.  I'll have to play around with this a little to see what makes the most sense.

Friday, October 14, 2011

Time Warner Business Internet

When it 50Mbs not 50Mbs?  When you subscribe through Time Warner.

We subscribe to Time Warner's 50/5 service, which should give us download speeds of 50Mbs and upload speeds of 5Mbs, or something close I would think.  We consistently see download speeds in the 3Mbs to 15Mbs range, which is completely unacceptable.  A call to Time Warner provided us with the URL http://speedtest.nyc.rr.com/ which is a speed test hosted on the on the NYC backbone (I am sure that they have them for other cities as well).  Interestingly, running the speed test shows pretty consistent results in the 40Mbs to 50Mbs range when run at the same time (well not really the exact SAME time) as tests against other speed test providers that are returning significantly lower numbers.

Some people see these results and think that Time Warner is gaming the system to make themselves look better by cheating on their speed test (there is a YouTube video that "proves" exactly this).  I don't think that this is the issue.  I think that it is more likely that the Time Warner network has bottlenecks at it's peering points with other networks.  What does this mean?  Well, if you are connected to Time Warner and are trying to reach someone that is connected to Level 3 (another provider), somewhere there has to exist a connection between Time Warner and Level 3 (and it's all these connections that make up the Internet).  That connection is called a peering point.  Sometimes two networks are directly connected, sometimes data has to route through a few networks to get to the desired network.  Typically the better peering a network has (direct connections to other networks), the better the service and the more expensive the service because peering is expensive.

If the Time Warner speed test is performing well, but another speed test is not, chances are that there are congestion issues somewhere between the Time Warner network and the network hosting the other speed test that are causing the poor performance.  Knowing this does not solve the problem, but it does provide the information that YOUR internet connection is fine and that it is really just a function of the Time Warner network and short of them upgrading their peering, or your waiting for less busy times of day, the only real solution is to change providers.  Unfortunately, that is not always an option.

Oct 17, 2011 UPDATE: I upgraded my iPhone from iOS 4.x to iOS 5.0 and the Credential did not change.  So now it is a complete mystery how the Credential ID on my phone and the Credential ID that Network Solutions had were different.

Cisco AP541

You would think that a product from Cisco would basically work, but the AP541N is proving this to be a bad assumption.  We have a pretty simple small network:

- 16 laptops.
- 2 printers, one of which is using a WET610N bridge to connect it's Ethernet, the other with built in WIFI.
- 20 Cisco SPA525G VIOP telephones.
- 2 Polycom VOIP speakerphones connected to the network via WET 610N bridges.
- a bunch of smartphones and ipads

No servers, no network devices other than the printers.  Really vanilla.We have 3 SSIDs configured on the AP541N, one for our IP phones, one for our computers and one for guests.  All are using WPA2 authentication.  Since this is a Dual Band WAP, but not a Dual Radio WAP, we have to choose between 2.4GHZ or 5GHZ and since some of our devices only support 2.4, we are set tp 2.4 with a fixes frequency (to see if auto was causing the problem).

We keep running into a problem in which the laptops lose the ability to connect to the printers and the only way to restore the connections is to reboot the AP541N (pull the plug).  Sometimes the laptops lose the network entirely and not just the printers and the SSIDs even vanish from the available networks  Possibly two different issues.  A little research showed that they are a pretty common issues.  The notes on the firmware describe a problem in which a feature called station isolation turns itself on, even though it is disabled.  This feature prevents communication between wifi devices.  The firmware notes indicate that this issue is fixed though.  Guess not.  Cisco support is not much help.  No resolutions or solutions are posted anywhere except to find a replacement product from another vendor.  Great.

So, for the time being, we continue to reboot the device once or twice a way whenever we lose connectivity to the printers, which seems to be the solution that everyone has implemented according to posts going back as far as 2010.

p.s. We are running the AP541N-K9-2.0(0) firmware.

Maui Jim Sunglasses

Let me just say how much I love Maui Jim sunglasses.  I discovered them years ago when I started wearing their Kapalua frameless glasses.  They weight nothing and have amazing optics and look good too.  I wore them and wore them and wore them and eventually broke them and broke them and broke them.  That is when I discovered their awesome repair policy.  For $60 I could replace the lenses and for $60 I could replace the ear pieces and frames.  So for $120 (+ $10 shipping) I could have a new pair of glasses which would have cost me $259 in the store. Glasses break, its a fact of life.  I have probably sent them in for repair 4 or 5 times in as many years.

I've since moved on to another Maui Jim model with a nylon frame and they have the same repair policy with different pricing.  Very fair.  Thus far I have had the ear piece snap off twice, and have sent them back and have had then returned to me repaired without charge (+ $10 shipping).

Did I mention that I love Maui Jim. Their glasses not only look good but their customer service is top notch and that has made me a customer for life :-)

Network Solutions Password Plus

I've been doing Internet related work since 1993.  Once of the advantages of being involved with the Internet for so early on is that I was able to secure my own name as my domain name; Greene.com (I also had fish.net, which I never should have let go.  Oh well).  I have had lots of offers to buy it over the years., but nothing close to enough to be worth giving up the convenience of owning my name.

A few years ago (while I was out of the country of course), someone decided that if I was not going to sell it, they were going to take it, and I experienced my first domain hijacking.  This is when someone gets control of your registrar account and transfers your domain name to a different registrar over which you have no control.  The typical strategy, so I am told, is to transfer it repeatedly, because after the first hop, it is very hard to prove ownership and get it back, since you don't own either side of the transaction.  (note that registrars voluntarily enforce a 60 (or 90) day account freeze after a transfer to try to slow down transfer through multiple registrars.)

In my case, someone contacted network solutions claiming to be me and to have forgotten their password and not have access to their email address any longer.  Then faxed them a forged passport and utility bill as proof of Identity.  Changed the email address to a hotmail account that 'looked' like it could be my address. [Ok, I just have to interject at this point... Network Solutions had my phone number on file, I am not sure why they didn't just call me to see if this was legit.  Major break down in process].  Then they transferred the domain from Network Solutions to GoDaddy and to keep me from noticing the transfer they replicated all my DNS information at GoDaddy so that everything would keep working properly, so short of trying to log in to my Network Solutions Account (and honestly, how often does that happen) I should never have noticed and 90 days later, gone.

I got lucky.  They screwed up the GoDaddy DNS information and forgot to configure the URL for my webmail, so of course I noticed that webmail was not working pretty quickly and figured out what had happened.  After many calls to Godaddy and Network Solutions, and 3 months of back and forth, I finally got my domain back.  Yes, it really took 3 months.  Fortunately all the settings were present and I could live without webmail, so I was not dead in the water.  Network solutions even tried to tell me that the transfer was in fact authorized because they had faxes to prove it and I had to prove that they were forgeries.  Ack!!

So to try to minimize that chance that this would happen again, they offered to put an IP address restriction on my account, so that one could only log in from a certain IP address.  I am not sure how this would stop someone from hijacking my account, but it does secure the access to the account to some extent.  It is also very inconvenient, and I ultimately had to remove it because I needed access from different locations.

Then Network Solutions introduced Password Plus, which uses a Verisign token to generate a security key that changes every 30 seconds and can be obtained from an App installed on a smartphone (if you don't want to purchase and carry a FOB).  This seemed like a much better solution than the IP restriction until today... when suddenly I could not log in because it would not accept my security key.  I tried resetting the key through the app and it did not solve the problem.

I called Network Solutions who told me that the key was issued by Verisign and that I needed to call them.  I called Verisign who told me that any upgrades or changes to my smartphone could cause "Credential ID' to change, which would cause the App to no longer issue valid security codes for my account.  Really?  What kind of changes?  An iOS point upgrade?  An iOS version upgrade?  A device change?  These devices are updated all the time. The rep didn't seem to know, but told me to uninstall and reinstall the App and then call Network Solutions and have them Deactivate the old Credential ID and add the new one.  Again, Really?  Why would I need to uninstall and reinstall?  I already have a new Credential ID.  Oy.

So I called network solutions back. The first rep told me to call Verisign, then told me that Network Solutions no longer supports Password Plus, then told me that any Password Plus issues were on the Verisign side, then finally transferred me to someone else.  I asked the someone else if they knew what Password Plus because if not, they would not be able to help me, and they proceeded to look it up then start reading me what Password Plus is.  Oh boy.  Eventually, after much research into what Password Plus was, she finally told me that I needed to call Verisign, and I finally insisted that she transfer me to someone who has heard of Password Plus or a supervisor.  I got the supervisor who said "Hey, what this Deactivate Token button?"  Click.  Now I could login without a security key, go back into manage Password Plus, and add my new Security ID, which btw I have documented so that I can check it after I upgrade to iOS 5 to see if it actually changes again.

Wow, and to think that having the Token in an app on my iPhone was supposed to make my life easier.  That took 3 hours to resolve, and I'm pretty good at this stuff.

Welcome

I've been considering for some time that it might be interesting to chronicle some of the things that I discover, experience and resolve in my day to day personal and professional life so that others can maybe save themselves some time and trouble figuring out the same thing.  I am not going to be writing on any one subject, just random things that I come across that I think are worth putting to words.  Maybe my experiences will prove useful to someone else, maybe it will just provide me with a forum to vent about how wonderful or frustrating I find the many things that I deal with on a day to day basis.  Only time will tell.

-Justin