Nokia 6120 == <3

Been gone for awhile, and figure it was time for an update

In my trip to Dubai, UAE (pix); I purchased the Nokia 6120 (something I cannot find here in the states), and am loving it!

6120

The pros (and there are alot):

  • super small (pocket friendly)
  • 3.5G quadband
  • very nice QVGA screen
  • dual cameras
  • a real loud loudspeaker
  • latest symbian available
  • usable and coherent mp3 player (unlike LG’s)
  • super fast browser (based on apple/safari’s webkit)
  • j2me love (i’ve got a ton of apps already installed and all work flawlessly)
    - gmail
    - yahoo go
    - google maps
    - opera mini
    - shozu
  • all the great things about nokia that i’ve always loved (gui design, profiles, contact lists, groups)
  • new blackberry/winmobile like front menu (list of favorite apps to show)
  • mac connectivity (got my stuff sync’d and working no problem)

Cons:

  • haven’t figured out the application limitations on the phone yet, but it seems like i can’t run more than 3 or 4 j2me apps at the same time (especially if all of them are trying to use the network)
  • camera is great during the day…sucks at night and flash seems to make everything blue
  • no good FREE all inclusive (aim, msn, yahoo, jabber) client. so far i’ve tried out
    trutap (no jabber)
    gizmo (no jabber)
    fring (ugly and missing some features)
    eqo mobile (nice, but i don’t like how every time i send a message it states what application i’m using and telling the other person to download it)
    palringo (can only get on jabber; aim, yahoo and msn dont seem to work)
    ebuddy (probably one of the best looking, but missing jabber…although it has gtalk, but i don’t use gtalk…and i can only log into one screen name per service at a time)
    nimbuzz (another good one that i probably use the most, but it randomly shuts down on me with no warning)
  • would love sms threading (tired of having to go through txts from 2 or 3 days ago)
  • i think thats it…

I’ll update with anything else I do find.

Speed up Mail.app

for you mac users that use Mail.app, i found this (through digg) that will help speed up the application.

Here is a brief instruction on what to do (copied from that site):

1. Quit Mail.

2. Open Terminal.

3. Type the following:

cd ~/Library/Mail
sqlite3 Envelope\ Index

An sqlite> prompt will appear.

At that prompt, type vacuum subjects;.

After a short delay, the prompt will return. Type Control-D to exit.

4. Restart Mail and enjoy the extra speed.

UPDATE:
apparently this works too…
sqlite3 ~/Library/Mail/Envelope Index vacuum index;

color terminal bash on the Mac (iTerm included)

first open up .bash_profile from your favorite editor. fastest way to do it from the terminal command line is:

$ vi ~/.bash_profile

copy and paste the code below if you like. it includes an explanation of each line
.bash_profile

#enables color in the terminal bash shell export
CLICOLOR=1
#sets up the color scheme for list export
LSCOLORS=gxfxcxdxbxegedabagacad
#sets up the prompt color (currently a green similar to linux terminal)
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '
#enables color for iTerm
export TERM=xterm-color
#sets up proper alias commands when called
alias ls='ls -G'
alias ll='ls -hl'

C/P’d from MacOsXHints.com:

The colors can be set with the LSCOLORS variable. The color designators are as follows:

a black
b red
c green
d brown
e blue
f magenta
g cyan
h light grey
A bold black, usually shows up as dark grey
B bold red
C bold green
D bold brown, usually shows up as yellow
E bold blue
F bold magenta
G bold cyan
H bold light grey; looks like bright white
x default foreground or background

Note that the above are standard ANSI colors. The actual display may differ depending on the color capabilities of the terminal in use. The order of the attributes in the LSCOLORS variable is as follows:

1. directory
2. symbolic link
3. socket
4. pipe
5. executable
6. block special
7. character special
8. executable with setuid bit set
9. executable with setgid bit set
10. directory writable to others, with sticky bit
11. directory writable to others, without sticky bit

They are set in pairs, foreground (f) then background (b), i.e. fbfbfbfbfbfbfbfbfbfbfb for all 11 settings. The default is exfxcxdxbxegedabagacad, i.e. blue foreground and default background for regular directories, black foreground and red background for setuid executables, etc.