Archive for August, 2007

13th Aug 2007

VIDEO - MUST SEE: Zeitgeist The Movie

clipped from www.zeitgeistmovie.com
  blog it

Posted by Posted by Yare under Filed under SoftYare Comments No Comments »

08th Aug 2007

Showing CSS to IE only (The Underscore Hack)

clipped from www.noscope.com

Showing CSS to IE only (The Underscore Hack)

It allows you to show CSS to Internet Explorer only, omitting Mozilla, Safari and Opera.

  • It allows you to write conditional CSS directly in your stylesheet file, and doesn’t require inline styles
  • It works for IE 5.0, 5.5 and 6.0
  • It’s a hack
  • It’s very simple to work with.
  • body {
    background: green; /* show to Mozilla/Safari/Opera */
    _background: red; /* show to IE */
    }

    Cons

  • The CSS won’t validate
  • The hack won’t work for IE5/Mac. For this platform, I recommend the IE5/Mac Band Pass Filter hack
  •   blog it

    Posted by Posted by Yare under Filed under SoftYare Comments No Comments »

    08th Aug 2007

    Eric Schmidt Defines Web 3.0

    clipped from www.readwriteweb.com


    Google CEO Eric Schmidt was recently at the Seoul Digital Forum and he was asked to define Web 3.0 by an audience member. After first joking that Web 2.0 is “a marketing term”, Schmidt launched into a great definition of Web 3.0. He said that while Web 2.0 was based on Ajax, Web 3.0 will be “applications that are pieced together” - with the characteristics that the apps are relatively small, the data is in the cloud, the apps can run on any device (PC or mobile), the apps are very fast and very customizable, and are distributed virally (social networks, email, etc).

    Here is Schmidt’s full answer via a YouTube video uploaded by Seokchan (Channy) Yun (via Orli Yakuel):

      blog it

    Posted by Posted by Yare under Filed under SoftYare Comments No Comments »