- First open javascript console on the https://www.humblebundle.com/downloads?key=xxxxxxxxxxx page.
- Paste the content of get-contents.js to the console
- Then paste the alerted text into a file, named files.txt next to the download.sh
- Run the download.sh
- Enjoy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SED Commands to replace HTML entities to characters | |
# Usage: | |
# sed -f htmlentities.sed file.html > newfile.html | |
# Replace entities in all html files | |
# sed -i -f htmlentities.sed file.html **/*.html | |
# ASCII printable characters | |
s/ / /g | |
s/!/!/g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/Ajnasz/znvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Copy flickr photos to folder | |
options: | |
-s upload to s3, not you will need to set AWS_SECRET_ACCESS_KEY | |
AWS_ACCESS_KEY_ID and ENDPOINT_URL environment variables if you want to do | |
this | |
-d directoryName The directory where the photos listed | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION="$1" | |
if [ -z "$VERSION" ];then | |
echo "Version argument is mandantory" >&2 | |
exit 1 | |
fi | |
if expr "$VERSION" : "^v[0-9]\+\.[0-9]\+\.[0-9]\+" >/dev/null;then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# Python script to generate TOTP qrcodes from keepass database to scan into | |
# authenticator app | |
# Required libraries: | |
# https://github.com/lincolnloop/python-qrcode | |
# https://github.com/pschmitt/pykeepass | |
from pykeepass import PyKeePass | |
import qrcode | |
import os |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PATH_TO_ACCOUNT="/path/to/account" | |
PATH_TO_FILE="/path/to/file" | |
ACCOUNT_NAME="[email protected]" | |
ISSUER="Somewhere Org" | |
KEEPASS_PASSWORD="the secret password" | |
echo "$KEEPASS_PASSWORD" | keepassxc-cli show -a "TOTP Seed" "$PATH_TO_FILE" "$PATH_TO_ACCOUNT" | grep -v "Insert password" | while read i;do echo "otpauth://totp/$ACCOUNT_NAME?secret=$i&issuer=$ISSUER" | qr;done; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# pomodoro.sh to play a sound after pomodoro finished | |
# set update frequency to 0 to don't display updates | |
# In that case send a USR1 signal to the process if you want to see the elapsed time | |
# The script will update you slack status if slack token set | |
# You can set slack token by setting the SLACK_TOKEN env var | |
# Or put the token into a gpg encrypted file to $HOME/.secret/slack_token.gpg | |
# You can override that path by setting the SLACK_TOKEN_FILE_PATH env var |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
files=$(git diff --diff-filter ACMR --cached --name-only | grep '\.js$') | |
FAILED=0 | |
for file in $files; do | |
git show :$file | $(npm bin)/eslint --stdin --stdin-filename $file | |
EXIT_CODE=$? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# get clues | |
grep CLUE crimescene | |
# clue mentioned Annabel | |
grep Annabel people | \ | |
cut -s -f 4 | \ | |
cut -d ' ' -f1-2,4 | \ | |
sed 's/ /_/' | \ |