Archive for the 'Cool Tools' Category

The YUI Panel Bug is squashed

Monday, January 8th, 2007

Hats off to the YUI team for that a fast turnaround. As I had reported in this post, the YUI panel class would sometimes not allow a user to click the drop-down arrow in a select box in Firefox. With the release of YUI 0.12.2, that bug has been squashed. How about that […]

Firebug 1.0 is now in beta (looks awesome!)

Monday, December 4th, 2006

One of the best browser application debugging tools out there has just become better and has new features as part of a public beta. Although Firebug has always been Firefox only, there are now lite versions for IE and safari. Get to work!!

An online generator for any of your code/config/design needs

Monday, November 20th, 2006

A pretty big list of generators for CSS, Ascii Art, Color schemes, FavIcons, Forms, images, pdf’s and even passwords.

AJAX app to test the performance of your AJAX apps

Wednesday, November 8th, 2006

Ever wondered how your AJAX applications would perform under a load test, but can’t/won’t buy an expensive load testing tool? I got tired of wondering so I figured out how I could create an AJAX application to test my AJAX applications. Nothing professional grade, but it can answer some of my performance questions. […]

A Web 2.0 search using YUI

Sunday, October 22nd, 2006

I have always felt that the default Wordpress search was enemic and inaccurate at best, so I finally got around to changing the default search, and returning the results in a more “Web 2.0″ fashion. It could be easily adapted to any blog template since it only requires some YUI includes and a single […]

An incredible JS library for Web 2.0 layouts

Thursday, October 19th, 2006

Jack Slocum is fast approaching deity status with this last project. He has created a YUI extension library for some kick-butt Web 2.0 layouts. The toolkit allows you to create collapsible sections, multiple (even nested) splitter bars, even automatic content tabs when you place two divs on top of each other. This […]

YUI Effects Library

Friday, October 6th, 2006

DavGlass has created an effects library for the YUI libraries to match those of Scriptaculous. The example page can be found here, the JS source code is here.
I applied this library to an existing application to show/hide the online Help with a Blind Up/Blind Down effect:
function toggleHelp(){
   var d = YAHOO.util.Dom.get(’divHelp’);
   if(d.style.display == ‘none’){
      YAHOO.widget.Effects.BlindDown(d,{duration:1});
   }else{
      YAHOO.widget.Effects.BlindUp(d,{duration:1});
   }
}

Vector graphics with Javascript?

Tuesday, October 3rd, 2006

I have not had a chance to really play with this one, but simple, client side graphics without a plug-in or browser limitations looks too cool to not try.
www.walterzorn.com

Is your Javascript leaking?

Monday, October 2nd, 2006

Jack Slocum has an excellent piece on Javascript memory leaks. This is another reason why I like the YUI libraries (besides the excellent documentation); it is clean.

YAHOO set to open up Yahoo Mail code

Sunday, October 1st, 2006

Officials of the world’s largest Internet media company said on Friday it planned to give away the underlying code to Yahoo Mail, one of the crown jewels of its business, in a bid to encourage software developers to build new applications based on e-mail.
Coming late 2006.