/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.keyvan.net
| | fluffyandflakey.blog
5.7 parsecs away

Travel
| | The web is full of HTML advice. This post discusses six myths: Is HTML loose? Is XHTML better than HTML? What about HTML4? Do IMG tags need a slash? Can I parse balanced HTML with a regex? And should I use a XML parser instead?
| | www.bennadel.com
4.2 parsecs away

Travel
| | Ben Nadel demonstrates how to use jSoup with ColdFusion to parse HTML, traverse the HTML DOM (document object model), and extract HTML data.
| | www.bennadel.com
5.7 parsecs away

Travel
| | Ben Nadel explains that ColdFusion 10 now ships with TagSoup 1.2 which can be used to parse HTML into valid ColdFusion XML documents. These XML documents can then be searched with xmlSearch().
| | craftinginterpreters.com
31.1 parsecs away

Travel
| [AI summary] The text discusses the implementation of a compiler for a simple programming language, focusing on parsing and bytecode generation. It covers topics such as recursive descent parsing, Pratt parsing, and the use of a parser table to handle operator precedence. The text also includes code snippets for the parser and compiler functions, as well as instructions for debugging and testing the compiler. The author emphasizes the importance of error handling and the use of a debug flag to enable the printing of generated bytecode.