Jun 22, 2022Recursive create directories by PowershellJust use the command in windows powershell Command New-Item -ItemType Directory 'Path' Example New-Item -ItemType Directory 'D:\dev\test1\test2' Note for mePowershell1 min readPowershell1 min read
Jan 24, 2022Just note…how to add a user with root permission and a basic install firewall on Ubuntu 20.04Just note for a reminder when I finish installing ubuntu (always forget this method let me take note) Current user: root Create new user add new user done. Setup basic firewall Thank you for an article from https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-20-04Ubuntu 20 041 min readUbuntu 20 041 min read
Dec 22, 2021How to fix the “Logitech Cordless Device” driver not installed!When I plug the Logitech Unify USB receiver into the laptop, My windows can’t install that “Logitech Cordless Device” USB driver the first step I'm trying to install the Logitech Options application but the driver is not installed too I found the solution through an answer in Reddit (this link) by installing the Logitech SetPoint application You can download it from the Logitech website http://support.logitech.com/en_us/software/setpointLogitech1 min readLogitech1 min read
May 5, 2021[Golang] How to skip verifying https certificateJust a note, Sometimes when I call API in the dev environment maybe I have to connect with a bad HTTPS self-signed certificate or the wrong certificate When using the global http command just set the TLSClient config to skip like the code below When using the spare http client command just set TLSClientConfig to http object like the code below Thank you this solution from Matthias and cyberdelia via How to do a https request with bad certificateGo1 min readGo1 min read