Featured Posts

Play Tetris Using Mac Leopard TerminalPlay Tetris Using Mac Leopard Terminal Terminal Tetris is actually part of the Gnu Emacs and is something you should able to do on any unix system that has Emacs on it.I attached text and video instructions.To...

Readmore

Automate a Remote Login Using SSH - LinuxAutomate a Remote Login Using SSH - LinuxTo do just that you need to create SSH Key Pair1. we need to use ssh-agent to create an SSH key pair.To do that run this command: ssh-keygen -t rsaWhen prompted...

Readmore

Free Google Wave InvitesFree Google Wave InvitesDo you really want a Google Wave Invite but don't want to pay $$$ on eBay???I got one for you....The deal is:I give you an Invitation and once you get it...

Readmore

Google DNS Test Results After using Google DNS for few days, And after running NameBench twice I found that:Google DNS is faster then Most if not All other DNS Servers.Check out the results:Bottom...

Readmore

Start Google Chrome in Incognito ModeStart Google Chrome in Incognito Mode I'm Using Mozilla FireFox as my default web browser But I like using Chrome for Private Browsing.Google Chrome doesn't provide an option to load Incognito by default so...

Readmore

Cool Geex Rss

iPhone: How to Reset Your Home Screen Icons to Default

Posted on : 08-18-2009 | By : Cool Geex | In : iPhone

0

We all get our iPhone icons messed up every few months, Apple doesn’t support any kind of sorting options for now.

The only thing we can really do is, restore to default, it will reset the home screen icons to factory default and the rest sorted by ABC.

Web1

How to:

  1. From the home screen, tap Settings.
  2. From Settings, hit General, then choose Reset.
  3. From the Reset menu, choose Reset Home Screen Layout. When it asks you to confirm, tap the big red Reset Home Screen button.

Move downloaded DMG files automatically

Posted on : 08-14-2009 | By : Cool Geex | In : Mac Leopard, Script Editor

0

I’ve tweaked my Downloads folder so that applications which are usually downloaded as disk images are automatically moved to another folder.

To do that, Take a look at my Video.

I attached a script to my Downloads folder as a folder action. First, I typed the following script into Script Editor:

[applescript]

on adding folder items to theFolder after receiving downloadFile
tell application “Finder”
repeat with theFile in downloadFile
if the name of theFile ends with “.dmg” then
move theFile to folder “THE_FOLDER_YOU_CREATED” of folder “YOUR_USER_NAME” of folder “Users” of startup disk
end if
end repeat
end tell
end adding folder items to

[/applescript]

Viewing file differences in Terminal using colors

Posted on : 08-13-2009 | By : Cool Geex | In : Linux, Mac Leopard, Terminal

0

So, a friend asked me who come my terminal is full of colors and he have one color.

To make your files list in color just type ls -G, or make ‘ls’  show colors by default, this is how:

Video Version:

Text Version:

Start Google Chrome in Incognito Mode

Posted on : 08-12-2009 | By : Cool Geex | In : Apple, Mac Leopard, Script Editor, Windows

17

I’m Using Mozilla FireFox as my default web browser But I like using Chrome for Private Browsing.

Google Chrome doesn’t provide an option to load Incognito by default so I created one.

Windows

If you’re using windows

  1. Place a Google Chrome shortcut on the desktop.
  2. Rename the shortcut to Incognito.
  3. Right click on the shortcut and select ‘Properties’.
  4. On the ‘Target’ field add an –incognito to the end of program path. (Note: Make sure there is a space between the last apostrophe and the dash)
  5. Your incognito browser is now ready for launch.


Mac

If you’re using Mac

1.Set google.com as your home page

2.Open Apple Script Editor and copy paste that script:

PHP Email Address Validator

Posted on : 08-10-2009 | By : Cool Geex | In : PHP / MySql

0

email-validator

Few Years ago I wrote an email validator function for sites forms, one that I used until I found email address validator from Google Code.Enjoy the code by clicking the download now button.