We launch http://alwayscheat.com built on Drupal 6.3. A great source for web developer cheat sheets. We plan on providing a print service so firms may order 'packages' or laminated cheat sheets and task sheets.

Only local images are allowed.Only local images are allowed.

To read more about the outgoing traffic analysis or the drupal development process view http://vision-media.ca/resources/drupal/launch-always-cheat

Comments

eeyorr’s picture

Very nice! Are you using jquery to fade from thumbnail to info and vice versa?

www.drupalmuseum.com
www.organicsitedesign.com

tjholowaychuk’s picture

Sure am! here is the tiny script if your interested:

  // View cheat information
  $('.node-cheat .view-info, .node-cheat .thumbnail, .node-cheat h2').click(function(){
    var node = $(this).parents('.node');
    
    // Show thumbnail
    if ($(node).hasClass('viewing-info')){
      $(node).removeClass('viewing-info');
      $('.thumbnail', node).fadeIn(400);
    }
    // Viewing info
    else {                              
      $(node).addClass('viewing-info');
      $('img', node).fadeOut(400);
    }
    
    return false;
  });

____________________________________________________
Tj Holowaychuk

Vision Media - Victoria BC Web Design
Victoria British Columbia Web Design School

eeyorr’s picture

Thanks for the script! Very simple yet effective. I'll post your site on Drupal Museum next week.

www.drupalmuseum.com
www.organicsitedesign.com

tjholowaychuk’s picture

Sounds good!
____________________________________________________
Tj Holowaychuk

Vision Media - Victoria BC Web Design
Victoria British Columbia Web Design School

tjholowaychuk’s picture

I just added a quick category browsing feature. Pretty quick to implement with Views 2 :)
____________________________________________________
Tj Holowaychuk

Vision Media - Victoria BC Web Design
Victoria British Columbia Web Design School