Skip to content

Instantly share code, notes, and snippets.

View unbracketed's full-sized avatar

Brian Luft unbracketed

View GitHub Profile
@unbracketed
unbracketed / code.py
Last active March 9, 2025 04:27
Single-file nanodjango llm chat which can render highlighted code blocks for nice display and easy copy
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "nanodjango",
# "channels",
# "daphne",
# "htpy",
# "markdown",
# "markupsafe",
# "llm"
@unbracketed
unbracketed / chat.py
Last active March 7, 2025 04:50
Single-file nanodjango & llm powered chat app using HTMX and websockets
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "nanodjango",
# "channels",
# "daphne",
# "htpy",
# "markdown",
# "markupsafe",
# "llm"
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "nanodjango",
# "channels",
# "daphne",
# "htpy",
# "markdown",
# "markupsafe",
# "llm"
@unbracketed
unbracketed / nanodjango_htmx_websocket_example.py
Last active March 6, 2025 05:08
Example single-file Python Nanodjango app using HTMX websockets over ASGI
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "nanodjango",
# "channels",
# "daphne",
# "htpy"
# ]
# ///
@unbracketed
unbracketed / image-to-text-model-comparison.py
Created February 4, 2025 19:32
Processes a directory of images using a few image-to-text models and outputs tables for comparing the processing times and generated captions
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "click",
# "torch",
# "transformers",
# "Pillow",
# "rich",
# "pandas",
# ]
@unbracketed
unbracketed / image-caption-demo.py
Created February 3, 2025 23:31
A Python script that will apply image-to-text transformations for any images found in the directory it runs in using a few different models for comparison.
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "torch",
# "transformers",
# "Pillow",
# ]
# ///
from pathlib import Path
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "starlette",
# "uvicorn",
# "beautifulsoup4",
# "httpx",
# "html5lib"
# ]
# ///
@unbracketed
unbracketed / Repeater-FastTag-for-FastHTML.md
Last active August 3, 2024 08:13
Docs about how to make a Repeater FastTag for easily rendering lists or tables of data

Repeater FastTag

This intended as a utility component for rendering lists, iterables, or sequence-type objects, with a goal of providing useful results with minimal configuration, while allowing all aspects of rendering to be easily overridden.

Source

class Repeater:
    """

Keybase proof

I hereby claim:

  • I am unbracketed on github.
  • I am brianluft (https://keybase.io/brianluft) on keybase.
  • I have a public key ASDA8arUp9wX5w0-kz7yGMdizo_BF-XSpQ-OtIPuddcBrQo

To claim this, I am signing this object:

@unbracketed
unbracketed / RC300_sync.py
Last active July 11, 2019 04:26
Utility for managing BOSS RC-300 memory slots and settings
import csv
import os
import shutil
import logging
log = logging.getLogger(__name__)
UPLOAD_QUEUE = "~/.rc300-queue.csv"
RC300_BASE = "/Volumes/BOSS_RC-300/ROLAND/"