Skip to content

Instantly share code, notes, and snippets.

View ScottJWalter's full-sized avatar
🔮
Particle. Wave. It's all data.

Scott J. Walter ScottJWalter

🔮
Particle. Wave. It's all data.
View GitHub Profile
@lfsmoura
lfsmoura / deploying-hermes-agent-on-dokploy.md
Last active April 13, 2026 00:14
Deploying Hermes Agent (NousResearch) on Dokploy — step-by-step guide

Deploying Hermes Agent on Dokploy

A step-by-step guide to deploying NousResearch Hermes Agent on a VPS using Dokploy, secured with Tailscale and a locked-down firewall.

Prerequisites

  • A VPS with Dokploy installed
  • Dokploy API token (Settings → API Keys in Dokploy UI)
  • A Telegram bot token from @BotFather
  • An LLM API key (OpenAI-compatible endpoint)

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@myociss
myociss / proteins.jl
Last active November 2, 2025 02:06
protein docking algorithm implementation in julia
using BioStructures
using LinearAlgebra
using PlotlyJS
using DataFrames
using StaticArrays
using Rotations
using ImageTransformations
using CoordinateTransformations
using Interpolations
using FFTW
@karpathy
karpathy / add_to_zshrc.sh
Created August 25, 2024 20:43
Git Commit Message AI
# -----------------------------------------------------------------------------
# AI-powered Git Commit Function
# Copy paste this gist into your ~/.bashrc or ~/.zshrc to gain the `gcm` command. It:
# 1) gets the current staged changed diff
# 2) sends them to an LLM to write the git commit message
# 3) allows you to easily accept, edit, regenerate, cancel
# But - just read and edit the code however you like
# the `llm` CLI util is awesome, can get it here: https://llm.datasette.io/en/stable/
gcm() {
@meloonics
meloonics / example.md
Last active September 15, 2025 07:11
Obsidian CSS: Stylable Image containers with captions, made from Callouts

image-paths are obviously broken on this one, you can replace the links with images of your own.

[!fig|left|snail]- ![[snail.png|Snail Facts!|200]] Snails are cool! Click to learn more!

  • Snails r cute :3
  • They be eating leaf
  • Swirly soft-boi chomkers :3333

Read-more [[Le Smail Manifesto|here]]!

[!fig|right|px] ![[meloonics_64.png|64]] It me!

@rahaaatul
rahaaatul / zsh_on_termux.md
Last active April 26, 2026 17:33
Installing ZSH on Termux including themes & useful plugins

ZSH on Termux!

Spice up termux with beautiful themes and productivity plugins to make your life easier!

Install ZSH, GIT & LSD

pkg install zsh git lsd vim

Install Oh-My-Zsh

@dannberg
dannberg / obsidian-physical-object-moc.txt
Last active March 8, 2025 11:43
Obsidian template for Physical Objects MOC. Full guide coming soon. Find other Obsidian guildes at dannb.org
\[[+Home]] %% tags:: #MOC %%
# Physical Objects MOC
```meta-bind-button
label: New Physical Object
hidden: false
class: ""
tooltip: ""
id: ""
style: primary
@dannberg
dannberg / obsidian-physical-object-template.txt
Created February 21, 2024 14:04
Obsidian template for Physical Objects. Full guide coming soon. Find other Obsidian guildes at dannb.org
---
Purchased: <% tp.date.now("YYYY-MM-DD") %>
Price:
URL:
---
tags:: [[🛍️ Physical Objects MOC]]
<% await tp.file.move("/Spaces/Physical Objects/" + tp.date.now("YYYY-MM-DD") + " " + tp.file.title) %>
# [[<% tp.date.now("YYYY-MM-DD") + " " + tp.file.title %>]]
# Specs
@ScottJWalter
ScottJWalter / toggle_master_mute.ahk
Last active February 1, 2024 07:12
Toggle Master Audio mute using AutoHotKey
; ---------------------------------------------------------------------------------------------------------------------
; Ctrl+Alt+SPECIAL+K --> Toggle Audio
;
^!#k:: SoundSetMute !SoundGetMute()
; ---------------------------------------------------------------------------------------------------------------------
; Ctrl+Alt+Shift+SPECIAL+K --> Turn Audio OFF
;
^!+#K:: SoundSetMute true
@ScottJWalter
ScottJWalter / toggle_microphone.ahk
Last active February 1, 2024 07:28
Toggles the system default microphone through AutoHotKey
; ---------------------------------------------------------------------------------------------------------------------
; Ctrl+Alt+SPECIAL+M --> Toggle Microphone
;
^!#m:: SoundSetMute !SoundGetMute(, "Microphone"),, "Microphone"
; ---------------------------------------------------------------------------------------------------------------------
; Ctrl+Alt+Shift+SPECIAL+M --> Turn Microphone OFF
;
^!+#M:: SoundSetMute true,, "Microphone"