This file contains hidden or 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 node | |
const generateQrCode = require('sepa-payment-qr-code'); | |
const QRCode = require('qrcode'); | |
const payload = generateQrCode({ | |
name: 'John Doe', | |
iban: 'BE71096123456769 ', | |
amount: 999999, | |
}); |
This file contains hidden or 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
# /etc/systemd/system/ap.service | |
[Unit] | |
Description=Access point daemon | |
After=network.target | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/create_ap --config /etc/create_ap.conf | |
KillSignal=SIGINT |
This file contains hidden or 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
! SE | |
###hot-network-questions | |
###chat-feature | |
###newsletter-ad | |
##.community-bulletin.module | |
##.js-secondary-topbar-links | |
###announcement-banner |
This file contains hidden or 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
alias vacuum='sudo apt autoremove --purge' |
This file contains hidden or 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
{ | |
"state": { | |
"mode": "normal", | |
"last_ex_str": "", | |
"cmdHistory": [] | |
}, | |
"userconfig": { | |
"searchurls": { | |
"g": "https://google.com/search?q=", | |
"w": "https://en.wikipedia.org/w/index.php?search=", |
This file contains hidden or 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
{ | |
"keymaps": { | |
"0": { "type": "scroll.home" }, | |
":": { "type": "command.show" }, | |
"o": { "type": "command.show.open", "alter": false }, | |
"O": { "type": "command.show.open", "alter": true }, | |
"t": { "type": "command.show.tabopen", "alter": false }, | |
"T": { "type": "command.show.tabopen", "alter": true }, | |
"w": { "type": "command.show.winopen", "alter": false }, | |
"W": { "type": "command.show.winopen", "alter": true }, |
This file contains hidden or 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 sh | |
ALLMAILQUERY='( is:spam OR NOT is:spam ) AND ( is:deleted OR NOT is:deleted ) AND ( is:muted OR NOT is:muted )' | |
CACHE="$HOME/.cache/keywsync" | |
BEFORE="$CACHE/before" | |
STATE="$CACHE/state" | |
state=$(cat $STATE) | |
# Run notmuch new to detect any new or deleted files, or and renames. |
This file contains hidden or 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
# Server list generated by rankmirrors on 2016-01-19 | |
Server = http://mir.archlinux.fr/$repo/os/$arch | |
Server = https://mirror.pseudoform.org/$repo/os/$arch | |
Server = https://mirror.f4st.host/archlinux/$repo/os/$arch | |
Server = https://arch.jensgutermuth.de/$repo/os/$arch | |
Server = https://k42.ch/mirror/archlinux/$repo/os/$arch | |
Server = https://mirror.compojoom.com/archlinux/$repo/os/$arch | |
Server = https://mirror.fluxent.de/archlinux/$repo/os/$arch | |
Server = https://mirror.js-webcoding.de/pub/archlinux/$repo/os/$arch | |
Server = https://mirror.bitjungle.info/archlinux/$repo/os/$arch |
This file contains hidden or 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 sh | |
# UPDATE | |
apt-get update -y | |
apt-get upgrade -y | |
# PACKAGES |