Quicksilver Shelf Plugin – My First Screencast

July 3rd, 2009  |  Published in Technology  |  2 Comments

As I was trying to kill time, I was researching Quicksilver extendability other than just quick-launching apps. Yes, I know Spotlight does it from the get-go.

My search led to a Lifehacker.com article (as usual, with this kind of things) written a while back about Gina Trapani’s Top 10 Quicksilver Plugins (at the time: November 2007). One of the plugins that intrigued me to check out was the Shelf module/plugin.

Read the rest of this entry »

Unlock Phones from AT&T

March 18th, 2009  |  Published in Technology  |  Comment

So in preparation to going to Europe, I wanted to be able to have a cellphone (mobile) handy in case of an emergency. I wanted to just use the iPhone 3G but I have updated to iPhone OS 2.2.1 with a baseband of 2.30.03, which there is no (software) unlock for. Luckily, I still have kept my Samsung Blackjack (1).

Here’s what I found out when getting my Blackjack unlocked:

  • Call 611 (Customer Service), and not the local AT&T store.
  • Unlocking is “free” (according to the CSR who helped me).
  • Give your IMEI number to the CSR to receive your phone’s unlock code.
  • To get your phone’s IMEI number, press *#06#
  • To proceed with the unlock process:
    • Take out the SIM card if there are any first.
    • You have to do the following keystrokes: #7465625*638*unlock_code# (unlock_code is your own of course).
    • Your phone’s display will then have some type of message that it has disabled a lock of some sort.

I hope that helps.

Find Duplicates in Address Book

August 15th, 2008  |  Published in Technology  |  2 Comments

Ever had the situation where you have synced your iPhone (to iTunes OS X) and happen to sync both the contacts from your Address Book and Google Contacts? Or, just happen to add someone’s new contact info as another contact-card? Well, here’s how I cleaned and merged duplicate contacts so that my Address Book performs like a champ.

  1. Launch Script Editor (Applications/AppleScript/Script Editor)
  2. Paste the following code snippet
    tell application "Address Book"
        set biglist to {}
        set theGroup to count every person
        if not (exists (group "Duplicate Entries")) then
            make new group with properties {name:"Duplicate Entries"}
        end if
        set the_names to the name of every person as list
        repeat with i from 1 to number of items in the_names
            set this_Name to item i of the_names
            set theName to name of person this_Name as string
            if this_Name is not in biglist then
                copy this_Name to end of biglist
            else
                add (people whose name is theName) to group "Duplicate Entries"
            end if
        end repeat
        save addressbook
    end tell
  3. Save your newly created script (would usually default to ~/Documents/AppleScripts/), and just open/run it

Now, the easiest way to figure out if its running or not (at least for me) was to run the Activity Monitor and sort by CPU. I simply just waited to see if Address Book would climb to the top doing 90+, and back down to nil. When this is done, you should be able to see a group called “Duplicate Entries”. From there, you may now sort through the details and delete the ones that you don’t need.

Note: You can also do a quick merge via Address Book itself from duplicate contacts. However, you won’t be able to see which contacts are being merged as its just a set-it-and-forget kind of deal. If you do not care and simply just want to get rid of those dupes, you can do so by doing the following:

  1. Launch Address Book
  2. Select Card from its menu
  3. Then, select Looking for Duplicates… and just go through the following prompts after search results finishes

Adium Chat Transcripts Location

August 13th, 2008  |  Published in Technology  |  3 Comments

This applies to those using the ever-popular IM client, Adium.

Adium is a free instant messaging application for Mac OS X that can connect to AIM, MSN, Jabber, Yahoo, and more.

If you are in a situation were you would need to back up your chat transcripts due to account migration, or in need to do a clean installation of your OS X machine, here’s where to start:

~/Library/Application Support/Adium 2.0/Users/Default/Logs

Note: This is current as of Leopard OS X 10.5.4, and Adium 2.x.

Change File Type Icon in Vista

August 10th, 2008  |  Published in Uncategorized  |  Comment

I recently installed E-TextEditor and made it my default program for opening various, development-related file types (i.e. .php, .py, .txt, etc.). With build 1.0.24, it seems that if you make it the Default Program for text files (.txt extension), the icon associated with the type seems to be missing.

Here’s a quick solution that I found through search results, to correct the blunder (till E-TextEditor gets that process fixed). Note: be sure to backup your registry before doing any changes as a precaution; or even have someone who knows what they are doing do it for you if you are unfamiliar with the process.

  1. Click on START, or hit the WINDOWS-key
  2. Type in the following where it says “Start Search”:
    regedit
  3. Go through these folders:
    HKEY_CLASSES_ROOT > txtfile > DefaultIcon
  4. Then replace
    C:\Programmi\e\e.exe,e

    with

    %SystemRoot%\system32\shell32.dll,-152

You should now have your text files display a decent, looking icon (i.e. the default Notepad.exe one).