#include <sys/mman.h>#include <unistd.h> int main(int argc, char **argv) { int fd = open(argv[1], O_RDONLY); off_t sz = lseek(fd, 0, SEEK_END); void *p = mmap(NULL, sz, PROT_READ, MAP_PRIVATE, fd, 0); write(STDOUT_FILENO, p, sz); return 0;}## SYNOPSIS
## DESCRIPTION
Tobias Ludwig ist ein Full-Stack- und Systems-Engineer mit Spezialisierung auf low-latency Backends, AI-Integration und self-hosted Infrastruktur. Berlin-basiert, hires unter Vertrag für technisch ambitionierte Projekte.
## EXAMPLES
c
rust
use tokio::sync::mpsc; async fn forward(mut rx: mpsc::Receiver<Frame>, tx: mpsc::Sender<Frame>) { while let Some(frame) = rx.recv().await { if tx.send(frame).await.is_err() { tracing::warn!("downstream closed"); break; } }}ts
import { db } from "@/db";import { applications, eq, and } from "@/schema"; export async function openFor(userId: string) { return db.select().from(applications) .where(and(eq(applications.userId, userId), eq(applications.status, "open"))) .orderBy(applications.createdAt);}sql
SELECT date_trunc('week', signup_at) AS cohort, count(DISTINCT user_id) AS total, count(*) FILTER (WHERE last_seen > now() - interval '30 days') AS retainedFROM usersGROUP BY cohortORDER BY cohort DESC;bash
$ find . -type f -name '*.ts' \ | xargs grep -lE 'console\.(log|error)' \ | xargs sed -i '' 's/console\.log/logger.debug/g'nginx
server { listen 443 ssl http2; server_name tjl-it.de; location / { proxy_pass http://127.0.0.1:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; }}## STATS
## PROJECTS
$ apt-cache search --mode=verbose tobias.*
Skalierbares Headless CMS auf Basis von Next.js mit integriertem Backend und Auto-Install.
Datenschutzorientierte Mobile-App für Paare — Chat, To-Dos, Medien-Sharing, Push.
Skalierbare Coaching-Plattform für Fitness und Gesundheit (Web + Mobile).
Multi-Service NSFW-Detection-Plattform mit KI-Scoring, Multi-Tenancy, Admin-Dashboard.
Skalierbarer Auth-API-Service (Node.js) für Identity & Access Management.
Mobile App zur strukturierten Erfassung und Visualisierung von Logbucheinträgen.
Individuelles CMS + Coaching-Plattform für Fitness-Unternehmen — komplett selbst entwickelt.
On-Device ML-Plugin für Flutter — NSFW-Erkennung mit TensorFlow Lite, kein Cloud-Upload.
Design-System-agnostische UI-Library für Flutter mit wiederverwendbaren Komponenten.
Eigenständig entwickeltes Shop-System mit automatisiertem Bestellworkflow.
## STACK
$ tree ~/stack -L 2 --dirsfirst
~/stack/
├── frontend/
│ ├── next.js (v16, React 19)
│ ├── typescript (strict, no any)
│ ├── tailwindcss (v4)
│ └── three.js + @react-three/fiber
├── backend/
│ ├── postgres (16+, drizzle-orm)
│ ├── node (24, hono)
│ └── python (uv, fastapi when needed)
├── infra/
│ ├── docker
│ ├── coolify (self-hosted)
│ └── nginx + cloudflare
└── ai/
├── claude api (sonnet 4.6+)
├── openai (gpt-5)
└── comfyui + sd (local rtx 4080)## PHILOSOPHY
- prod traffic deserves real testing, not mocks
- if you ship a feature flag, ship the kill switch
- pure functions where possible, pragma where necessary
- three commits beat one mega-commit
- git log is documentation
- benchmark before optimizing; profile before refactoring
- reading code beats writing code
- a slow query is a bug, not a feature
- self-hosted until you can't
## CONTACT
% whois tobias.ludwig Domain Name: tobias-ludwig.de Registrant: Tobias Ludwig Country: DE (Berlin) Email: PGP Fingerprint: Languages: de, en Open for contracts: yes (AVAILABLE Q3 2026) Response time: < 24h Last updated: 2026-05-08
## FILE
- File:
- /var/www/tobias/index.html
- Size:
- ~ 14kb gzipped
- Last modified:
- 2026-05-08T14:22Z
- Build:
- nextjs/16.0.1
- Commit:
- b78cc12
- Hosted on:
- coolify.tjl-it.de
- Region:
- eu-central-1 (frankfurt)