Install JQ on Windows

The Windows binary file for jq can be downloaded fromhttps://stedolan.github.io/jq/download/ At the time of writing, the latest version ishttps://github.com/stedolan/jq/releases/download/jq-1.6/jq-win64.exe If you want the jq command to be available from everywhere within windows there are 3 steps to be followed: $jqFolderPath = “C:\Program Files\JQ” $jqExePath = “$jqFolderPath\jq.exe” $jqDownloadUrl = “https://github.com/stedolan/jq/releases/download/jq-1.6/jq-win64.exe” # Step 1: Create the folder … Read more

WAMP vhosts and SSL cheat docs

I call them cheat docs, as there is a collection of external docs that help achieve the goal: How to setup vhosts in WAMP (port 80) and how to setup SSL , with vhosts on WAMP (port 443) Setup VHOSTS on WAMP guide:https://john-dugan.com/wamp-vhost-setup/ Install OpenSSL on Windows guide:https://tecadmin.net/install-openssl-on-windows/ Enable SSL on WAMP guide:https://bobcares.com/blog/enable-ssl-in-wamp-server/ Export OPENSSL … Read more