Skip to content

Instantly share code, notes, and snippets.

@onnyyonn
onnyyonn / awesome-wordle.md
Last active May 4, 2026 11:34
A non-exhaustive list of Wordle clones, variants and solvers

FZF Scripts

  • ksend: send files to other devices using kdeconnect
  • fz-open: navigate directory structure to find and open files
  • editdot: open dotfiles tracked by yadm in $EDITOR
  • dotlog: browse git log of dotfiles tracked by yadm, preview diff and copy commit hash
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p git bitwarden-cli jq
# This script downloads my SSH key from Bitwarden and then clones my private NixOS config repository from Github
# Assumptions:
# 1. You have only one item named "SSH Keys" stored in Bitwarden
# 2. The private key is saved in that item as an attachment named "id_rsa"
# 3. The public key is added to Github account
mkdir -p ~/.ssh
@onnyyonn
onnyyonn / blur.sh
Created September 7, 2024 18:00
Batch half-pixel blur
#!/bin/bash
export_dir="Export"
share_dir="Share"
mkdir -p "$share_dir"
overwrite=false
if [[ "$1" == "-overwrite" ]]; then
overwrite=true
fi