Mathematically optimal markup with HTML5
shinyplasticbag.posterous.com
Mathematically optimal markup with HTML5
1–10 of 28 posts
Re: Mathematically optimal markup with HTML5
#2Re: Mathematically optimal markup with HTML5
#3Knowing how the parser treats certain constructs and deviations from the spec. probably gives us some insight into how long things will take to parse. Or is client side that much faster than waiting on normal network latency?
Re: Mathematically optimal markup with HTML5
#4Does anyone have more details or examples of Google's "crige-worthy" HTML for efficiency?
Re: Mathematically optimal markup with HTML5
#5Does anyone have more details or examples of Google's "crige-worthy" HTML for efficiency?
No or tags for one.
Re: Mathematically optimal markup with HTML5
#6Does anyone have more details or examples of Google's "crige-worthy" HTML for efficiency?
Go view the source of Google.com No or tags for one.
Example: They are also wasteful in their embedded styles:
Example: margin:3px 0 4px;margin-left:4px
Heck, they could even change the path to the images they include on the site to "img" or "i" instead of "images"
Or remove the "http:" from the urls they link to from the homepage. Though, I'm not sure if all UAs will handle this correctly. They should.
Re: Mathematically optimal markup with HTML5
#7Does anyone have more details or examples of Google's "crige-worthy" HTML for efficiency?
Go view the source of Google.com No or tags for one.
Re: Mathematically optimal markup with HTML5
#8Re: Mathematically optimal markup with HTML5
#9I hope that in determining which HTML is optimal bandwidith wise, there is also some consideration of what HTML is optimal rendering wise. (obvious cost savings of going hard down the bandwith optimizing aside) Knowing how the parser treats certain constructs and deviations from the spec. probably gives us some insight into how long things will take to parse. Or is client side that much faster than waiting on normal…
Re: Mathematically optimal markup with HTML5
#10I suppose some day I'll have to start writing my HTML to be read by machines, rather than humans. Right now I treat it like code: proper indentation, helpful comments, and the occasional hidden message for the reader.