Some jokes

Computers are high-speed idiots, programmed by low-speed idiots.
I’d like to make the world a better place, but they won’t give me the source code.
Software developers like to solve problems. If there are no problems handily available, they will create their own problems.
Two bytes meet. The first byte asks, “Are you ill?” The second byte replies, “No, just feeling a bit off.”
Russian roulette: [ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo *Click*
how many M$ programmers does it take 2 change a light bulb?none they just make darkness a standard &tell everyone this behavior is by design
*nix is user friendly. It’s just very particular about who its friends are.

A son asked his father(a programmer) why the sun rises in the east, and sets in the west. His response? It works, don’t touch!

It compiles! Let’s ship it.

In C we had to code our own bugs. In C++ we can inherit them.
There are 10 kinds of people in the world: Those that know binary & those that don’t

The new (insert current fast processor, but when I heard it, the value was “cray”) is so fast, it can execute an infinite loop in only 3 seconds.

A biologist, an engineer, and a mathematician are staking out an empty house.

They see two people walk in.

Later, they see three people walk out.

The biologist says, “They must have multiplied!”

The engineer says, “I think it was measurement error.”

The mathematician says, “Now, if exactly one person walks into the house, it will have zero people in it again

Jokes from: http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke

960

I have update the home page of my site using the Css framework 960 to organize all of the content on the home page from before when it was a mess. I have also made a new color them using white, black, orange, and gray on this page. I think that it looks a lot better. Tell me what you think in a reply.

The unPacker again

The JavaScript unPacker is getting a lot of attention and I do not think that every one understands it. The unPacker was made to make code that was packed by the /packer/(with base62) human readable again. 99% of the code that comes out works without any changes, then running the code through FireFox with Firebug you should be able to easily find the error and fix the code. When I was testing the unPacker, I was unpacking jQuery, there would be about 3 error in the code, but I was able to find the error and fix the code in under 5 min with Firebug. (jQuery packed is about 32KB and about 52KB minified and it was designed to be able to be packed).
All the problem that I have heard about the unPacker I think are counter with what it is and can be used for. The basic idea was to be better that the replacing the eval with an alert to get all of the JavaScript in one long line. (jQuery in an alert is about 50,000 Character in one line)

The forum that I follow related to the unPacker.
The unPacker.

Ubiquity

I have made another Appjet web site. This time it is for making Ubiquity commands and being able to distribute them at the click of a button. It is free and easy to get going with a small simple command. If you do not have Ubiquity yet then you can try it at http://labs.mozilla.com/projects/ubiquity/. Then head over here to get some new commands to try out.

So far I have the Ip-get app, that will determine your Ip address. “Quote” that gets a quote from my quote Appjet site and can insert it in to any text field.

Vitural Host

I was trying to set up a virtual host with Apache on my MacBook and it turned out to be a bigger deal than I thought it would be.

Here are the steps that I took to setup “something.local”

First add a alias name to the mac os.
1) Open terminal Applications/Utilites/Terminal
2) Type “sudo nano /etc/hosts” (without quotes) and enter your password
3) Go to the end of the file using the arrow keys and add to the file “127.0.0.1 something.local” (without quotes)
4) Control X (Not apple key Control) , The “Y” key and enter
5) Now another config file type “sudo nano /etc/apache2/httpd.conf”
6) Go to the end of the File and add
NameVirtualHost *:80

< virtualhost *:80>
ServerAdmin someone@example.com
DocumentRoot “/Users/YOUR_USER_NAME/Sites/something.local”
ServerName something.local
ServerAlias www.something.local
< /virtualhost>

After restarting the computer when you type in “something.local” in to your web browser Apache will try to server up the index file in the something.local in you sites folder