Skip to content

Instantly share code, notes, and snippets.

View essingen123's full-sized avatar
😀

Karl Lindberg & Kilian Güntner essingen123

😀
View GitHub Profile
@essingen123
essingen123 / index.md
Created November 11, 2023 18:18 — forked from ericandrewlewis/index.md
Set up an Ubuntu Web Server on an Intel Nuc, steps and code snippets
@essingen123
essingen123 / yt_playlist_2_transcription.py
Created January 2, 2025 02:58
YouTube playlist to transcription for accessibility and ai assisted processing etc
import subprocess
import os
import re
# Fast draft by Kilian Lindberg
# Purpose: Accessibility, ease transcript processing for AI in case of limited visual video interaction limitation
# Disclaimer: Code as is, no claims but an inspirational aspiration
# Install yt-dlp using pip
subprocess.run(['pip', 'install', 'yt-dlp'])
#!/bin/bash
# bash_local_test_network.sh
#
# Purpose:
# Testing utility for local network file transfers in sandbox environments.
# STRICTLY FOR TESTING AND LEARNING - NOT FOR ACTUAL USE.
#
# Features:
# - Network validation
# - Automated setup
#!/usr/bin/env python3
import subprocess, sys, shutil, argparse
"""
📡 host_access_diag_with_ip_tor_etc.py
A Python script for diagnosing host/IP access issues (DNS, TCP, HTTP/S), with optional Tor check via Docker.
🧰 Features:
- Tests DNS resolution (local & Google)
@essingen123
essingen123 / datgui-build.js
Created July 4, 2025 22:00 — forked from heaversm/datgui-build.js
Automatically build a dat gui from a javascript object
config = { //SAMPLE OBJECT - replace this with your data object
stroke: 2, //svg stroke value
opacity: 0.3, //0-1
offsetX: 120, //px
offsetY: 80,
fontWeight: 400, //css font-weight
fontSize: 12, //in px
changePositive: '\u25B4', //unicode character for up arrow
changeNegative: '\u25BE', //unicode character for down arrow
colorBlue: '#1190A3', //all hex colors will automatically use the addColor dat gui function