Skip to content

Instantly share code, notes, and snippets.

View primaryobjects's full-sized avatar

Kory Becker primaryobjects

View GitHub Profile
@primaryobjects
primaryobjects / win11-tweaks-all.reg
Created May 24, 2026 17:32
Windows 11 tweaks to look more like Windows 10
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"TaskbarSmallIcons"=dword:00000001
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}]
@=""
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32]
@=""
@primaryobjects
primaryobjects / HideWatermarkMonitor.ps1
Last active May 25, 2026 17:19
Hide Windows Activation watermark on the desktop in Windows 10/11.
Add-Type @"
using System;
using System.Runtime.InteropServices;
public class WSBWin32 {
[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]
public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
@primaryobjects
primaryobjects / open-with-sublime-text.bat
Created May 17, 2026 17:18
Add "Open with Sublime Text" to the Windows 10/11 Context Menu Right-Click
@echo off
SET "stPath=C:\Program Files\Sublime Text\sublime_text.exe"
rem Add it for all file types
reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /ve /d "Open with Sublime Text" /f
reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /v Icon /t REG_EXPAND_SZ /d "%stPath%,0" /f
reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text\command" /ve /d "\"%stPath%\" \"%%1\"" /f
rem Add it for folders
reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" /ve /d "Open with Sublime Text" /f
@primaryobjects
primaryobjects / tplink-archer-tx20u-plus.md
Last active May 8, 2026 03:33
How to install TP-Link Archer TX20U Plus USB Wifi Adapter on Linux Minut
@primaryobjects
primaryobjects / screenshot.lua
Created February 24, 2026 03:58
FCEUX script to automatically capture screenshots from Nintendo (nes) roms
-- Download https://fceux.com/web/download.html
-- FCEUX 2.6.6 Qt/SDL win64 Binary
-- Usage:
-- .\qfceux.exe 1942.nes --loadlua ../luascripts/capture.lua
local frame = 0
local count = 0
while count <= 3 do
frame = frame + 1
@primaryobjects
primaryobjects / openclaw.json
Created February 7, 2026 18:33
OpenClaw configuration file openclaw.json for clawdbot / moltbot.
{
"meta": {
"lastTouchedVersion": "2026.2.3-1",
"lastTouchedAt": "2026-02-07T18:20:24.416Z"
},
"env": {
"OPENROUTER_API_KEY": "sk-or-v1-PLACEHOLDER"
},
"wizard": {
"lastRunAt": "2026-02-07T01:25:45.128Z",
@primaryobjects
primaryobjects / cardano-crawl.ipynb
Last active January 31, 2026 18:44
Cardano Crawl - A Jupyter notebook to search metadata on the blockchain using interesting common keys.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@primaryobjects
primaryobjects / hello-world.ipynb
Created January 29, 2026 21:50
Save a message on the Cardano blockchain example using Python.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@primaryobjects
primaryobjects / game.js
Created January 18, 2026 23:31
Isometric Maze Walker 2D/3D Game
// Game variables
let scene, camera, renderer, player, coins = [], walls = [], score = 0;
const coinSound = new Audio('assets/coin-sound.wav');
const keys = {};
const textureLoader = new THREE.TextureLoader();
let snowflakes = [];
let controls;
let ground; // Reference to the ground plane
let groundTexture1, groundTexture2; // Global texture references
let playerInitialized = false;
@primaryobjects
primaryobjects / readme.md
Last active January 11, 2026 23:00
Copilot Alternatives for VSCode

GitHub Copilot Alternatives for VSCode

1/10/2026

  • GitHub copilot with Claude Opus 4.5 is best for paid enterprise plans.
  • Copilot with GPT 5 mini next best free, but rate limits.
  • VSCode extension Continue with openrouter and model Grok 4.1 Fast next best as replacement for Copilot but costs $0.10/day and limited to trial of $1 before paying.
  • VSCode extension Continue with openrouter and free model (Devstral 2 2512, Qwen3 Coder 480B A35B, gpt-oss-120b) may be next best.
  • VSCode extension Continue with Ollama service running locally and llama-3.3-70b or codellama is not very good but free for local.