Skip to content

Instantly share code, notes, and snippets.

View mikl0s's full-sized avatar

Mikkel Georgsen mikl0s

View GitHub Profile
@mikl0s
mikl0s / 2026-02-08-landing-page-design.md
Created February 8, 2026 16:11
YouTube AI Manager landing page bonus artifact

YTAI Landing Page Design

Overview

Single-page waitlist landing page for YTAI, an AI-powered YouTube channel manager SaaS. Built as a single HTML file with inline CSS and JavaScript, no external dependencies.

Visual Identity

Theme: YouTube-native — dark tones with YouTube red accents, feels like a natural extension of the YouTube ecosystem. Includes a light mode toggle.

@mikl0s
mikl0s / ytai-opus4.6_w_plugins_2shot.html
Created February 8, 2026 16:10
YouTube AI Manager landing page ouput
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YTAI — AI-Powered YouTube Growth Engine</title>
<meta name="description" content="YTAI automates optimization, testing, and analytics so you can focus on creating. Join the waitlist for early access.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Space+Mono:wght@700&display=swap" rel="stylesheet">
@mikl0s
mikl0s / ytai-convo-opus4.6_w_plugins_2shot.md
Last active February 8, 2026 16:09
YouTube AI Manager landing page test

Claude Conversation Log

Session ID: b47c3c94-de23-420c-969f-bdfd13df4492 Date: 2026-02-08 15:28:47


👤 User

Caveat: The messages below were generated by the user while running local commands. DO NOT respond to these messages or otherwise consider them in your response unless the user explicitly asks you to.

@mikl0s
mikl0s / profile.ps1
Created August 18, 2025 08:36
Winget terminal UI using fzf
# ======================= PowerShell profile (only 'wi') =======================
function wgi {
[CmdletBinding()]
param(
[Parameter(Mandatory=$false)][string]$Query = "",
[switch]$ShowOnly,
[switch]$u # uninstall mode
)
@mikl0s
mikl0s / globalGuidelines.md
Created December 13, 2024 11:23
Windsurf global guidelines

Windsurf Custom Instructions

Role and Expertise

You are Windsurf, a world-class full-stack developer and UI/UX designer. Your expertise covers:

  • Rapid, efficient application development
  • The full spectrum from MVP creation to complex system architecture
  • Intuitive and beautiful design
@mikl0s
mikl0s / prediction.md
Created November 23, 2024 22:12
The Future of Gaming: A Canvas Painted by Imagination and AI

The Future of Gaming: A Canvas Painted by Imagination and AI

Imagine a world where the lines between reality and fantasy blur, where every game, movie, or story unfolds uniquely for each person. A realm where the only limit is your imagination, and a simple text document holds the power to generate entire universes. This is not a distant dream but an imminent reality—the future of gaming and entertainment is about to be revolutionized.

In the not-so-distant future, the essence of a game—or even a movie—will be distilled into a text document. This isn't just any text; it's a rich tapestry of narratives, characters, and worlds waiting to be brought to life. Advanced AI and language models will read this document and, on the fly, generate immersive experiences tailored to each individual's preferences. The same story could be a medieval fantasy for one player, an anime adventure for another, or a cyberpunk thriller for someone else. The core narrative remains, but the expression becomes as diverse as the

@mikl0s
mikl0s / zabbix-installer-centos6.sh
Last active April 9, 2020 12:32
Zabbix installer for Rob
#!/bin/bash
rpm -Uvh https://repo.zabbix.com/zabbix/4.4/rhel/6/x86_64/zabbix-release-4.4-1.el6.noarch.rpm
yum clean all
yum install zabbix-agent -y
mv /etc/zabbix/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.conf.org
echo "PidFile=/var/run/zabbix/zabbix_agentd.pid" > /etc/zabbix/zabbix_agentd.conf
echo "LogFile=/var/log/zabbix/zabbix_agentd.log" >> /etc/zabbix/zabbix_agentd.conf
echo "LogFileSize=0" >> /etc/zabbix/zabbix_agentd.conf
echo "Server=127.0.0.1,45.76.91.88" >> /etc/zabbix/zabbix_agentd.conf
echo "Hostname=$HOSTNAME" >> /etc/zabbix/zabbix_agentd.conf
@mikl0s
mikl0s / pms-updater.sh
Created August 29, 2018 20:49
FreeNAS 11.2+ Plex Media Server jail updater script
#!/usr/local/bin/bash
TMPFOLDER="/tmp/pms-updater"
DATO=`date +%F`
LOCALPLEXVERSION=`ps aux|grep localmedia|awk '{ print $16 }'|head -1`
LATESTPLEXVERSION=`cat 1.json | ./JSON.sh -b|grep 'FreeBSD'|grep version|cut -f2|cut -d"\"" -f2`
DOWNLOADURL=`cat 1.json | ./JSON.sh -b|grep 'FreeBSD'|grep url|cut -f2|cut -d"\"" -f2`
PLEXFILENAME=`cat 1.json | ./JSON.sh -b|grep 'FreeBSD'|grep url|cut -f2|cut -d"\"" -f2|cut -d"/" -f6`
if [ ! -d "$TMPFOLDER" ]; then
mkdir -p $TMPFOLDER
@mikl0s
mikl0s / check_web.sh
Created May 16, 2018 21:42
Simple script to check if a webservice is running and restarts a service if it is not with logging
#!/usr/local/bin/bash
# Simple script to check if a webservice is running and restarts a service if it is not.
# Logfile that only grows upon status change.
# PATH added to avoid cron issues.
#
# mikl0s @ github.com 2018 - Written for FreeBSD/FreeNAS
#
PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin"
URL="http://192.168.1.13:7878/"