- https://www.fossjobs.net
- https://news.ycombinator.com/jobs
- https://stackoverflow.com/jobs/developer-jobs-using-open-source
- https://remoteintech.company
- https://kennytilton.github.io/whoishiring
- https://djqyo3vqv2.execute-api.us-west-1.amazonaws.com/latest
- https://findwork.dev
- https://hnjobs.emilburzo.com
- https://www.fsf.org/resources/jobs
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
#!/bin/sh | |
# change $server to ssh server | |
# if you are using the terminal emulator "kitty", try: | |
kitty +kitten ssh $server | |
# if you are not using kitty or the command above somehow doesn't work, try: | |
infocmp -a $TERM | ssh myserver tic -x -o \~/.terminfo /dev/stdin | |
# if it still doesn't work, try: |
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
#!/bin/bash | |
while read line; do url_return=($(curl -s -o /dev/null -IL -m 10 -w "%{http_code} %{url_effective}" "$line")); if [ ${url_return[1]} -ge 200 ] && [ ${url_return[1]} -lt 300 ] ; then echo "${url_return[@]:1}">>"url_reachable.txt"; else echo "${url_return[@]:1}">>"url_failed.txt"; fi; done<url.txt |
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
#!/bin/sh | |
# NAME | |
# covid_test_pw.sh - get the password of your password protected covid-19 test result pdf by EcoCare | |
# | |
# SYNOPSIS | |
# covid_test_pw.sh FILE | |
# | |
# DESCRIPTION | |
# Normally the password is sent via SMS to your phone. |
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
#!/bin/sh | |
sudo nmcli connection import type openvpn file $OPENVPN_CONF |
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
#!/bin/sh | |
# source: https://bugzilla.redhat.com/show_bug.cgi?id=1437933#c2 | |
# add current user to libvirt group | |
sudo usermod --append --groups libvirt `whoami` |
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
#!/bin/bash | |
# Copyright 2021 Martin Rey | |
# REQUIREMENTS | |
# bash, xargs, gpg2, ffmpeg, jq | |
# | |
# USAGE | |
# cryptocam_decrypt.sh INPUT_DIR OUTPUT_DIR | |
# |
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
#!/bin/bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
# set -o xtrace | |
# USAGE | |
# ./fix_url.sh URL | |
# parallel --ungroup --jobs 0 --arg-file URL_LIST_FILE './fix_url.sh' >> FILTERED_URL_LIST_FILE |
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
"custom/minecraft": { | |
"format": "⬢ {}", | |
"interval": 10, | |
"exec": "printf '\\x06\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00' | nc -N $SERVER_IP $SERVER_PORT | tr -cd '[:print:]' | jq -r '.players.online, .players.max'| xargs printf '%d/%d'", | |
"on-click": "printf '\\x06\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00' | nc -N $SERVER_IP $SERVER_PORT | tr -cd '[:print:]' | jq -r '.players.sample[] | .name' | xargs -0 notify-send 'online users'", | |
"on-click-right": "flatpak run org.tlauncher.TLauncher" | |
} |
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
#!/bin/bash | |
fonts_dir="${HOME}/.local/share/fonts" | |
if [ ! -d "${fonts_dir}" ]; then | |
echo "mkdir -p $fonts_dir" | |
mkdir -p "${fonts_dir}" | |
else | |
echo "Found fonts dir $fonts_dir" | |
fi |