My Azure DevOps Journey
Build vs Release : Build: you run it on a build server, this could be your default pool or agent pool (your self hosted pool) Release: it’s normally collect...
Javasccript: Get all tag elements
A short script but it will help you to debug your javascript/automation issues:
Can’t start grafana after the installation
For some reason, i couldnt start grafana server after the installation I see the server keep trying starting, it stopped at PID file… Not sure what the reason why,...
Revive your bricked motherboard
One day, your computer stop working, here are some symptons: Power on , fans , lights working USB keyboard does not light up You are sure that your memory/cpu/graphics...
Bash file: Keep running a program until it’s successful
I’m trying to reflash my motherboard bios using ch341a tool, the utility i use is flashrom . What’s my challenge? the challenge to connect the tool to the bios,...
Selenium: print all span text
A short code to get all span text in your web page: span_list= await (("//span")); for(i=0;i<;i++) (await ())
Reducing your database load by caching your query
Some applications might have some extensive query which might take several seconds to response, some people said a few seconds isn’t a big problem. Now, let say you one...
Splunk – CPU Alert
If you use Splunk for Infrastructure – this CPU alert can be highly customizable . It’s not like other alert where all the values are static. Each host has...
Web automation – is it easy?
Well, your quick answer could be yes, it’s pretty simple. All you need is to a little Selenium experience. We’ll that’s correct when you start with some simple stuff,...