I hereby claim:
- I am techupbusiness on github.
- I am techup (https://keybase.io/techup) on keybase.
- I have a public key ASCHJsglgiTWqBEs_FDCfNcQVE_sqck94ydNhQFdEBdlRwo
To claim this, I am signing this object:
// ==UserScript== | |
// @name Twitter Thread Button | |
// @namespace https://techupbusiness.com/ | |
// @version 0.1 | |
// @description Adds a button next to the "..." menu on tweet pages that opens a twitter-thread URL in a new tab. | |
// @match https://x.com/*/status/* | |
// @match http://x.com/*/status/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
# Remove --global to set it for the current project | |
# Set https instead of git globally for specific host | |
git config --global url."https://mydomain.com/".insteadOf [email protected]: | |
# Revert and set git instead of https globally for specific host | |
git config --global --unset-all url.https://mydomain.com/.insteadof | |
# Check by using | |
git config -l |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
SUDO='' | |
if (( $EUID != 0 )); then SUDO='sudo'; fi | |
echo "Basic auth for traefik >= v1.7" | |
read -p "User: " USER | |
read -p "Password: " PW | |
# Checks if htpasswd is available or install it otherwise |