Skip to content

Instantly share code, notes, and snippets.

@hamednourhani
hamednourhani / personal-agentic-workspace-setup.md
Last active September 24, 2026 08:02
☁️ Personal Cloud-Native AI Agent Workspace

☁️ Personal Cloud-Native AI Agent Workspace

An experimental guide to transitioning from a tethered SSH/terminal workflow to a resilient, mobile-friendly environment for running AI agents autonomously—without relying on managed platforms or incurring high idle costs.

This design lets you run long-lived agent loops in the cloud and drive them primarily from a web browser on your laptop or phone (via a Zero-Trust tunnel), receive async push notifications when the agents need a human, and keep the whole stack alive across devices — with plain SSH reserved only for bootstrapping and administration.

1. The Core Infrastructure

  • Compute: Hetzner Cloud cost-optimized ARM VM — the flavor I use is CAX33 (see cost-optimized). Flavors change over time; if you don't see CAX33, pick the current cost-optimized ARM flavor in your size/price range.
  • Orchestration: zellij to keep the long-running daemons (the OpenCode server and the ngrok tunnel)
name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@alloknight
alloknight / README.md
Last active September 24, 2026 07:53
Why is it so hard to name your company in 2026? I ran 76,948 live domain checks and found out.

Why is it so hard to name your company in 2026? I ran 76,948 live domain checks and found out.

Ran 100 searches across 10 business types (bakery, law firm, saas, gym, salon, etc), 19,237 distinct AI-generated business names, each checked live against .com/.io/.ai/.co. 76,948 domain checks total.

Nearly half the names had nothing open anywhere — 45.7% dead on all four extensions.

Of what's left: .com 86% taken, .co 57%, .ai 51%, .io 51%.

@fnky
fnky / ANSI.md
Last active September 24, 2026 07:53
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@lbrame
lbrame / archtweaks.md
Last active September 24, 2026 07:50
Tweaks I've made to my Arch Linux installation

Arch Linux tweaks

This is a collection of the tweaks and modification I've made to my Arch Linux installation over the months. These may be applicable to other distros, but please check first before doing anything. I also included Arch Wiki references for all the procedures I mentioned. My recommendation is not to blindly follow this gist but to always check with the Arch Linux wiki first. Things move fast and by the time you're reading this my gist may be out of date. Lastly, the golden rule: never execute a command you don't understand.

Installing the KDE Plasma desktop

My current DE of choice is KDE's Plasma. I find it just about perfect.

There are various ways to install it on Arch. The most popular one is to install plasma and plasma-applications, but I don't like doing that because it comes with too many programs I'll never use. I, instead, install the base plasma group, remove the few extra packages that come with it, then I finish off by installing a few KDE apps that don't come with th

@rohitg00
rohitg00 / llm-wiki.md
Last active September 24, 2026 07:49 — forked from karpathy/llm-wiki.md
LLM Wiki v2 — extending Karpathy's LLM Wiki pattern with lessons from building agentmemory

LLM Wiki v2

A pattern for building personal knowledge bases using LLMs. Extended with lessons from building agentmemory 20K+ Stars ⭐️, a persistent memory engine for AI coding agents.

This builds on Andrej Karpathy's original LLM Wiki idea file. Everything in the original still applies. This document adds what we learned running the pattern in production: what breaks at scale, what's missing, and what separates a wiki that stays useful from one that rots.

What the original gets right

The core insight is correct: stop re-deriving, start compiling. RAG retrieves and forgets. A wiki accumulates and compounds. The three-layer architecture (raw sources, wiki, schema) works. The operations (ingest, query, lint) cover the basics. If you haven't read the original, start there.

@ph33nx
ph33nx / Install-Android-USB-ADB-Fastboot-Windows-2026.md
Last active September 24, 2026 07:48
Install Android USB Driver, ADB, and Fastboot on Windows 10/11 (2026) – Step-by-step instructions to install the Android USB driver and set up ADB/Fastboot using winget on Windows 10/11. Perfect for Android development and troubleshooting.

Installation Guide for ADB/Fastboot & Android USB Driver (Windows 10/11)

Step 1. Install ADB and Fastboot Binaries via Winget

  1. Open Command Prompt or PowerShell
    • Execute the following command to install the binaries:
      winget install Google.PlatformTools
@Alfredo-Bombace
Alfredo-Bombace / 50-alsa-config.conf
Last active September 24, 2026 07:46
These scripts and confs are intended for those struggling with pops and clicks with an hifi DAC. Of course use S/PDIF if you have it, and don't buy >20$ expensive galvanic isolators. Adjust scripts where needed to match device names etc. MPD config has the sole audio_output you should copy in your one. Refer to the Reddit post here: https://www.…
# .config/wireplumber/wireplumber.conf.d/50-alsa-config.conf
monitor.alsa.rules = [
{
matches = [
{ device.name = "alsa_card.usb-SMSL_SMSL_USB_AUDIO-00" } # get yours with "wpctl list" (the audio/device one)
]
actions = {
update-props = {
session.suspend-on-idle = false
@ciocan
ciocan / agentic-workflow.md
Created September 23, 2026 12:48
How I build software with coding agents

How I build software with coding agents

A write-up for a friend. This is the setup I have converged on after about a year of running Claude Code and Codex CLI on real products, some of them with the agents working for days at a time while I sleep. It is generic on purpose. Where I quote numbers they come from my own repos, measured on 2026-09-23.

The short version: one Linux box, a terminal multiplexer built for agents, a written contract per repo that tells the agent how work is done, and a loop of grill → issues → orchestrated build → adversarial verification → merge → docs. The agent