I recently discovered another way to start a web server from any location for any application written in PHP. As of PHP web developer, I bet all of you are…
Author: Nguyen Vu Ngoc Tung
How to show a loading spinner using jQuery
Have you ever asked yourself how to show a spinner on a page while we have to wait for the server response? In most modern web-based applications, showing an indicator…
Scraping and downloading multiple files from web with Python
In recent posts, we have discussed some methods to scrap and download resources from the web. If you just want to download a few files, it doesn’t matter to iterate…
A Comprehensive Introduction to XML Path Language
The term XPath stands for XML Path Language. It is a query language employed for selecting various nodes in the XML document. Why is it called a language? Is this…
Java Remote Debugging
https://itnext.io/remote-debugging-spring-boot-on-kubernetes-a5f96a40e5c0 https://medium.com/swlh/remote-debugging-a-java-application-running-in-docker-container-with-intellij-idea-efe54cd77f02 https://www.youtube.com/watch?v=OmQU1p0wQmY&t=608s https://blog.christianposta.com/kubernetes/java-remote-debug-for-applications-running-in-kubernetes/ https://medium.com/swlh/remote-debugging-a-java-application-running-in-docker-container-with-intellij-idea-efe54cd77f02 https://docs.oracle.com/javase/8/docs/technotes/guides/jpda/conninv.html#Invocation
Parse HTML Document using XPath with lxml in Python
As long as we find a webpage where having data of interest, we sometimes want to extract them automatically but don’t know how to do quickly. Thank to the lxml…
Download Files in Python using the urllib Module
In the former posts, we have shared the methods to download files from the web using the requests or wget module. As we know, they are external modules which we…