I have a small php script that fetch some product information from the Magento 2 Rest API. The problem I am facing is that it works fine for some Magento 2 shops, but not others. For some shops I get “The signature is invalid. Verify and try again.” But if […]
Daily Archives: December 26, 2025
I have installed the latest version of Google Chrome on Ubuntu. Here is a link for reference: https://geekrewind.com/how-to-enable-secure-dns-in-google-chrome/ But the above link only explains how to change the DNS provider from the Google Chrome UI. It doesn’t explain how to set it from JSON policy file. I want to use […]
I want my WireGuard interface to route only YouTube traffic. Any other traffic including any Google’s services should go through my default gateway. The issue is that Google has tons of IPs even for a single service like YouTube. Check out this repo where there are thousands of them. I […]
I’ve been trying to examine gamejam website and games on it – but I noticed that on one of the games my browser (firefox, latest version) does not open f12 menu. I have tested this with screen keyboard, so it isn’t some hardware malfunction of a button – and well… […]
I’m building a Raspberry Pi 3B as a Wi-Fi AP/gateway. The specs are: Raspberry Pi OS 64-bit (Debian Trixie-based), kernel 6.12.47+rpt-rpi-v8 The Goal: Route Wi-Fi clients only through a VPN interface (NordVPN, interface name nordlynx). What I did: Installed and configured hostapd and dnsmasq. Both are working, once I connect […]
When using the select command, there is usually *) which would capture anything not in the select menu and run whatever code follows, sort of an error checking strategy. varone="Test one" vartwo="n" PS3=$'nEnter one above: ' select rb in "$varone" "$vartwo" "Exit"; do case $rb in "$varone") echo "bingo"; break;; […]