- Docker inserts iptables rules when it's started by default
- buster uses nftables by default
- let's make Docker use nftables instead
- PROFIT
Install Docker CE and nftables:
Install Docker CE and nftables:
#! /usr/bin/sh | |
# This script changes all LUA references in Awesome WM to the exact LUA | |
# interpreter you use. | |
# It prevent issues when you build and run tests with multiple LUA versions | |
# installed on you device and the default one (aka $lua) is lua5.4 which is not | |
# yet supported by Awesome. | |
# Script based on: | |
# * https://aur.archlinux.org/packages/awesome-git/ |
# A skill to store markdown content to our second brain obsidian | |
import os | |
def store_note_to_obsidian(filename, content): | |
""" | |
Store markdown content to our second brain in a local Obsidian vault | |
:param filename: str, filename of the note | |
:param content: str, content of the note as markdown |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# License: GNU GPLv3 | |
sudo apt-get update && sudo apt-get upgrade -y | |
# assumes no desktop environment -- must install Xorg things | |
sudo apt-get --no-install-recommends install xserver-xorg xserver-xorg-video-fbdev \ | |
xinit pciutils xinput xfonts-100dpi xfonts-75dpi xfonts-scalable libx11-dev libxft-dev libxinerama-dev xorg-dev -y | |
# install other common utils | |
sudo apt-get install build-essential curl neovim make tmux git python3-pip neofetch stow -y |