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
// ==UserScript== | |
// @name IMDb Close Gallery | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Close the fucking image overlay when pressing the Esc button | |
// @author Viktor Berke | |
// @match https://www.imdb.com/* | |
// @icon https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPhone_retina_180x180._CB1582158069_.png | |
// @grant none | |
// ==/UserScript== |
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
ninja: Entering directory `build' | |
[0/1] Running all tests. | |
1/10 bind-wrong-pass-luks1 OK 5.64 s | |
2/10 bind-luks1 FAIL 10.88 s | |
3/10 unbind-unbound-slot-luks1 OK 3.23 s | |
4/10 unbind-luks1 FAIL 10.53 s | |
5/10 bind-key-file-non-interactive FAIL 10.96 s | |
6/10 bind-pass-with-newline FAIL 11.35 s | |
7/10 bind-pass-with-newline-keyfile FAIL 8.97 s | |
8/10 pin-sss OK 1.61 s |
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
#MACROS | |
nicext = "xl0" | |
nicint = "rl0" | |
tcpext = "{ 2121 2222 8080 }" | |
protovia = "{ tcp udp icmp }" | |
trusted = "{ 192.168.0.3 192.168.0.11, 192.168.0.12, 192.168.0.13 192.168.0.21 }" | |
shit = "{ 195.56.111.221 }" | |
#OPTIONS | |
set block-policy return |
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 | |
set -Eeu | |
######################################################################## | |
############################ START SETTINGS ############################ | |
######################################################################## | |
# your GitLab instance' URL | |
export GITLAB_URL='https://gitlab.foobar.com' |
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 | |
# make sure the script can find the domain list even when invoked from a different dir | |
DIR=$(dirname $0) | |
# store your domain renewal commands here, one line per certificate, e.g.: | |
# -d foo.bar -d www.foo.bar | |
# -d foo2.foo.bar | |
DOMLIST="${DIR}/le-domains.txt" |
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
export OLD_REDMINE=2.6.2 | |
export NEW_REDMINE=3.0.1 | |
systemctl stop nginx.service | |
wget http://www.redmine.org/releases/redmine-${NEW_REDMINE}.tar.gz | |
tar xf redmine-${NEW_REDMINE}.tar.gz -C /opt | |
cd /opt | |
rm redmine | |
ln -s redmine-${NEW_REDMINE} redmine | |
\cp -f redmine-${OLD_REDMINE}/config/configuration.yml redmine/config | |
\cp -f redmine-${OLD_REDMINE}/config/database.yml redmine/config |