Skip to content

Instantly share code, notes, and snippets.

View rrobe53's full-sized avatar

r2d2 rrobe53

  • Southwest Virginia
View GitHub Profile
@usrbinkat
usrbinkat / README.md
Last active August 16, 2026 18:13
Ollama + Open-Webui + Nvidia/CUDA + Docker + docker-compose

⚠️ This gist is archived development continues at usrbinkat/dmr

Thank you to everyone who starred, forked, commented, and reported issues here. The troubleshooting sections, model profiles, and deployment patterns in the new repository were informed by this community.

The new repository carries forward everything from this gist and adds:

  • Docker Model Runner — run Qwen3.8-27B via Docker Compose with no Ollama dependency
  • OpenCode integration — thin path from Docker Model Runner to local agentic coding via OpenCode
  • Platform install guides — tested Linux setup (Docker Engine + DMR + NVIDIA CUDA), macOS and Windows coming
  • All 12 Ollama model profiles from this gist, plus Open-WebUI integration
@superjamie
superjamie / raspberry-pi-vpn-router.md
Last active October 6, 2025 20:22
Raspberry Pi VPN Router

Raspberry Pi VPN Router

This is a quick-and-dirty guide to setting up a Raspberry Pi as a "router on a stick" to PrivateInternetAccess VPN.

Requirements

Install Raspbian Jessie (2016-05-27-raspbian-jessie.img) to your Pi's sdcard.

Use the Raspberry Pi Configuration tool or sudo raspi-config to:

@ksafranski
ksafranski / expecting.md
Last active February 27, 2026 12:43
Basic principles of using tcl-expect scripts

Intro

TCL-Expect scripts are an amazingly easy way to script out laborious tasks in the shell when you need to be interactive with the console. Think of them as a "macro" or way to programmaticly step through a process you would run by hand. They are similar to shell scripts but utilize the .tcl extension and a different #! call.

Setup Your Script

The first step, similar to writing a bash script, is to tell the script what it's executing under. For expect we use the following:

#!/usr/bin/expect