Archives for Parsing
Parsing Optional Html Tag Attributes using none keyword
You really hate Regular Expressions and discovered the power of Parse with our simple parse tutorials. Nevertheless after a while, you feel frustrated because even after reading the excellent manual, you're still lacking some real world examples. So here's an example for using none with Parse.
Let's say you want ...more»
How to parse an HTML Web Page to extract all zip-exe or tar.gz links without using RegEX
In one of the first tutorials you've learned how to easily extract text from an HTML Web Page in a few lines without using Regular Expression. As I'd like to automate the download of softwares, I'll now show you how to extract all html links from an Html Web Page ...more»
How to extract Keywords for SEO or Search Engine Indexer in 2 lines.
SEO guys like to analyze keywords used by their competitors after first extracting the text content (see "Extract text on an html webpage WITHOUT using Regular Expression"). As for me, I need to do the same for feeding my Experimental Search Engine NotFoundOnSearchEngine.
So let's say I have this list of ...more»
HTML scaffolding - Create an HTML form by just writing its specification
Scaffolding is generally used for Database Persistence Framework, according to Wikipedia
Scaffolding is a meta-programming method of building database-backed software applications. It is a technique supported by some model-view-controller frameworks, in which the programmer may write a specification that describes how the application database may be used. The compiler uses this ...more»
Tags: Code Generation, HTML, Parse
How to create a Plug-In Architecture Application Framework - with a parallel comparison with C# (part I)
What is a Plug-In Architecture Application Framework? According to this C++ article on Code Guru about Plug-in Architecture Framework for Beginners:
Simply speaking, it is a framework that will allow a program to "look for" add-in functionality at startup, and then allow that plug-in to cooperate with itself.
Famous examples are Eclipse, ...more»
Tags: Architecture, C#, design patterns, ecosystem, framework, OOP, plugin, UML
Understanding Rebol’s Words: Beyond Numbers and Strings
When learning Rebol, one of the first thing you would learn is how to store a number or a string in a "variable" like this:
>> a: 5
== 5
>> b: "abc"
== "abc"
>>
I put the term variable between quotes because 'a and 'b are not exactly equivalent to variables in the same ...more»
Rebol for SEO/Marketing Guys
Jason Bartholme wrote on his blog:
I have been working on an internal tool for our sales and marketing departments. They wanted the ability to provide the URL of a company and return various information. One of the elements they wanted was the number of pages index in Google.
So he tried ...more»
Rebol CGI Form for the Rebtweeter Client Project (part II)
Previous time, we just tackled cgi form with an html mockup screen and a cgi skeleton for our Rebtweeter Client Project. This time, we will have a fully functional prototype (it's far from being the first release yet as per Project Vision Draft, just a demonstration of the core functionality) ...more»
How to do Google Raw Http Request (part I): the Get Http Request
What is raw http Request ? The problem when beginning with high-level language like C#, Java or PHP is that people may have never known how simple the underground is in reality. So here's a short introduction:
Back in the old days of the Internet (see history), there was a ...more»
Automate Youtube Search and Extract all Youtube Ids without using Regular Expressions or XML Parser
I want to gather all Nick Antonaccio Youtube Tutorials on Rebol and show it as a gallery below (see "") as well as generate the html code for all videos to paste into a wordpress post. My idea is to parse this youtube feed url:
http://gdata.youtube.com/feeds/api/videos?q=Computer%20Programming%20Tutorial,%20by%20Nick%20Antonaccio&orderby=viewCount
and extract all these youtube ids:
In ...more»










3 Comments
Tags: HTML, Parse