Skip to content

Instantly share code, notes, and snippets.

View LouDnl's full-sized avatar
👑
USBSID-Pico ~ buy @ SmallRun or PCBWay

LouD LouDnl

👑
USBSID-Pico ~ buy @ SmallRun or PCBWay
View GitHub Profile
@LouDnl
LouDnl / SIDERBAR.html
Created May 7, 2024 10:52
Sheets siderbar supporting html
<!DOCTYPE html>
<html>
<style>
.container,
.buttons {
margin: 5px;
width: 95%;
padding: 2px;
font-size: 13px;
}
@LouDnl
LouDnl / docker-aliases.sh
Created November 3, 2025 07:45 — forked from jgrodziski/docker-aliases.sh
Useful Docker Aliases
############################################################################
# #
# ------- Useful Docker Aliases -------- #
# #
# # Installation : #
# copy/paste these lines into your .bashrc or .zshrc file or just #
# type the following in your current shell to try it out: #
# wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash
# #
# # Usage: #
@LouDnl
LouDnl / ns-tree.bb
Last active July 27, 2026 15:12
Namespace require tree in require order, analogous to `clj -X:deps tree` but for ns requires
#!/usr/bin/env bb
;; 2026 LouD https://github.com/LouDnl
;; Source: https://gist.github.com/LouDnl/d9cbe3669be40f89d3b62555b462573d
;; Namespace require tree in require order, analogous to `clj -X:deps tree` but for ns requires.
;;
;; Command (uses glow to view the markdown file afterwards):
;; bb ns-tree.bb yourns.core --order source --output path/to/yourns-tree.md && glow path/to/yourns-tree.md -altw0
;; bb ns-tree.bb yourns.core --order source > path/to/yourns-tree.md && glow path/to/yourns-tree.md -altw0
;; Usage:
;; bb ns-tree.bb <root-ns> [opts]