Changing PNG to WebP and MP4 to newer codecs barely changes the feeling of the modern web.
Everything is still heavy, bloated, autoplaying, and endlessly loading.
The problem was never only the file format.
Stop the madness!!!!!!!
Changing PNG to WebP and MP4 to newer codecs barely changes the feeling of the modern web.
Everything is still heavy, bloated, autoplaying, and endlessly loading.
The problem was never only the file format.
Stop the madness!!!!!!!

tail -n +1 *.jsfound more interesting things about Go lang, so ๐ why not start boiling my brain hard.
Same loop โ tiny CMS practice with an open tiny community style.
“Stay hungry, stay foolishโย – Steve Jobs
Success Log
Todo
firefox drama!
cmd := exec.Command("/usr/bin/ffmpeg",
"-y",
"-i", temp,
// LIMIT DURATION
"-t", "4.0",
// VIDEO SIZE (stable + no distortion)
"-vf", "scale=720:720:force_original_aspect_ratio=increase,crop=720:720",
// VIDEO ENCODING (balanced)
"-c:v", "libx264",
"-profile:v", "baseline",
"-level", "3.1",
"-crf", "23",
"-preset", "fast", // โก better than medium for server load
// KEYFRAMES (CRITICAL for Firefox + scrolling)
"-g", "30",
"-keyint_min", "30",
"-sc_threshold", "0",
// PIXEL FORMAT (browser compatibility)
"-pix_fmt", "yuv420p",
// AUDIO (light + stable)
"-c:a", "aac",
"-b:a", "64k",
"-ac", "2",
// FAST START (important for streaming feel)
"-movflags", "+faststart",
fPath,
)GOLD-backup-2026-04-23-1606.tar.gz

A frustrating morning with madenp.com (Three.js and the CMS) had my head goingย ring-a-ring oโ roses. Then, somehow, a spam email made me happy, which helped me get over the frustration ๐
After 5 days of digging, I finally stopped my madness over the text editorโdragging, cloning, sorting, blah blah blahโand got back to the core part.
Three.js cross-origin โRussian dollโ effect at the end.
server {
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
root /var/www/html;
index index.php index.html;
server_name tikme.space *.tikme.space;
ssl_certificate /etc/letsencrypt/live/tikme.space/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/tikme.space/privkey.pem;
set $subdomain "";
if ($host ~* ^([a-z0-9-]+)\.tikme\.space$) {
set $subdomain $1;
}
location /template/ {
alias /var/www/html/templates/;
expires 30d;
add_header Cache-Control "public, immutable";
add_header Access-Control-Allow-Origin "*";
}
location / {
try_files /sites/$subdomain$uri $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
}
location ~ \.sqlite$ { deny all; }
location ~ /\.ht { deny all; }
}