Post holiday geekiness (linkzbag)

Was on vacation for two weeks and my feedreader was exploding; Managed to collect some links that caught my eye though 😉 History of the browser user-agent string – Hilarious! Has the Large Hadron Collider destroyed the world yet? – Single Serving Site that is 😉 Adam Kimmel presents: Claremont HD – That’s just … …

Developer Tools in Internet Explorer 8 Beta 2

The Developer Tools in IE8 are getting more mature (and more Firebug alike): “Beta 1 introduced a JScript debugger that lets you easily debug Jscript within Internet Explorer. In Beta 2, we’ve made a few great improvements: it now supports Console.log, just-in-time debugging, and has better usability through changes like an improved file chooser.” … …

Conditional-CSS

Check this snippet out: [css]/* Conditional-CSS example */ a.button_active, a.button_unactive { display: inline-block; [if lte Gecko 1.8] display: -moz-inline-stack; [if lte Konq 3.1] float: left; height: 30px; [if IE 5.0] margin-top: -1px; text-decoration: none; outline: none; [if IE] text-decoration: expression(hideFocus=’true’); }[/css]Ever wanted to write CSS like that? Then seek no further! Conditional-CSS is a little …