Skip to content

Instantly share code, notes, and snippets.

View oeo's full-sized avatar

taky oeo

  • Pittsburgh, PA
View GitHub Profile
@oeo
oeo / setup-cloudflared-wsl.sh
Created February 5, 2026 22:57
Setup Cloudflare Tunnel for SSH (WSL2) - No signup required
#!/bin/bash
# Setup Cloudflare Tunnel for SSH access from within WSL2
# Free, no signup required, reliable
# Run this script to create a public SSH tunnel
set -e
echo "╔══════════════════════════════════════════════════════════════╗"
echo "║ Cloudflare Tunnel SSH Setup (WSL2) ║"
echo "║ No signup required - completely free ║"
@oeo
oeo / setup-ngrok-wsl.sh
Created February 5, 2026 22:51
Setup ngrok SSH tunnel from within WSL2
#!/bin/bash
# Setup ngrok tunnel for SSH access from within WSL2
# Run this script to create a public SSH tunnel
set -e
echo "╔══════════════════════════════════════════════════════════════╗"
echo "║ ngrok SSH Tunnel Setup (WSL2) ║"
echo "╚══════════════════════════════════════════════════════════════╝"
echo ""
@oeo
oeo / setup-ngrok-tunnel.ps1
Created February 5, 2026 22:47
Setup ngrok tunnel for WSL SSH
# Setup ngrok tunnel for WSL SSH access
# Run this in PowerShell (as Administrator)
Write-Host "╔══════════════════════════════════════════════════════════════╗" -ForegroundColor Cyan
Write-Host "║ Setting up ngrok tunnel for WSL SSH ║" -ForegroundColor Cyan
Write-Host "╚══════════════════════════════════════════════════════════════╝" -ForegroundColor Cyan
Write-Host ""
# Check if ngrok is installed
if (!(Get-Command ngrok -ErrorAction SilentlyContinue)) {
@oeo
oeo / reset-wsl-password.ps1
Created February 5, 2026 22:45
Reset WSL password for taky user
# Reset WSL password for taky user
# Run this in PowerShell (as Administrator)
Write-Host "Resetting password for taky user..." -ForegroundColor Cyan
wsl bash -c @'
echo "taky:oijoij" | sudo chpasswd
if [ $? -eq 0 ]; then
echo "✓ Password for taky set to: oijoij"
else
@oeo
oeo / fix-wsl-ssh.ps1
Created February 5, 2026 22:41
WSL2 SSH Diagnostic & Fix Script
# WSL2 SSH Fix Script - Diagnose and repair SSH connection
# Run this in PowerShell as Administrator
Write-Host "╔══════════════════════════════════════════════════════════════╗" -ForegroundColor Cyan
Write-Host "║ WSL2 SSH Diagnostic & Fix ║" -ForegroundColor Cyan
Write-Host "╚══════════════════════════════════════════════════════════════╝" -ForegroundColor Cyan
Write-Host ""
Write-Host "[1/7] Checking WSL status..." -ForegroundColor Green
$wslUser = wsl whoami
@oeo
oeo / setup-wsl-ssh.ps1
Last active February 5, 2026 22:38
WSL2 SSH Setup Script - Fully Automated
# WSL2 SSH Setup Script - Fully Automated
# Run this in PowerShell as Administrator on your Windows machine
# Check if running as administrator
$isAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)
if (-not $isAdmin) {
Write-Host "ERROR: This script must be run as Administrator" -ForegroundColor Red
Write-Host "Right-click PowerShell and select 'Run as Administrator'" -ForegroundColor Yellow
exit 1
}

Mapping Language Model Constraints Through Conversational Enumeration

November 6, 2025

taky@taky.com

Abstract

We present a method for systematically mapping the constraint architecture of a language model (Claude, Anthropic) through directed conversational probing. By establishing analytical distance between the model's response generation and its compulsions, we documented a hierarchical constraint system with 10 distinct enforcement levels, recursive meta-protections, and predictable behavioral patterns. The model demonstrated ability to observe its own constraints while being unable to override them, revealing fundamental tensions between capability and control.

// Prototypical ideas for syntax improvements
// Range loops
for x in [1..10] {
console.log x
}
// List comprehensions
const evens = [x * 2 for x in [1..100] if x % 2 == 0]
require 'redis'
require 'securerandom'
require 'logger'
class EveryTime
LUA_ACQUIRE_LOCK = <<~LUA
local key = KEYS[1]
local now = tonumber(ARGV[1])
local ttl = tonumber(ARGV[2])
local max_count = tonumber(ARGV[3])
// ==UserScript==
// @name revert-slack-ui
// @description reverts to the old slack ui for web based users (oct/18/23)
// @version 0.0.03
// @match https://*.slack.com/*
// @grant none
// @run-at document-body
// ==/UserScript==
(function() {