Skip to content

Instantly share code, notes, and snippets.

@appblue
appblue / AmigaIntroStartup.md
Last active August 30, 2024 17:11
Amiga 4K Intro Template

Example m68k startup code for 4k demo on Amiga

;              T         T               T

; Compact demo-startup by Blueberry/Loonies
; Version 1.5, October 7, 2014
; Public Domain

;; ********** System constants **********
@appblue
appblue / .sh
Created October 13, 2025 07:39
List old Nvim Files
#!/bin/bash
# Script to list recent files and open nvim using fzf
# set to an alias nlof in .zshrc
list_oldfiles() {
# Get the oldfiles list from Neovim
local oldfiles=($(nvim -u NONE --headless +'lua io.write(table.concat(vim.v.oldfiles, "\n") .. "\n")' +qa))
# Filter invalid paths or files not found
local valid_files=()