abbr <expr> ds strftime('%Y-%m-%d %H:%M')
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
"""Compile Typst document | |
ctd.py 2024 ckunte | |
Usage: ctd.py (-f <file>) | |
ctd.py --help | |
ctd.py --version |
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
#!/usr/bin/env bash | |
# 2024 ckunte | |
cat <filename> | openssl dgst -sha384 -binary | openssl base64 -A | pbcopy |
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
Author | Title | Read (y) | Like? | |
---|---|---|---|---|
Arlene Pellicane | Calm, Cool, and Connected | 2024 | Y | |
Brene Brown | The Power of Vulnerability | 2023 | Y | |
Yuval Noah Harari | Sapiens: A Brief History of Humankind | 2023 | Y | |
Yuval Noah Harari | Homo Deus: A Brief History of Tomorrow | 2023 | Y | |
Yuval Noah Harari | 21 Lessons for the 21st Century | 2023 | Y | |
Glen van Brummelen | Trigonometry | 2021 | Y | |
William Zinsser | On Writing Well - 30Ed | 2021 | Y | |
Mark Manson | The Subtle Art of Not Giving a F*ck | 2021 | O | |
David Acheson | The Calculus Story | 2021 | Y |
-
From Tools → Developer → New Plugin... within Sublime Text, replace the template with the following python script:
import sublime import sublime_plugin from datetime import datetime class InsertFormattedDateCommand(sublime_plugin.TextCommand): def run(self, edit):
formatted_date = datetime.now().strftime("%Y-%m-%d %H:%M")
Fastmail has nice search email options. Here is an example: search for email from either linkedin.com
or booking.com
, received before:1y
, which can be added as a rule to process the findings further.
from:(linkedin.com OR booking.com) AND before:1y
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
#!/usr/bin/env bash | |
if ! [ -d "./mtm" ] ; then | |
git clone --depth=1 https://github.com/deadpixi/mtm.git | |
fi | |
if [ -d "./mtm" ] ; then | |
cd './mtm' || return | |
git pull --ff-only | |
make clean | |
make CURSESLIB=curses | |
echo "Run sudo make install in './mtm' for a good compile." |
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
#!/usr/bin/env bash | |
if ! [ -d "./vim" ] ; then | |
git clone --depth=1 https://github.com/vim/vim.git | |
fi | |
if [ -d "./vim" ] ; then | |
cd './vim/src' || return | |
git pull --ff-only | |
make distclean | |
./configure --enable-python3interp | |
make |
sudo apt install libu2f-udev
- Download u2f.rules file
- Save the downloaded file under
/etc/udev/rules.d/
- Upon system reboot, U2F should be available (say from Chromium browser)
Credits to Angela for the article Using Your U2F YubiKey with Linux