Dowload Splunk: https://splunkbase.splunk.com/app/1546/#/overview
Download Splunk REST Modular API" https://www.splunk.com/blog/2013/06/18/getting-data-from-your-rest-apis-into-splunk.html
Dowload Splunk: https://splunkbase.splunk.com/app/1546/#/overview
Download Splunk REST Modular API" https://www.splunk.com/blog/2013/06/18/getting-data-from-your-rest-apis-into-splunk.html
Verifying my Blockstack ID is secured with the address 1Hr5ufE7L37SGaT6T1YGrz8WjTdBY7kbbV https://explorer.blockstack.org/address/1Hr5ufE7L37SGaT6T1YGrz8WjTdBY7kbbV |
# The DNS-over-HTTPS wrapper over curl. It supports JSON format instead of wire format (RFC 8484) | |
# For best results, add it to your shell startup config files .e.g. .zshrc, .bashrc, or .bash_profile | |
# Some usage examples: | |
# doh www.example.com | |
# doh www.example.com AAAA | |
# doh www.example.com AAAA https://cloudflare-dns.com/dns-query | |
doh() { | |
if [ "$1" = "" ]|| [ "$1" = "-h" ] || [ "$1" = "--help" ]; then |
# Decrypt all pdf files in the current folder (./) and replace the encrypted files with the decrypted ones | |
# Prerequisites: | |
# a. password.txt to be placed in the current folder. | |
# b. qpdf to be installed. | |
# Paste it to your ~/.zshrc file. | |
decrypt(){ | |
if [[ -z $1 ]] | |
then | |
DIR="$(pwd)" | |
else |
#[update \| npm Documentation](https://docs.npmjs.com/cli/update) | |
# npm: List all global npm packages | |
npm ls -g --depth 0 | |
# List oudated packages | |
npm outdated | |
npm -g install | |
npm -g update |
## | |
go install github.com/cloudflare/cfssl/cmd/cfssljson@latest |
# https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/#create-and-use-virtual-environments | |
# Install | |
python3 -m venv .venv | |
# Activate | |
source .venv/bin/activate | |
# Deactivate | |
deactivate |
# Foce install a crate | |
cargo install wrangler --force | |
# Update rustlang and cargo | |
rustup update stable | |
# - check for newer versions and update all installed packages. | |
cargo install-update -a | |
#- check for newer versions and update selected packages, will not install new packages. |