Wednesday, November 29, 2006

Zebra Stripe Methods


Here's a good idea for a visual studio add in. Zebra stripe methods background colors. Alternate between two colors so that you can see them better as scrolling through. Sounds like a task for DxCore hobbyists.


Tuesday, November 28, 2006

Rehsarper build 313 is out

Sure is a fancy one too. Solved a lot of speed issues for me.

http://www.jetbrains.net/confluence/display/ReSharper/Nightly+Builds

Ignore this.

Technorati Profile

Wednesday, November 22, 2006

IDE Hot or not

http://idehotornot.ning.com/

I posted a few of my Visual Studio 2005 Color Schemes over there. Its nice to see someone putting up a central collection of them somewhere. Check out my new Neon Blues colors there.

Labels: , ,

Thursday, November 16, 2006

IE7 Blows

document.getElementById('myElement').style.display = "none;"; Works in all other browser, except IE7.

document.getElementById('myElement').style.display = "none"; Works in ie7 & other browsers.

All IE7 tells you is that yourelement.style.dispplay is unaccessable property.

I have a problem with IE7. When my system is loaded down, if I hit Ctrl-alt-delete to bring up task manager, IE7 Will spawn any pending popup windows OVER the task manager. There's something really obscene about an interenet browsing application taking forefront over the system management tools. Say you have a page with bad popups on them.... Killing them with
the task manager will no longer work.

Now I have an additional line of css declarations to get everything to line up since it doesn't render like firefox or ie6... *:first-child+html .divNoHistoricalTabs { margin-bottom: -7px; }

Its like the browser wars all over again only the techniques to target a browser have become more obscure.