iPhone Voicemail Notifications Not Working – Fixed!

I recently discovered my voicemail notifications were not working on my iPhone 3GS. I spent an hour or two on the phone with ATT support who were very pleasant and helpful but no luck. They raised my issue to the next level and after a few days I got a text claiming there were no issues found. I called back and got a support guy who asked me to REMOVE OLD PROVISIONING PROFILES. This solved the issue. They are in “Settings -> General”. I had an old ATT profile and once removed my voicemail notifications worked!
In googling this issue I saw some other people with what looked to be the same thing and hopefully this post will find it’s way to them.

Posted in Technology | Leave a comment

iCal Annoyance with adding new events

I have been annoyed with the latest iCal update. I use the month view and add events directly there but it defaults to “all day” and when I change that I get an 8 hour event. I do think these defaults should be easily changed in the preferences but they are not. The solution is to type in the events with the time. For example, if you have a meeting from 10am till 11am add the title as “Meeting 10-11am” and the title will simply be “Meeting” and the start and end time will be correct. A little more typing but easier than the clicking to change the time.

Posted in Computers, Technology | Tagged , | Leave a comment

DoctorMac in Irvington, NY Rocks!

Living in Westchester NY means there are a few Apple stores within 10 minutes but having a local independent Mac shop is great. When they do repairs Apple refuses to do, it doesn’t really get better than that. I cracked the glass on a laptop, the monitor was fine but the glass was toast. I went to DoctorMac where Bill and Matt handled it without issue. They quickly ordered the part and communicated clearly. The repair was done quickly limiting the machine down time.

DoctorMac is on Main Street in Irvington, NY. I highly recommend them if you need a repair or a new machine, accessory or some advice. They are knowledgable and friendly. The Apple stores are great but it’s a crowd scene. DoctorMac is personal and focused.

Posted in Computers | Leave a comment

jquery tablesorter column types and add on parser solution

Tablesorter is a brilliant jQuery plugin for allowing HTML table to be sorted within the browser via javascript. The biggest issue I have is the lack of documentation of the data types to force columns to be sorted correctly. So here they are.

  • text
  • digit
  • integer
  • currency
  • floating
  • ipAddress
  • url
  • isoDate
  • percent
  • usLongDate
  • shortDate
  • time

I credit Terminally Incoherent for posting these. I am adding this to my blog so I can find it easier and possibly others can as well.

I am also adding some code for working with currency columns by way of a custom parser.

You will need to include the following for jQuery.

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

(this will change with time and versions)

As well as have the tablesorter library available. You can down load this from the tablesorter website above and below and host it locally on your site. Update the code below to reflect where you put it.

<script type="text/javascript" src="{/path/to/}jquery.tablesorter.js"></script>

After

$(document).ready(function(){

add the following.

$.tablesorter.addParser({
id: 'currency-column',
is: function(s) {
return false;
},
format: function(s) {
s = s.replace(/$/g,"");
s = s.replace(/\(/g,"-");
s = s.replace(/\)/g,"");
s = s.replace(/,/g,"");
return $.tablesorter.formatFloat(s.replace(new RegExp(/[^0-9.-]/g),""));
},
type: 'numeric'
});

Then use it like this.


$("table").tablesorter({
headers:
{
0 : { sorter: 'currency-column' }
}
});

The columns are counted 0,1,2,… etc so the “0″ above is the first column. You would use the number of the column you want sorted this way.

For more info about tablesorter go here.

Posted in Programming | Tagged , | Leave a comment

QR Codes – those funky bar codes

I have noticed recently the new, well not that new, QR (square) bar codes. We were at Hershey Park and they had them on posters while we stood in line for rides. I took a picture hoping to decipher later, not realizing there were free readers.

Now that I know there are free and easy readers, I grabbed this app for the iPhone, QR Reader.

I was able to see that from scanning the Hershey pic off my computer screen that they link to a trivia game. I also discovered these QR codes are an easy way to transfer information like urls, contact information and more into an iPhone or other device with a camera and app.

If you install the free app check the image above.

My QR Contact Info it’s not like I can get more spam than I already do.

Start the app and point it at the screen you should see how easy it is.

Apparently you can get really creative with the QR Codes as well.

We went to the Makers Fair this weekend and every booth had a QR Code to make it easy to capture and check out later without having to write down a name or take yet another piece of paper. It instantly saves the url into your phone or iPad or other device.

I think it’s kind of cool, then again I am a geek by profession.

Posted in Technology | Tagged , , | Leave a comment

2011 27″ iMac Issues with SSD Reinstall

Recently got to service a super machine, top of the line 27 inch iMac. Users got screwed up on initial install so we decided to wipe and reinstall. Not so simple. The included media was unable to write files to either the SSD or the HD. Took it for a quick fix to an Apple store instead of waiting for a replacement. After a week of their inability to get a new SSD drive which had been diagnosed by Apple Tech Support I asked for it back so I could install to the HD and wait for them to get the part.
I popped in a Lion disk and walla! Installed to the SSD without an issue. Not sure if it is the included media or if the machine is built for Lion. Either way if you are having this issue with this machine, install 10.7 and should be good to go.

Posted in Computers | Leave a comment

Upgrading Ubuntu and network issues

If you are upgrading from ubuntu 10.04 to 10.10 on parallels (aka a mac) and have a networking issue like network not found, I suggest installing the latest Parallels tools. Solved my issue.

Posted in Computers | Leave a comment

Ubuntu 9.10 to 10.04 upgrade issue

I recently upgraded a ubuntu server from 9.10 to 10.04. I was receiving errors and warning due to old packages that had not been removed. In order to get rid of these I ran the following on the command line.

dpkg –get-selections | grep deinstall | awk ‘{ print $1 }’ | xargs dpkg -P

This removed all the old junk. Then I did a “do-release-upgrade” and everything went well. This was on a VM hosted solution from slicehost.com who I would highly recommend.

Always backup before you do an upgrade like this. Slicehost has fantastic services for this.

Since 10.04 is a LTS (long term Service) release I probably won’t need this again until 2012 so good to document here.

Posted in Computers | Leave a comment

Teaching Spamassassin About Recent Spam

If you have the technical abilities and happen to have access to your IMAP spam folder via the command line you can teach spamassassin about what is spam.

sa-learn –spam <spam folder path>

This can greatly decrease the spam you see.

Posted in Computers | 2 Comments

Slicehost Rocks

I have used Slicehost for several years now and have never had a problem. Just today I upgraded one virtual machine I manage there and ran into an issue on reboot. Their chat was quick and immediately pointed me to update the VM’s setting for kernel version. BAM! It worked. I have worked with a lot of hosting providers but since Slicehost I haven’t looked back. I highly recommend them. Beats a co-lo for a small to medium site. Let them deal with the hardware.

Posted in Computers | Leave a comment