Skip to content

Instantly share code, notes, and snippets.

View techguy16's full-sized avatar
🐧
Doing things.

techguy16 techguy16

🐧
Doing things.
  • South Island, New Zealand
  • 18:23 (UTC +12:00)
  • YouTube @techguy16
View GitHub Profile
@Orangera1n
Orangera1n / Windows build repo.md
Last active April 22, 2025 02:49
Orangera1n's Windows Build Repo

Notice:

This project is being formally deprecated (informally, it was a while ago) as of today due to various factors:

  • builds being corrupted, likely due to rclone vfs cache mounts messing with them, and due to the nature of onedrive, there being no way to collect hashes in bulk without ugly hacks
  • me being busy and lack of time to work on this often
  • onedrive being a pain to download from
  • having to split shit accorss many accounts, making management painful
  • less control
  • me getting a new ISP thats fast enough for hosting this on a proper server (with dedup) (about that: join here for updates: https://discord.gg/rFNeu7ZyQ2)
@techguy16
techguy16 / README.md
Last active March 26, 2024 17:34
Windows XP VLK Key Generation in many Languages

XP VLK Key Generator in different programming languages

Available

  • Python
  • HTML + JS
  • C

THIS IS FOR EDUCARIONAL USE ONLY. I WILL NOT BE HELD RESPONSIBLE FOR ANY UNSOLICITED USE OF THIS CODE

@WitherOrNot
WitherOrNot / winxp_act.ipynb
Created June 2, 2023 07:25
All the code you need to activate Windows XP w/o WPA bypasses
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@techguy16
techguy16 / README.md
Last active March 29, 2025 06:53
Get Minecraft Education running on Ubuntu Linux!

Minecraft Education on Ubuntu Linux

Currently, there are 2 ways you can accomplish this task:

  • Waydroid (preferred method)
  • Wine

If you found this gist useful, remember to share it with others!

@AllThingsSmitty
AllThingsSmitty / rainbow.css
Created January 17, 2016 15:21
Animated background color shift
/* based on dbox.us */
body {
background: linear-gradient(238deg, #fd8800, #fd008f, #9700fd, #003dfd, #05c7e6, #4bd58d);
background-size: 1200% 1200%;
-webkit-animation: rainbow 30s ease infinite;
animation: rainbow 30s ease infinite;
}
@-webkit-keyframes rainbow {
0% { background-position: 0% 50% }
50% { background-position: 100% 50% }