Skip to content

Instantly share code, notes, and snippets.

View s-macke's full-sized avatar

Sebastian Macke s-macke

View GitHub Profile
@s-macke
s-macke / AI-programming.md
Last active October 27, 2024 10:19
Vom Code zum Copiloten: Ein Blick auf das Neueste in der KI-Softwareentwicklung
@s-macke
s-macke / dnsresolver.go
Last active January 26, 2024 13:56
Top-Down iterative DNS resolver to understand DNS
package main
import (
"fmt"
"github.com/miekg/dns"
"log"
"net/http"
)
const rootdnsv4 = "198.41.0.4"
@s-macke
s-macke / Video-Generation-Tools.md
Last active January 28, 2026 21:39
List of Text To Video Generation Tools
@s-macke
s-macke / ai4se.md
Last active March 19, 2025 09:06
AI Tools for Software Developers. A comprehensive list.
@s-macke
s-macke / c64_3d_games.md
Last active August 11, 2025 14:01
c64_3d_games.md
  • Stunt Car Racer
  • Elite
  • 3D Pool
  • Leaderboard Golf
  • Guardian of The Sentinel
  • Project Stealth Fighter
  • Gunship
  • Space Rogue
  • Mood
  • 3D Construction Kit
@s-macke
s-macke / Nippon.asm
Last active January 25, 2026 20:34
; This is an example of what coding agents can do as of Jan 2026.
; Given a disassembled SID music file, a coding agent can reproduce the music pretty well.
; Original music: https://youtu.be/84hIKDUIpsM?si=QCnMztPuYnW-no1Y&t=16
; Notes:
; The assembly code copies memory around and self-modifies while running.
; Also, there is no 1:1 mapping from a synthesizer to a MIDI file.
; The SID synthesizer chip is far more capable than standard MIDI.
; Coding Agent used: Codex-CLI with GPT-5.2-Codex model.