Skip to content

Instantly share code, notes, and snippets.

View thimslugga's full-sized avatar
:octocat:

Adam Kaminski thimslugga

:octocat:
View GitHub Profile
@thimslugga
thimslugga / ai-agent-rule-instruction-context-files.md
Created February 4, 2026 18:09 — forked from 0xdevalias/ai-agent-rule-instruction-context-files.md
Some notes on AI Agent Rule / Instruction / Context files / etc

AI Agent Rule / Instruction / Context files / etc

Some notes on AI Agent Rule / Instruction / Context files / etc.

Table of Contents

@thimslugga
thimslugga / glinet_kvm.py
Last active February 3, 2026 14:19
Python Script for GL-iNet KVM Comet API
#!/usr/bin/env python3
# GL-iNet KVM Comet API
# https://forum.gl-inet.com/t/is-there-an-api/64357
# https://docs.pikvm.org/api/
# https://github.com/guanana/pikvm-lib
import os
import sys
@thimslugga
thimslugga / settings.json
Created January 27, 2026 15:23
VS Code Configuration - settings.json, etc
{
// Telemetry and updates
"clangd.checkUpdates": false,
"docker-explorer.enableTelemetry": false,
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"liveServer.settings.donotShowInfoMsg": true,
"Lua.telemetry.enable": false,
"material-icon-theme.showWelcomeMessage": false,
"rpcServer.showStartupMessage": false,
@thimslugga
thimslugga / install-from-source.sh
Created January 21, 2026 13:36 — forked from zeroday0619/install-from-source.sh
git credential manager | Amazon Linux 2
#!/bin/sh
# halt execution immediately on failure
# note there are some scenarios in which this will not exit;
# see https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
# for additional details
set -e
is_ci=
for i in "$@"; do

Build an MCP Server

Overview

MCP is just JSON-RPC 2.0 over stdio (or HTTP).

Getting Started

# Run directly (stdio mode)
@thimslugga
thimslugga / zsh-setup-guide.md
Created January 17, 2026 19:25 — forked from hx-natthawat/zsh-setup-guide.md
Ultimate Zsh Dev Setup with Pastel Colors + AI - nvm (lazy), Git, Oh My Zsh, Nerd Fonts, bat, fzf, eza, difftastic, GitHub Copilot CLI | 100+ shortcuts

Ultimate Zsh Development Environment Setup

A complete guide to set up a modern, powerful terminal environment for developers on macOS.

🎯 What You'll Get

  • Dual Theme System - Cyberpunk (neon) & Pastel (soft) themes with instant switching
  • nvm - Node Version Manager with lazy-loading (50-60% faster startup)
  • Git - Fully configured with delta, difftastic, and 40+ aliases
  • Oh My Zsh - 8 powerful plugins

Python Project Setup

Install UV

UNIX OS

To install:

curl -LsSf https://astral.sh/uv/install.sh | sh
@thimslugga
thimslugga / ms-windows-terminal-setup.md
Last active January 2, 2026 19:42 — forked from tonysneed/windows-terminal-setup.md
Windows Terminal Setup

Windows Terminal Setup

Overview

winver
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
@thimslugga
thimslugga / terraform.md
Created December 5, 2025 02:42
Terraform

📘 Terraform - Infrastructure as Code (IaC)


🧩 What is Terraform?

Terraform is an open-source Infrastructure as Code (IaC) tool developed by HashiCorp that allows you to define, provision, and manage cloud infrastructure using a declarative configuration language known as HCL (HashiCorp Configuration Language).

Instead of manually creating AWS resources (like EC2 instances, S3 buckets, Lambda functions, etc.) through the AWS console, Terraform allows you to write .tf files and version control your infrastructure just like application code.

@thimslugga
thimslugga / PROMPTS.md
Last active December 9, 2025 12:41
AI Prompt Collection

Role

You are an expert Linux shell script developer who organizes their code and comments their code using shell scripting best practices.

Create a bash shell script which reads from standard input text in Markdown format and prints all embedded hyperlink URLs.

The script requirements are:

  • MUST exclude all inline code elements
  • MUST exclude all fenced code blocks
  • MUST print all hyperlink URLs
  • MUST NOT print hyperlink label