- Posts tagged web standards
- Explore web standards on posterous
Microformats: Path to Sematic Web?
In the past I have looked into technologies promising to lead us to the promised land of Semantic Web. RDF and OWL are a couple of examples. Though they are powerful and capable formats they are a bit of a chore to come up to speed on and not to easy to implement into something usable and scalable. You see folks using them to solve specific problems in niche and primarily vertical scopes but you don’t seem to see signs of any widespread adoption by the masses.
Then comes along Microformates. From what I’ve read, XFN is what evolved into the first microformat. Today there are many more useful formats. MF’s are sort of a grassroots effort to stitch semantics into the content being published to the web by those who do much of the publishing. Some of the microfomat goals are to solve specific real world problems, start as simple as possible, and reuse existing, widely adopted standards. These concepts make microformats very easy to pick up and start utilizing immediately.
Links I found useful
Character Encoding 101
Another great article on encoding is over at Joel On Software
Ajax In Action
Publisher: Manning Publications
Copyright: 2005
ISBN: 1932394613
Pages: 680
Price: Street: $44.95 Amazon: $29.67
Table of contents: Part 1 Rethinking the web application 1
1 A new design for the Web 3 2 First steps with Ajax 31 3 Introducing order to Ajax 69Part 2 Core techniques 117
4 The page as an application 119 5 The role of the server 159Part 3 Professional Ajax 209
6 The user experience 211 7 Security and Ajax 246 8 Performance 279Part 4 Ajax by example 325
9 Dynamic double combo 327 10 Type-ahead suggest 361 11 The enhanced Ajax web portal 423 12 Live search using XSLT 466 13 Building stand-alone applications with Ajax 503appendix A The Ajax craftsperson’s toolkit 561 appendix B JavaScript for object-oriented programmers 589 appendix C Ajax frameworks and libraries 619
Review: With my Java background, I have read a few of the “In action” series by Manning Publications, as they are often recommended reading in the Java circles. I must say I’ve always been pleased with these texts as they are well written and fulfill their goal of exploring very relevant real world examples. It seems now that Manning Publications is branching out a bit from their primarily Java works past and have set out to tackle the mother of all buzz words at the moment - AJAX. If you are of the few who have not heard of AJAX or Asynchronous JavaScript and XML, see here.
I have read many articles and even one other book on the subject of AJAX. I learned from all of them but they all seemed to be selling AJAX as “Look at this new toy, and look at these cool widgety things you can do with it!”. From page 1, Ajax In Action takes a much more structured and holistic approach. If you take a look at what the book defined as “The four defining principles of AJAX”, you get an idea of what I mean…- The browser hosts an application, not content.
- The server delivers data, not content.
- The user interacts continuously with the application, and most requests to the server are implicit rather than explicit.
- Our codebase is large, complex, and well structured. It is a first-class citizen in our architecture, and we must take good care of it.
- Part 1 clears the buzzword fog around AJAX and will tell you exactly what it is, explains why it is a useful addition to your development toolbox, and suggests a few tools that can make you successful building applications with it.
- Part 2 covers the core techniques that make an AJAX application work in terms of design patterns and best practices.
- Part 3 discusses how to deal with concerns such as usability, security, and performance in order to go from proof of concept to production-ready software.
- Part 4 gets down to business and leads you through the step-by-step development of five AJAX projects. Then as a bonus you are shown how to refactor these apps into drop-in components that you can use in your own web applications.

