You’re new to mac and you don’t find the Print Screen button ? You can take take three types of screenshots in Mac OSX without using third parties software :
1) A fullscreen capture : just hold down the apple button (Command), SHIFT and press 3.
2) A selection screenshot : Hold down the apple button, SHIFT and press 4, you’ll get a crosshair cursor to select the area to capture.
3) A window capture : If you want to do a perfect match capture of the currently active window, just hold down the apple button, shift, press 4 and then press spacebar you’ll get a camera cursor just left-click and here we are. (If you wanna do the same in GNOME and Windows just hit Alt+Print Screen)
All the screenshots are automatically saved on the Desktop.

Many people criticize the commercial aspect of Mac OSX but you can’t deny that it’s really user-friendly and smartly designed (even if the HFS/HFS+ filesystem peformance is controversial )…
How to do a Chrome/Opera specific stylesheet
Tags: chrome specific css, chrome-only stylesheet, css conditional comments, css hacks, In-CSS hacks, Opera specific Css, opera-only stylesheet, specific stylesheets
You’ve probably wondered how to load specific CSS stylesheets for Chrome, Safari and Opera, some kind of <!–[if Chrome]> CSS conditional comment. Unfortunately these conditional comments work only with the IE Series.
There’s an easy PHP solution to recreate this behaviour for other browsers, the excellent browser detecting script remade by Chris Schuld, this script will let you use this kind of code in your XHTML views:
<?php $browser = $browser->getBrowser();?>
<?php if($browser == Browser::BROWSER_CHROME || $browser == Browser::BROWSER_SAFARI):?>
<link href=”css/chrome-safari.css” type=”text/css” rel=”stylesheet” />
<?php endif;?>
In this example I deliberately took Chrome/Safari: Using a very similar version of Webkit HTML Engine, both render quite closely web pages, so you can use the same CSS file for both of them.
There’s an exhaustive list of supported browsers, even the iPhone Safari version and Lynx
are handled by the script.