Skip to content

Instantly share code, notes, and snippets.

@slowpeek
slowpeek / shopt_ensure.sh
Last active August 20, 2021 15:06
shopt_ensure
# -*- mode: sh; sh-shell: bash; -*-
# shellcheck shell=bash
# MIT license (c) 2021 https://github.com/slowpeek
# Homepage: https://gist.github.com/slowpeek/3e592af3395cfb0e2d20a57c50a87a4b
# bye.sh https://gist.github.com/slowpeek/6127166369d8abd230c30c20cc6a9152
# stack.sh https://gist.github.com/slowpeek/3310c2f09b80d0b2e175122e8c8cae64
# This is a wrapper around bash builtin shopt. It can be used to save
@slowpeek
slowpeek / stack.sh
Last active August 20, 2021 15:09
stack.sh
# -*- mode: sh; sh-shell: bash; -*-
# shellcheck shell=bash
# MIT license (c) 2021 https://github.com/slowpeek
# Homepage: https://gist.github.com/slowpeek/3310c2f09b80d0b2e175122e8c8cae64
# bye.sh https://gist.github.com/slowpeek/6127166369d8abd230c30c20cc6a9152
# Simple stack for strings. It operates on var names:
#
@slowpeek
slowpeek / bye.sh
Last active June 4, 2022 00:52
bye.sh
# -*- mode: sh; sh-shell: bash; -*-
# shellcheck shell=bash
# MIT license (c) 2021 https://github.com/slowpeek
# Homepage: https://gist.github.com/slowpeek/6127166369d8abd230c30c20cc6a9152
##############################################################
##############################################################
## THIS GIST IS OBSOLETE AND IS NO LONGER UPDATED.
## Use here-bye instead: https://github.com/slowpeek/here-bye
@slowpeek
slowpeek / locate-exit.sh
Last active August 31, 2022 17:03
locate-exit.sh
# -*- mode: sh; sh-shell: bash; -*-
# shellcheck shell=bash
# MIT license (c) 2021 https://github.com/slowpeek
# Homepage: https://gist.github.com/slowpeek/7e2731b620d558f44841da6772743d38
# This script can help you find out which line and why (end of code,
# literal exit, 'set -e' violation, bash error) your bash script
# finished execution.
#
@slowpeek
slowpeek / demo.org
Last active March 30, 2023 23:57
orgmode renderer bug demo

How it should be:

line1
line2

How it renders nested into a list item (notice the extra tailing blank line):

  • list item
@slowpeek
slowpeek / demo.md
Last active March 31, 2023 21:32
orgmode renderer bug: line breaks in inline code

before some code after

@slowpeek
slowpeek / keyboard.xml
Last active January 14, 2024 15:19
Kodi remote control mod for Nokia 8000
<?xml version="1.0" encoding="UTF-8"?>
<!--
MIT license (c) 2024 https://github.com/slowpeek
Homepage: https://gist.github.com/slowpeek/50b5123d23b038d5b06b1452057be0c2
--
Kodi remote control mod for Nokia 8000
#!/usr/bin/env bash
set -eu
bye () {
printf '%s\n' "$1"
exit 1
}
blkid_type=
@slowpeek
slowpeek / nodropbear
Last active February 8, 2024 23:19
Make dropbear not start with 'nodropbear' or 'dropbear=no' kernel arg
#!/bin/sh
: <<'README'
Make dropbear not start with 'nodropbear' or 'dropbear=no' kernel arg.
Put this script under /etc/initramfs-tools/scripts/init-top/ and update
initramfs.
README
@slowpeek
slowpeek / dropbear-netplan-fix
Last active February 12, 2024 04:20
Clean up netplan stuff after dropbear-initramfs
#!/bin/sh
: <<'README'
This is a fix for a well-known problem [1] with dropbear-initramfs+netplan
combo.
When dropbear starts, it enables networking [2]. This results in netplan configs
for available ifaces created under /run/netplan. After unlocking, the configs
are still there preventing networkmanager from picking ifaces up: by default,