Posted by Alex on July 10, 2011 in iPhone,Photography
Location: Napa Valley (view map)
Picture taken: May 2010
Posted by Alex on January 6, 2011 in Web Development
This API specification introduces the sessionStorage IDL attribute. This way, sites can add data to the session storage, and it will be accessible to any page from the same site opened in that window. It works similar to the cookies, but the main advantage of the API is that it allows storing more data, as it’s storage space is around 5MB depending upon user agent implementation.
Each Storage object provides access to a list of key/value pairs, which are sometimes called items. Keys are strings. Any string (including the empty string) is a valid key. Values can be any data type supported by the structured clone algorithm. Read More »
Posted by Alex on December 21, 2010 in Web Development

For those wondering what is all the buzz related to that new version of HTML and why it is important, there is one main reason to point out. HTML5 is the “correct” way. It is the way HTML should have started in the first place.
If you are used to code (as expected) in HTML 4.01 or XHTML 1.0 Transitional, you will start noticing the difference right from the 1st line of code.
<!DOCTYPE HTML>
The most important fact about it is that the <!DOCTYPE> declaration must be the very first thing in your HTML5 document, before the <html> tag. This tag tells the browser which HTML specification the document uses. Also, it is very important to understand that the doctype declaration is not an HTML tag; it should not be included in the <html> tag.
Also, its important to know that the <!DOCTYPE> tag does NOT have an end tag. There is no closing tag, as its only purpose is to instruct the web browser about what version of the markup language the page is written in.