Categories
- Astronomy (39)
- System Programming (5)
- Uncategorized (6)
- Web Development (32)
- Woodworking (7)
-
Recent Posts
- An “El Cheapo” Dust Collector For Small Shops
- Woodworking Safety Week 2012
- OR: DARC Observatory, 4/20/2012
- OR: DARC Observatory, 4/14/2012
- Hand tools only projects
- Julien’s Guide to Hand-Cutting Through Dovetails
- An unconventional loading strategy for YUI 3
- A tenoning jig for the Dewalt DW745 portable table saw
- How to make a square hole…
- First hand-cut mortise and tenon joint
Meta
Archives
- May 2012 (1)
- April 2012 (3)
- November 2011 (1)
- April 2011 (1)
- March 2011 (3)
- February 2011 (1)
- December 2010 (1)
- November 2010 (1)
- October 2010 (1)
- August 2010 (1)
- July 2010 (1)
- June 2010 (1)
- May 2010 (1)
- April 2010 (1)
- March 2010 (2)
- February 2010 (2)
- January 2010 (1)
- November 2009 (4)
- October 2009 (2)
- September 2009 (2)
- August 2009 (1)
- July 2009 (3)
- June 2009 (1)
- May 2009 (3)
- April 2009 (2)
- March 2009 (2)
- January 2009 (3)
- December 2008 (2)
- October 2008 (3)
- July 2008 (2)
- June 2008 (2)
- May 2008 (1)
- April 2008 (3)
- January 2008 (2)
- December 2007 (3)
- November 2007 (3)
- October 2007 (4)
- September 2007 (7)
- August 2007 (6)
- July 2007 (5)
Category Archives: Web Development
The Problem With innerHTML
The innerHTML property is extremely popular because it provides a simple way to completely replace the contents of an HTML element. Another way to do that is to use the DOM Level 2 API (removeChild, createElement, appendChild) but using innerHTML … Continue reading
Posted in Web Development
30 Comments
Adding Back Button and Bookmarking Support to Your DHTML Slide Show
YUI 2.4.0, which was just released today, comes with a minor update to its history library. To celebrate this new release, I thought I would write a short article demonstrating how to use the YUI Browser History Manager to add … Continue reading
Posted in Web Development
6 Comments
Introducing CrossFrame, a Safe Communication Mechanism Across Documents and Across Domains
The mashup problem According to my coworker Douglas Crockford, Mashups are the most interesting advancement in software development in decades. They are also unsafe in the current generation of browsers. Lately, Douglas has been spending some time convincing the main … Continue reading
Posted in Web Development
7 Comments
Getting Rid of the Navigation Click Sound on IE
Internet Explorer plays a little click sound when the location of a page changes. This is a great usability feature as it lets the user know that something is happening. However, this little click sound can become really annoying with … Continue reading
Posted in Web Development
7 Comments
Running CPU Intensive JavaScript Computations in a Web Browser
The pattern discussed below is a well known pattern that has been used for 10 years. The goal of this article is to present this pattern under a new light, and most importantly to discuss ways of reducing its overhead. … Continue reading
Posted in Web Development
5 Comments
The Birth Of Web 3.0
Is Web 3.0 yet another buzz word, or is it a real turnaround in our industry? Web 1.0 was the good old web of the 1990s. In those times, all client-side changes were the result of a server round-trip. The … Continue reading
Posted in Web Development
7 Comments
Adobe MAX 2007
I am currently attending the Adobe MAX 2007 conference in Chicago, IL. Yesterday’s keynote was a great showcase of what Adobe’s latest technologies are about to bring to the web and to the desktop. Here are a few pictures of … Continue reading
Posted in Web Development
Comments Off
YUI Compressor Version 2.2.1 Now Available
I implemented a few enhancement requests and fixed a bug in this new version of the YUI Compressor. Let me know if you encounter any issue with it. Update (9/27/07): YUI Compressor version 2.2.2 is now available. It fixes a … Continue reading
Posted in Web Development
27 Comments
Trimming comments in HTML documents using Apache Ant
This short article, explaining how to trim unnecessary code (comments, empty lines) from HTML documents, is a follow-up to an article published a couple of weeks ago on this blog: Building Web Applications With Apache Ant. Basically, the idea is … Continue reading
Posted in Web Development
6 Comments
YUI Compressor Version 2.2 Now Available
This new version of the YUI Compressor supports stdin and stdout. This means that you can now call the YUI Compressor using the following command line: java -jar yuicompressor-2.2.jar –type js < input.js > output.js You can still use the … Continue reading
Posted in Web Development
12 Comments