') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); joeky888 (Joeky) · GitHub
Skip to content
View joeky888's full-sized avatar
:shipit:
Master, forgive me, but I'll have to go all-out... Just this once
:shipit:
Master, forgive me, but I'll have to go all-out... Just this once

    Organizations

    @app-fast@file-go@OpenCampusFarm

    Block or report joeky888

    Block user

    Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

    You must be logged in to block users.

    Content in all repositories owned by your account will be closed.
    Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
    Report abuse

    Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

    Report abuse
    joeky888/ReadMe.md

    Hello 👋

    💻 Experienced Developer | Kubernetes | Performance | Security | AI

    I studied Electrical Engineering in high school and Computer Science in college in the past.

    I am a(n)

    1. 🌐 Backend Developer
    2. 🧮 Database Administrator
    3. 🐳 Kubernetes DevOps Operator
    4. 🏰 System Architecture Consultant
    5. 📲 React/React Native/Flutter Frontend Developer (Sometimes)
    6. 🎮 2&3D Game Frontend Developer (Sometimes)
    7. 🔩 Electrician (certified)
    8. 🛠 Automotive Mechanic (trained)
    9. 🏎️ Automotive Engineering Master's student

    and interested in

    • 🦾 Robotics engineering
    • 💪🏼 Work out
    • 🧬 Bioinformatics

    Tech stack I'm using:

    (strikethrough means I no longer use it or interested)

    TechIncluding but not limited to
    LanguageGo, Rust, TypeScript, Python, Shell (Zsh, Fish and PowerShell), Wikitext (MediaWiki)
    FrameworkGoFiber, Fasthttp (go), Fastwebsockets (rust), PyTorch, Ethers-rs, Fresh (deno), Next.js (node), Tailwind CSS
    Game engineUnity3D, Cocos Engine
    PerformancePyroscope
    SEOPageSpeed Insights
    OLTPMySQL, PostgreSQL, libSQL
    ORMGorm, Drizzle
    CacheDragonflyDB, KeyDB, Valkey (Redis)
    Wide columnScyllaDB, Cassandra
    TSDB MonitoringLoki, VictoriaMetrics, OpenTelemetry, Prometheus
    Dev ToolsVSCode (Go, Rust), Zed (TypeScript, Python), [Neo]Vim (Shell, PowerShell), Helix (low-end hardwares), DBeaver (SQL), TablePlus (NoSQL), Ghostty (macOS), Alacritty (Linux)
    Dev OSMostly macOS and Windows, sometimes Arch Linux, Nix, LineageOS (Android), iOS, FydeOS (Chrome OS)
    AI AssistantsClaude, Codex, DeepSeek (Pake), Gemini
    CLI/TUIfastfetch, ripgrep, fd, fzf, oha, zellij, tmux, htop, bottom, dnslookup (DoH/DoT), mtr, xh, k9s, yt-dlp, streamlink, aria2, ffmpeg, gopeed and curl
    Gittig, gitui, onefetch, gitleaks
    Wiki/NotesTypst + CeTZ
    Documentationdeno-gfm
    ContainerPodman + crun (Linux), Docker (macOS), Qemu (Windows)
    InfoSecWireguard, DOH, argon2, mTLS, WAF, HSTS, Web-Check, and Mozilla Observatory
    Hackingtraitor, sqlmap, masscan, rustscan, nmap, hashcat, sslscan, afrog
    Windows EmulatorWine, Proton, Proton-GE
    Private CloudK3s, Forgejo, Gitea, WoodpeckerCI, Cilium (eBPF CNI and service mesh), RenovateBot
    Cloud NativeKubernetes, Helm, Terraform, Linkerd2, DroneCI, Github Actions, Traefik, Cert-Manager, Grafana, AlertManager, Promtail, Vector.dev, Autoscaler

    New tech stack I'm evaluating:

    Tech
    LanguageMojo, Zig (replace unsafe rust), MoonBit
    JS/TS RuntimeBun, Poolifier (Node), Poolifier-web-worker (Deno/Bun), QuickJS (The Next Generation)
    Automationjustfile, taskfile, earthly
    CLI/TUItssh, git-delta, shpool, nvtop, lazysql
    GUITauri, Pywebview, NiceGUI
    GitGitButler
    VCSEpic Lore
    Binary AnalysisImHex (Patch), Tracy Profiler, WINSDK/bite
    NAT Penetrationfrp, rathole
    Game engineUnreal (PuerTS)
    File SystemBcachefs (Linux 6.7+)
    IoT edgeSupabase
    BackendHono.js + htmx (edge native, APIs for mobile apps), Salvo.rs (http3/webtransport), Socketify.py (uws)
    Weak networkYasio, P2PCF, WebRTC-rs, PeerJS, zenoh, WebTransport
    OLTPTiDB (No funcs, no triggers), Turso (sqlite), YugabyteDB
    HFTTigerBeetleDB
    CIArgoCD
    Cipherxor simd
    MLOpsGit LFS on S3
    IaCPulumi
    OrchestrationNomad
    IngressLoxiLB (eBPF + http3), HAProxy (http3 requires recompiling)
    CIbuck2, sccache + s3
    Containerbsdpot (FreeBSD jails)
    Container RuntimeKata containers, youki, podman (CONTAINERS_MACHINE_PROVIDER="applehv" or "hyperv" for mac, win respectively)
    VMMicrosandbox
    MonitoringNetdata, OpenObserve, Sniffnet, SigNoz (clickhouse-based), HyperDX (clickhouse-based)
    Hot ENVKine, Consul (Multi cluster)
    TestYaak (tauri, postman alike)
    Git serverTangled
    Object StorageRustFS
    CacheReadySet
    Full-textMeilisearch, ManticoreSearch, Tantivy, SeekStorm
    Vector/Embedding DBMilvus (GPU), Qdrant (CPU), LanceDB (GPU), Turso (Faiss), ChromaDB
    Data Analysispg_duckdb, DuckDB, Polars
    Document/Graph DBDGraph, SurrealDB
    OLAP WarehouseParadeDB, ClickHouse, DataBend
    Time-series DBInfluxDB, GreptimeDB, TDengine
    Key-Value DBredb
    ML Inferenceonnxruntime (Desktop), executorch (Mobile), burn (rust, onnx), WebLLM
    LLM architectureGPUStack, Mamba, exo (local cluster, ollama alternative)
    ML VisualizationStreamlit
    StreamingIggy, Redpanda
    Stream processingRisingWave, Arroyo
    SSR/SSGAstro
    OpenClawZeroClaw (Rust), PicoClaw (Go, simple tasks)
    Project ManagementMakePlane, AppFlowy, Zulip (PG), RocketChat (Mongo), Mattermost (PG, MySQL, No max user limits), Revolt.chat
    HackingFlipper Zero (badusb/recording signals), M5Stack Cardputer (M5 Bruce/Inexpensive flipper 0 knock-off)
    Windows EmulatorSikarugir (Wineskin successor, closed-source)
    Android EmulatorBlueStacks Air (freeware), Waydroid
    iOS EmulatorPlayCover (Apple Silicon, imitates an iPad)
    Remote DesktopSunshine (Server), Moonlight (Client), netris.me (GeforceNow-like)
    Bittorrentrqbit (cli, tauri)
    Gaming LinuxCachyOS (Arch-based),Bazzite (Fedora-based, SteamOS-like)
    Linux KernelZen Kernel (Arch tuned), Asterinas (Linux-compatible, in rust)
    Nvidia Patch/ModNVIDIA patch (NVENC, NVFBC acceleration), DLSSEnhancer mod (Fork of DLSSTweaks)
    GPU Patch/ModNVIDIA DLSS Enabler mod (for non-RTX GPUs like Intel, AMD, and NVIDIA GTX)
    VehicleStarlink Mini (in the car)
    Vehicle simulatorCarla, Airsim
    File and OfficeOpenCloud (Nextcloud alternative)

    There are so many more deserving of investment, and there is so little time.

    Pinned Loading

    1. file-go/filfile-go/filPublic

      😋 Unix file command written in Go

      Go 117 20

    2. app-fast/app-fastapp-fast/app-fastPublic

      😱 Evil parallel package downloader

      Shell 43 6

    3. app-fast/fpgoapp-fast/fpgoPublic

      Fasthttp forward proxy

      Go 23 3

    4. pions-examplespions-examplesPublic

      Golang webrtc examples (audio only)

      Go 17 8

    5. wagyuwagyuPublic

      Forked from howardwu/wagyu

      [FORK] Support tron network(TRX) wallet creation

      Rust

    6. awesome-micropython-libawesome-micropython-libPublic

      Awesome MicroPython libs

      Python 39 10