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/bash | |
# This follows the instructions on https://docs.docker.com/engine/install/ubuntu/ and https://docs.docker.com/compose/install/ | |
# curl -sSL https://gist.githubusercontent.com/Simonwep/b53b6ad8d4086f45a6834c051ae1762c/raw/6fca24bd46a18e125667c18438a0ea92ff459e9d | bash | |
set -ex | |
# Remove old packages | |
sudo apt-get remove docker docker-engine docker.io containerd runc | |
# Install dependencies |
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
interface User { | |
id: number; | |
userName: string; | |
fullName: string; | |
} | |
interface Comment { | |
id: number; | |
body: string; | |
author: User; |
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 GitHub Style Fixes | |
// @version 1.2.0 | |
// @namespace http://tampermonkey.net/ | |
// @description The new github design has issues, this can be used to fix them. | |
// @match https://*.github.com/* | |
// @grant none | |
// @run-at document-end | |
// @downloadURL https://gist.githubusercontent.com/Simonwep/a3926348cb45cc510382ca5cb10f364e/raw | |
// @updateURL https://gist.githubusercontent.com/Simonwep/a3926348cb45cc510382ca5cb10f364e/raw |
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/bash | |
BRANCH="gh-pages" | |
echo "[DGP] Deploying to github-pages (branch $BRANCH)..." | |
# Check if there are current changes | |
if [[ "$(git status --porcelain --untracked-files=no)" ]]; then | |
echo "[DPG] Please undo your current changes." | |
exit | |
fi |
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 Closemaster enhanced | |
// @namespace http://tampermonkey.net/ | |
// @version 4.1.2 | |
// @description Adds a few features to clozemaster.com to practice even faster | |
// @author You | |
// @match https://*.clozemaster.com/* | |
// @grant none | |
// @run-at document-start | |
// @downloadURL https://gist.githubusercontent.com/Simonwep/9341a5881f6b89973305d9f3291d94fa/raw |
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 GitHub contribution hints | |
// @version 1.0 | |
// @namespace http://tampermonkey.net/ | |
// @description A few more infos about your contribs on the front page | |
// @match https://*.github.com/* | |
// @grant none | |
// @run-at document-end | |
// ==/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
#!/bin/bash | |
BRANCH="gh-pages" | |
echo "[DGP] Deploying to github-pages (branch $BRANCH)..." | |
# Check if there are current changes | |
if [[ "$(git status --porcelain --untracked-files=no)" ]]; then | |
echo "[DPG] Please undo your current changes." | |
exit | |
fi |
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 GitHub auto confirm | |
// @version 1.0 | |
// @namespace http://tampermonkey.net/ | |
// @description Automatically inserts your repo name in dialogs | |
// @match https://*.github.com/* | |
// @grant none | |
// @run-at document-end | |
// ==/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
// ==UserScript== | |
// @name BlockAdblock Blocker | |
// @version 1.0 | |
// @namespace http://tampermonkey.net/ | |
// @description Blocks block-adblock | |
// @match *://**/* | |
// @grant none | |
// @run-at document-start | |
// ==/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
// ==UserScript== | |
// @name DuckDuckNoAds | |
// @version 1.0 | |
// @namespace http://tampermonkey.net/ | |
// @description Hides duckduckgo ads | |
// @match https://duckduckgo.com/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |
NewerOlder