Archive for the ‘annoying’ Category

iPhone Camera Stopped Working… so it’s not a perfect, afterall.

Monday, January 30th, 2012

It took 6 months, but I have finally had what I would consider a non-minor problem with my iPhone 4. The camera stopped saving photos. It would focus, snap the photo, but crash before it actually saved.

Ugh.

It’s surprising how often I use the camera on the phone.

I found this blog post about deleting the thumbnail cache on an iPhone, and it seems to have worked. Also, it links to a neat program to browse the files on your phone. It took a couple restarts of the phone to rebuild the thumbnails, and then the Albums in the Photos app. Perhaps it would have only taken one restart if I had been more patient on the first boot.

I guess it’s time I back up those photos again.

Stolen FedEx Package?!

Friday, October 28th, 2011

After a long hiatus due to an extremely busy period, it’s time to catch up on some blog posts.

A couple months ago I helped someone return their Gateway netbook to Acer for repairs. Acer repaired the machine and sent it back by FedEx Ground Service.

At the delivery, someone dutifully signed for the package.  There’s only one catch, whoever signed for it, walked off with the machine. Yes, the netbook was stolen. It could have been a neighbour, or one of the contractors at the house next door, or one of the city workers who happened to be working on the street that day. Whoever it was, the FedEx driver let some random person who happened to be near the property sign for the package.

The rest of this story took over a month to play out.

Initially, Acer was not very helpful, they told us to deal with FedEx for a claim.  FedEx “ran a trace” to try and find the package.  Eventually, a FedEx loss claim was filed; however, it required Acer to relinquish their rights making their own claim. The whole situation was a mess, and it took several calls to Acer support to keep things moving along. Further, I suspect that FedEx would only pay out the minimum $100 coverage that is included with each delivery.  Acer self-insures (i.e. doesn’t buy insurance) on their shipments (this actually make sense given their shipping volume).

In the end, Acer finally took responsibility and dealt with the FedEx claim and shipped a replacement machine (with arguably better specs).

This isn’t an exclusively FedEx problem.  By coincidence, a couple weeks later, a  UPS delivery person let me sign for a package after I got out of my car and started walking towards the house. And no, the UPS delivery person couldn’t have recognized me, I’m rarely the one to receive deliveries.

I’m surprised that stolen packages don’t happen more often – or maybe they do.

The moral of the story? Avoid shipping items to a residential address. Couriers hate residences – they’re widely spaced out (relative to business districts), and often, no one is home.

Free way to trim a WMV File

Friday, August 12th, 2011

The other day I wanted a 5 minute segment from a WMV, Windows Media Video, file. To be more precise, the codecs used are WMA2 for audio and WMV3 for video, according to VLC.

My normal tools of choice for taking clips from video are VirtualDub, and Avidemux. Unfortunately, both of these tools failed on the WMV file. Both could preview the input file, but neither was able to create a new video file that worked. I tried both the fast “copy” method, and the full re-compress method. This didn’t surprise me too much, neither application is known to work very well with Microsoft WMV files, and I think I’ve run into this issue in the past. Both work great for AVI, MP4, and various other files that I’ve worked with over the years.

I really wanted this video clip, so I did some searching for some new tools to use.  I found AsfBin, which is free for non-commercial use. It worked like a charm.  The preview window seems a bit quirky for me, but the resulting file works fine, so I’m happy.

 

 

Disappointing Out of Box Experience of Gateway Netbook… in 2011!?

Thursday, January 6th, 2011

Every once in a while I get a reminder of why Apple is able to make 10 times as much money per computer than everyone else.  The end user experience is incomparable. From the moment you walk into an Apple store, through to the point where you use the device, someone has thought about your experience.

I just had the opportunity to setup a brand new (entry level) Gateway netbook.  There’s nothing special about it. It has an Atom processor and Windows 7 Starter edition. After opening the box, plugging it in, and following the on screen prompts, things seemed pretty good.  Then, it required a reboot to finalize the settings.

It took literally 30 minutes from reboot until I was able to login.  Literally.  It felt like 10 times that long.  I wasn’t really watching what it was trying to do, but whatever it is, it is embarrassingly long.  There aren’t any install options, this netbook is exactly the same as the  rest in the pile, so virtually all of this time should have been done before it left the factory.

So, that’s my first impression of that computer, and Gateway. Sitting around and waiting.  And no, this didn’t include the Windows updates that I did later in the evening.  Actually, this reminds me of the time I setup a Gateway laptop for a client – that was a disaster also, IIRC, I had to drive around the neighbourhood trying to find blank CDRs in order to get past the required initial backup – they had included some low end blank CD’s, one or two of them were bad!

First impressions count.

 

PHP PEAR HTML_Template_IT Eats Dollar Signs

Wednesday, December 29th, 2010

Sigh.  We discovered a bug in our recently reworked tools.perceptus.ca (“PWT”) site.

We have a simple, custom, partial MVC system that runs a few of our smaller websites.  That system uses the PEAR HTML_Template_IT package to do the final template rendering. We ported PWT to our MVC to make future site changes much easier.

A week after going live with the changes, we found a baffling bug.  The tools were eating the dollar sign and dollar amounts (but not the decimals) from the input text. E.g. “$103.00″ would get returned as “.00″.  Not good.

Apparently, HTML_Template_IT defaults to processing all text with regex.  Not cool.

There might be a historical reason for this, but for new users, this has got to be confusing. Plus, this is NOT mentioned in the intro documentation: http://pear.php.net/manual/en/package.html.html-template-it.intro.php

We’re not the only ones caught by this: http://pear.php.net/bugs/bug.php?id=50.

The fix is to initialize and set the use_preg option, like this:

$tpl = new HTML_Template_IT(‘./’,array(‘use_preg’=>true));

I have glanced at the package pages, and while this behavior is  documented it is buried quite deeply in the documentation.

This also explains a typo we had years ago on a static page that had the text like $5 in it.  That time, we just changed the copy to read 5 dollars and got on with life.