Skip to content

Instantly share code, notes, and snippets.

@simkin
simkin / Test_Video_Generator.py
Last active February 24, 2026 17:08
Generates test videos covering DSE, vertical banding, black/red smearing, ghosting/overshoot, local dimming behavior, etc.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Panel Test Orchestrator — Final V4.1
Goal: DSE, vertical banding, black/red smearing, ghosting/overshoot, local dimming behavior, etc.
Key properties
- 4K UHD fixed: 3840x2160
- 60 or 120 fps
import os
import requests
import argparse
import json
from datetime import datetime, timedelta
from plexapi.server import PlexServer
import urllib3
from urllib3.exceptions import InsecureRequestWarning
# Suppress the InsecureRequestWarning
@simkin
simkin / FixSSH.ps1
Last active January 13, 2026 17:51
Fix issues with persistent SSH key password propmt
# Run this script as Administrator
# 1. Setup variables
$userName = $env:USERNAME
$sshPath = "$env:USERPROFILE\.ssh"
$configFile = "$sshPath\config"
Write-Host "Starting SSH environment repair for $userName..." -ForegroundColor Cyan
# 2. Fix ssh-agent service status