OS X: Quicksilver
Gerade entdeckt: Quicksilver auf github. Scheint deutlich schneller zu sein als die alte Version die ich hier hatte.
Unwissenheit ist Stärke
Gerade entdeckt: Quicksilver auf github. Scheint deutlich schneller zu sein als die alte Version die ich hier hatte.
Mit ImageAlpha lassen sich 8bit RGBA-PNGs erzeugen.
ImageAlpha is a GUI for pngnq and pngquant. It allows you to easily generate paletted PNG images with full alpha channel and test how it will look against different backgrounds.
Dadurch werden PNGs nicht nur kleiner sondern, wie ich im Webstandards Magazin 03/09 gelesen habe: Im IE werden bei diesen PNGs halb transparente Flächen einfach durch Volltransparenzen ersetzt. Was manchmal ja sehr nützlich sein kann.
Lesestoff für nach dem Urlaub: Building iPhone Apps with HTML, CSS, and JavaScript.
Now web designers and developers can join the iPhone app party without having to learn Cocoa’s Objective-C programming language. It’s true: You can write iPhone apps quickly and efficiently using your existing skills with HTML, CSS, and JavaScript. This book shows you how with lots of detailed examples, step-by-step instructions, and hands-on exercises.
Learn how to build iPhone apps with standard web tools
Refactor a traditional website into an iPhone web app
Hook into advanced iPhone features (e.g. accelerometer, geolocation, vibration, and sound) with JavaScript
Do most of your development with the operating system of your choice
Das Textemate Plugin zen-coding erlaubt es z.B. CSS Selectoren zu schreiben und expandiert die dann in HTML Code, z.B.
table>tr>td wird:
<table> <tr> <td></td> </tr> </table>
Noch etwas kürzer geht es so: table+
<table> <tr> <td></td> </tr> </table>
Mit der erweiterten Syntax kann man dann sowas machen: select>option#item-$*3
<select> <option id="item-1"></option> <option id="item-2"></option> <option id="item-3"></option> </select>
Sehr cool!