Categories
- Astronomy (37)
- System Programming (5)
- Uncategorized (6)
- Web Development (32)
- Woodworking (4)
-
Recent Posts
- 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
- From Dream To Reality (follow up)
- OR: Dinosaur Point, 11/2
- OR: CalStar
- OR: DARC Observatory, 8/14: Prison escapees enjoy dark and steady skies
- OR: GSSP
Archives
- February (1)
- September (2)
- August (2)
- October (1)
- July (1)
- May (1)
- April (3)
- November (1)
- April (1)
- March (3)
- February (1)
- December (1)
- November (1)
- October (1)
- August (1)
- July (1)
- June (1)
- May (1)
- April (1)
- March (2)
- February (2)
- January (1)
- November (4)
- October (2)
- September (2)
- August (1)
- July (3)
- June (1)
- May (3)
- April (2)
- March (2)
- January (3)
- December (2)
- October (3)
- July (2)
- June (2)
- May (1)
- April (3)
- January (2)
- December (3)
- November (3)
- October (4)
- September (7)
- August (6)
- July (5)
Category Archives: Web Development
Building Web Applications With Apache Ant
The importance of having a solid build process Modern web applications are large and complicated pieces of engineering, using many different technologies, sometimes deployed on hundreds (or even thousands) of servers throughout the world, and used by people from dozens … Continue reading
Posted in Web Development
25 Comments
The Rich Web Experience
I am currently attending the Rich Web Experience conference in San Jose. Lots of great topics are being covered by immensely talented speakers who are passionate about sharing their knowledge. Here are a few pictures I took with my iPhone … Continue reading
Posted in Web Development
2 Comments
YUI Compressor Version 2.1 Now Available
This new version of the compressor fixes a few bugs and optimizes string concatenations. You can now keep your code nicely formatted by concatenating string literals, but not suffer any performance hit. For example, the following code: var url = … Continue reading
Posted in Web Development
29 Comments
YUI Compressor Version 2.0 Now Available
I am very pleased to announce the release of version 2.0 of the YUI Compressor. In addition to fixing several bugs and implementing a few enhancements suggested by the community, I also integrated Isaac Schlueter‘s regular expression based CSS minifier. … Continue reading
Posted in Web Development
36 Comments
Gzip Your Minified JavaScript Files
Today, I found out that the good folks behind jQuery were using Packer, another great JavaScript compression utility by Dean Edwards, to distribute their compressed version of the library. The result: an amazingly small 21KB download! My first thought was: … Continue reading
Posted in Web Development
51 Comments
YUI Compressor Version 1.1 Now Available
The release of the YUI Compressor last week has generated a lot of buzz and excitement throughout the web development community. Actually, after receiving so much great feedback, I felt compelled to issue a minor update as soon as possible … Continue reading
Posted in Web Development
10 Comments
Introducing the YUI Compressor
Is there a need for a new JavaScript minifier? According to Yahoo!’s Exceptional Performance Team, 40% to 60% of Yahoo!’s users have an empty cache experience and about 20% of all page views are done with an empty cache (see … Continue reading
Posted in Web Development
69 Comments
YUI-based Image Magnifier Widget
I wrote a prototype YUI-based image magnifier widget that makes use of VML on Internet Explorer and the Canvas tag on all the other A-grade browsers. Attached is a screenshot. To instantiate the widget, include the following source files in … Continue reading
Posted in Web Development
4 Comments
Introducing iSearch, A Search Page Optimized For The iPhone
I hacked a search page optimized for the iPhone. It uses the Yahoo! Search API and bits of Joe Hewitt’s iUI library. The address is: Developing a web application for the iPhone is actually easier than traditional web development … Continue reading
Posted in Web Development
Comments Off
Exposing Extension Functionality to Web-Page Javascript
In this article, I describe how to implement a scriptable XPCOM Component. This type of component exposes some extra functionality to untrusted web-page JavaScript running inside a Gecko-based browser such as Firefox. The implementation itself will be done in JavaScript. … Continue reading
Posted in Web Development
5 Comments