Skip to content

Instantly share code, notes, and snippets.

View ElliotGluck's full-sized avatar
🔥
Heating up!

Elliot Gluck ElliotGluck

🔥
Heating up!
View GitHub Profile
@ElliotGluck
ElliotGluck / SKILL.md
Created April 18, 2026 20:06
technical blog writing skipp -- forked from inference.sh
name technical-blog-writing
description Technical blog post writing with structure, code examples, and developer audience conventions. Covers post types, code formatting, explanation depth, and developer-specific engagement patterns. Use for: engineering blogs, dev tutorials, technical writing, developer content, documentation posts. Triggers: technical blog, dev blog, engineering blog, technical writing, developer tutorial, tech post, code tutorial, programming blog, developer content, technical article, engineering post, coding tutorial, technical content

Technical Blog Writing

Write developer-focused technical blog posts.

Post Types

@ElliotGluck
ElliotGluck / firewall.py
Created March 31, 2026 01:48
Update hetzner Firewalls for Cloudflare HTTPS and Coolify SSH
import requests
import json
import ipaddress
HETZNER_API_TOKEN = "YOUR_HETZNER_API_TOKEN"
# Firewall for HTTPS behind Cloudflare
HETZNER_HTTPS_FIREWALL_ID = "YOUR_HETZNER_HTTPS_FIREWALL_ID"
# Second firewall for SSH access from Coolify
@ElliotGluck
ElliotGluck / n8n-ollama-StackScript
Last active October 22, 2025 10:10
Installs n8n+ollama on Linode stackscript
#!/bin/bash
# <UDF name="domain_name" label="Domain Name" example="example.com" />
# <UDF name="subdomain" label="Subdomain" default="n8n" example="n8n" />
# <UDF name="ssl_email" label="Email for SSL Certificate" example="admin@example.com" />
###########################################
# n8n + Ollama GPU Stack (SSL Required)
# Ubuntu 22.04/24.04 LTS - NVIDIA GPU Required
###########################################
@ElliotGluck
ElliotGluck / randomizer.sh
Last active August 13, 2023 18:06
TLW Filename Randomizer
#!/bin/bash
# Check if the directory was passed as an argument
if [ "$#" -ne 1 ]; then
echo "Usage: $0 /path/to/photo/directory"
exit 1
fi
DIRECTORY="$1"
According to all known laws
of aviation,
there is no way a bee
should be able to fly.
Its wings are too small to get
its fat little body off the ground.