Sitespeed – a script to wait for text
var waiting_text="Basic Data"; var max_waiting_time=30;//seconds for(i=0;i<max_waiting_time;i++) { body_text= await (("body")).getText(); if((waiting_text)) { ("Found required text at the "+i+"th seconds, exiting the waiting "); break; }else{ await (1000); } }...
Git: some folders not committed
When you run git status , you see the screen below No mater how you add these files (git add *) , the files are still not being committed...
Azure Web App: Running PHP7
Azure stop supporting PHP7 in early 2023, for any reason you still wants to run PHP7, there is a way. Azure still allows us to run PHP7, this can...
Azure Pipelines: App Service Deploy empty
You might not see your app service name when you add Azure App Service deploy task. This could be because your resource is new, it might take a day...
Azure App Service (Web App) Journey
Azure App Service allows you to host your application on a managed environment. You select the environment/stack (Java, PHP,#8230;) , Azure will setup the environment for you by using...
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,...