Skip to content

Instantly share code, notes, and snippets.

View Fuwn's full-sized avatar
💖
Forcing gradient descent to larp intelligence

Fuwn Fuwn

💖
Forcing gradient descent to larp intelligence
View GitHub Profile
@Fuwn
Fuwn / README.md
Last active August 14, 2026 20:25
Windows XP All Editions Universal Product Keys Collection

Windows XP Logo

Although Microsoft no longer supports Windows XP updates, I'm sure many users still use it due to personal habits or job demands. Therefore, XP's product keys may still be necessary. Here lies the most comprehensive list of Windows XP product keys.

The following CD keys are official and original from Microsoft, primarily used for Windows XP Professional Service Pack 2/3 VOL/VLK system images, which are among the easiest to find on the Internet.

Windows XP Setup

Windows XP Professional 32-bit Edition

@Fuwn
Fuwn / force-install-steam.bat
Last active August 5, 2026 11:29
A simple Batch script to force install Steam without administrator permissions on Windows
cmd /min /C "set __COMPAT_LAYER=RUNASINVOKER && start "" "SteamSetup.exe"
@Fuwn
Fuwn / Animated-Favicon.js
Last active July 31, 2026 20:14
A simple way to use a .gif as a favicon.
// Before attempting, use https://gifmaker.me/exploder/ to cut .gif into each frame.
var favicon_images = [
'http://website.com/img/tmp-0.gif',
'http://website.com/img/tmp-1.gif',
'http://website.com/img/tmp-2.gif',
'http://website.com/img/tmp-3.gif',
'http://website.com/img/tmp-4.gif',
'http://website.com/img/tmp-5.gif',
'http://website.com/img/tmp-6.gif'
@Fuwn
Fuwn / claude-hide.user.js
Created February 1, 2026 07:40
Hide project chats in Claude's sidebar. Starred chats remain visible. (Inspired by vmotta8/claude-hide)
// ==UserScript==
// @name Claude Hide Project Chats
// @namespace fuwn-claude-hide
// @version 1.0.0
// @description Hide project chats in Claude's sidebar. Starred chats remain visible.
// @author Fuwn
// @match https://claude.ai/*
// @run-at document-start
// @license GPL-3.0-only
// ==/UserScript==
@Fuwn
Fuwn / WPLSIL.md
Last active October 29, 2025 16:00
What programming language should I learn?

In my opinion, it depends on your goal.

Lets broaden the field.

  • Learning from scratch :
    • Scenario 1
    • Q-: If your dad asked you what you want for your birthday, and you chose a car, which transmission would you choose?
      • A1: Manual → Go for C.
      • A2: Auto → Go for Java.
  • A3: My dad would never get me a car. (Practical thinking for 98.99% reader) → Python is for you.
@Fuwn
Fuwn / List-External-Services.ps1
Last active September 2, 2025 17:12
A PowerShell script to list external services that have been installed separately from the base Windows experience. I.e., user-installed services.
foreach ($service in Get-Service | ForEach-Object { $_.Name }) {
$path = Get-ItemProperty -Path Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\$service | ForEach-Object { $_.ImagePath }
# Change this as you see fit, but it should catch most externally installed services.
if ($path -like "*C:\Windows*") {
continue
}
"{0}: {1}" -f $service, $path | Write-Output
}
@Fuwn
Fuwn / rustfmt.toml
Created May 5, 2023 05:16
My current `rustfmt.toml`
edition = "2021"
enum_discrim_align_threshold = 40
error_on_line_overflow = true
error_on_unformatted = true
fn_single_line = true
format_code_in_doc_comments = true
format_macro_matchers = true
format_strings = true
inline_attribute_width = 80
match_arm_blocks = false
@Fuwn
Fuwn / Memory.h
Last active September 26, 2022 20:07
CSGO Memory Addressing
#pragma once
#include <Windows.h>
#include <TlHelp32.h>
#include <iostream>
class MemoryManager {
private:
DWORD dwPID; // CS:GO process ID
User-agent: *
Disallow: /x
Disallow: /proxy
User-agent: DataForSeoBot
Disallow: /x
Disallow: /proxy
@Fuwn
Fuwn / image-to-bmp3.sh
Created January 14, 2022 06:54
Image to BMP3 Converter for Worlds
# Check if a filename was supplied
if ! test -n "${1}";
then
echo "bmp-to-bmp3.sh <file.bmp>"
exit 1
fi
# Check if ImageMagick is installed
if ! command -v mogrify &> /dev/null;
then