Deploy in 115+ regions with the modern database for every enterprise.
MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Start Free
Go from Code to Production URL in Seconds
Cloud Run deploys apps in any language instantly. Scales to zero. Pay only when code runs.
Skip the Kubernetes configs. Cloud Run handles HTTPS, scaling, and infrastructure automatically. Two million requests free per month.
RAD Tool and IDE for PHP, JSP, ASP, C++ and Java Swing
The interface supports drag and drop HTML components, javascript and scriptlet events, and generate a very fast code, with no additional softwares layers or libraries.
You can put your libraries, like jQuery. The generated code works with all browsers.
You can create and debug Applets or Java Swing applications easily with the Visual Editor of the tool. Build C++ applications.
Standalone Server.
Generate optimized HTML5 code to manage file, pictures or data.
Applications created in memory.
YHTML uses a package of extended packages.
Les applications YHTML sont des application WEB qui ne nécessitent pas d’installation de serveur.
YTHML génère du code HTML5 de manière optimisée ce qui limite le transfert des données HTML sur le réseau.
YHTML fonctionne entièrement en mémoire et ne va pas utiliser le disque dur, le temps de réponse est alors immédiat.
...
Delphi HTML Parser
This module lets you work with HTML documents as DOM tree and use XPath for searching tags.
It is very simple way to parse HTML.
This tested with version Delphi XE5,6
Usage
Add in Uses parser.pas;
begin
HtmlTxt:= ''; //here your html
NodeList:= TNodeList.Create;
ValueList:= TStringList.Create;
DomTree:= TDomTree.Create;
DomTreeNode:= DomTree.RootNode;
If DomTreeNode.RunParse(HtmlTxt) then
begin
{your code
example:
DomTreeNode.FindXPath('//*[@id="TopBox"]/div[1]/div[@class="draw default"]'),NodeList,ValueList)}
end;
end;
Xpath support:
attributes - //*[@id="TopBox"]/div/@class
comment - //*[@id="TopBox"]/div/comment()[3]
text - //*[@id="TopBox"]/div/text()[2]
previous level - /.....