Photoshop-Funktionen kennenlernen durch Videos

Bei Galileo Design gibt es fünf Lektionen zu Adobe Photoshop CS4 von Photoshop-Profi und -Trainer Pavel Kaplun online anzusehen. Die Spielzeit beträgt etwa je 30 Minuten

  1. Einstellungsebenen kombinieren [6:29]
  2. Schwarzweiß-Umwandlung [6:09]
  3. Vektormasken verwenden [4:46]
  4. Fotofilter einsetzen [4:31]
  5. Fluchtpunkt-Retusche [8:57]

Alle 5 Filme gibt es in voller Länge.

Web-Analyse Werkzeuge

In einem Artikel fasst Rick Tansun auf SitePoint »10 Web Analytics Tools For Tracking Your Visitors« zusammen. An sich interessant, aber mein Favorit – Piwik – fehlt in der Liste leider.

Piwik is a downloadable, open source (GPL licensed) web analytics software program. It provides you with detailed reports on your website visitors: the search engines and keywords they used, the language they speak, your popular pages… and so much more.

10 Useful PHP Tips Revisited (Smashing Magazine)

10 Useful PHP Tips Revisited (Smashing Magazine): “Last November Smashing Magazine posted an article titled ’10 Advanced PHP Tips to Improve Your Programming’, which was met with many negative comments. It seems that many of the tips were either incomplete, or directly giving bad advice. To remedy this, they have asked Chris Shiflett and Sean Coates to write a rebuttal article which they have done. This new article goes into detail of each of the previous 10 points, explains the issues with the previous suggestions, and then gives solid advice on what should be done.

(Via Zend Developer Zone.)

Styling Scrollbars

Styling Scrollbars: “WebKit now supports styling of the scrollbars in overflow sections, listboxes, dropdown menus and textareas. For those who want to skip the article and just go right to the source, here is an example:

Scrollbar Example

Here is a screenshot for those not running a recent enough WebKit:

The scrollbar pseudo-element indicates that an object should use a custom scrollbar. When this pseudo element is present, WebKit will turn off its built-in scrollbar rendering and just use the information provided in CSS.

::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}

The width and height properties on the scrollbar element indicate the width of the vertical scrollbar and the height of the horizontal scrollbar. Percentages can be specified for these values as well, in which case the scrollbar will consume that percentage of the viewport area.

A scrollbar consists of scrollbar buttons and a track. The track itself is further subdivided into track pieces and a thumb. The track pieces represent the areas above and below the thumb.

In addition the scrollbar corner can now be styled, as well as the resizer used by resizable textareas.

Here is a complete list of all the new pseudo-elements. All of these pseudo-elements must be prefixed with -webkit-.”

(Via Surfin’ Safari.)