How to edit PATH variable on Mac

If you need to change your PATH variables (or another environment variable, as CLASSPATH) on a Mac OS X, you need to edit a file called .profile located in your home directory. Open a terminal window and type:

open -e ~/.profile

In case you dont have a .profile file, you have to create it:

touch ~/.profile

You have to include a line like this:

export PATH=(path-you-want-to-add):$PATH

For example, lets imagine you want to add the file whatever.jar, located in your Documents folder. You would write:

export PATH=~/Documents/whatever.jar:$PATH

Easy, isnt it?

Eyes Like An Angel Smiles Like A Devil

Im sure this post is gonna be very useful to a lot of people. Here you have the lyrics of “Simple songs”, from Big Dad Voodoo Daddy. What was the name of the song again?

“Simple Songs” by Big Bad Voodoo Daddy

Simple songs about simple things
Is what makes my baby swing
Shes got eyes like an angel smiles like a devil
Man you know she’s the real thing
so
When my baby’s not around
The whole world hears my poor heart pound
Cause
“Man you know that she’s the one for me”

When I see that crazy smile
Makes it all well worth while
Love my baby can’t deny
Couldn’t hide it if I try

So at the end of the day I can clearly say
She’s the only one for me.
No one else Id rather see
Nowhere else I’d rather be

Than hangin’ with my baby tight
Morning, afternoon & night
Love that girl I can’t deny
Couldn’t hide it if I try

If you wanna know more, the keyword is “notpron” ;)

The appropriate term

Fixing Wordpress Error 406

Let me guess: you are trying to edit posts or pages in your Wordpress blog and you got “Error 406, Not Acceptable. An appropriate representation of the requested resource /wp-admin/post.php could not be found on this server”. Ok, dont panic, lets fix it.

In the root directory of your Wordpress installation, you should have a file called “.htaccess”. You have to edit this file, adding the following line:

SecFilterEngine off

With this single line, your blog will work perfectly.

Powered by WordPress with GimpStyle Theme design by Horacio Bella.
Entries and comments feeds. Valid XHTML and CSS.