Rob Eberhardt

cleverness ensues

skip navigation

 Friday, December 30, 2005

This is just awesome:

...Okay, so it's a slightly ugly picture, why is it awesome? Read about it here: http://me.eae.net/archive/2005/12/29/canvas-in-ie/.  Basically, Emil Eklund of WebFX extended IE to support Canvas elements, the currently most-buzzed new technology in web browsers.

Awesome-er (to me) is that he accomplished in a couple days with IE's DHTML Behaviors, just like my xDOM Suite, or Dean Edwards' Star-Light do.  Just like them, it uses DHTML Behaviors to basically improve (fix, enhance, or extend) IE's rendering engine.  Developers can apply this extension by copying two files and adding a single line of code to pages which use Canvas.

Easy development, 3rd-party browser extensions, easy deployment ....All good examples of why DHTML Behaviors are totally awesome, and great reasons why other browsers should adopt them... 

(via Ajaxian, screenshot borrowed from same.)

12/30/2005 6:03 PM Eastern Standard Time  #    Disclaimer  |  Comments [0]  | 

 Friday, December 23, 2005

Nope, I still haven't seen it, but I can't wait.

And now I think I gotta go see it in style, though...

SNL - The Chronic of Narnia Rap

(Dunno what's with the You Tube videos that keep coming my way, but it's cool that they encourage hotlinking.)

12/23/2005 2:11 AM Eastern Standard Time  #    Disclaimer  |  Comments [0]  | 
I just found this list I sent to some friends, over a year ago now.  Still quite interesting...


IQ/Personality:
The Classic IQ Test - Apparently I'm an "Insightful Linguist ...natural fluency of a writer and the visual talents of an artist. ...a creative and expressive mind" (there's flattery for ya).
What Different IQ Scores Mean (down, cached copy here)  - Checking my above IQ here calls me "highly gifted" (aka "sub-genius"?).
What kind of thinker are you? - Says I'm a "Musical Thinker" (like Jimi Hendrix, except sooo white).
 
Oh, he's talking about me!
Real coders, real code - scary & sad but true
 
Interesting:
 
Fun:
12/23/2005 1:15 AM Eastern Standard Time  #    Disclaimer  |  Comments [0]  | 

 Thursday, December 22, 2005

(yes color, not music)

I've been clicking on the wrong programs all day, so consider this my request to the world's icon designers to try something other than yellow, orange or red.

I hear purple and green are the new black.

12/22/2005 3:52 PM Eastern Standard Time  #    Disclaimer  |  Comments [0]  | 

Big fan that I am of Google Maps, here's a great ad for it:

12/22/2005 12:12 PM Eastern Standard Time  #    Disclaimer  |  Comments [0]  | 

 Wednesday, December 21, 2005

I recently deployed the ASP.net 2.0 Framework to my server, and since have been fighting with problems it's caused. For instance, when I switched one app to use it, it broke all the other v1.1 web apps I was running (including this blog). Fortunately for me, someone else has been having the same problem and found a solution: move the 2.0 apps into their own application pool. Hooray I don't have to uninstall (which I was close to doing).

Hey Microsoft, how about mentioning this anywhere? ...say during the install, on the IIS site's ASP.net tab, or in the error?

I have another related woe, though: If I set a 1.1 app to run under the 2.0 Framework (which should work, and imparts better performance and security), I get the ASP.net Yellow Screen of Death:

Apparently "global" now a reserved keyword under 2.0 (despite its 1.1 compatibility). Fortunately, I found my own easy fix: just rename the class. So line 11 in my global.asax.vb is now Public Class Global2. Of course I made the same change in its global.asax too: <%@ Application src="Global.asax.vb" Inherits="Global2" %>

Happy to find a solution, and I hope mine helps someone.

12/21/2005 12:23 PM Eastern Standard Time  #    Disclaimer  |  Comments [2]  |