Skip to content

Instantly share code, notes, and snippets.

@HUMENTH
HUMENTH / Activate_Windows_11_Pro_free.md
Last active January 30, 2026 17:37
Activate Windows 11 Pro free

An guide how to activate Windows 11 Pro for free

Why?

Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet

Am i also able to switch from any other edition to Pro?

The answer is yes! You can switch from almost any edition to Pro completely for free!

Note for users with unactivated Pro edition

People which already have Pro, but not activated, can skip to this step.

Getting started

What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:

@sinceohsix
sinceohsix / Installing LiveContainer+Sidestore.md
Last active January 30, 2026 17:37
Installing LiveContainer+SideStore from start to finish.

✴️ How to sideload with SideStore and LiveContainer

Last Edited: Dec 21, 2025 @ 6:34PM PST · Supports iOS versions 15.0 - 26.3 Beta

Make sure you are always using up-to-date guides to ensure full compatibility. The official SideStore documentation can be found here in case anything changes. For additional information and credits, scroll to the bottom of this page.


👋 Hello again, r/sideloaded!

This is version 2.0 of my iOS sideloading guide. By the end of this guide, you will be able to:

  • Sideload apps using SideStore
@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@oneamitj
oneamitj / Activate_Windows_8_8.1_10_and_11_Pro_for_Free.md
Created June 19, 2024 15:32
Activate Windows 8, 8.1, 10 and 11 Pro for Free

Activate Windows 8, 8.1, 10 and 11 Pro for Free

A guide how to get and activate Windows 8, 8.1, 10 and 11 Pro for free!

NOTE

If you see the Windows keyboard button in this guide; and you can't find it on your keyboard, you likely have/had Windows 10 which has the button . If you can't find that one, you likely have a PC that has been upgraded to Windows 8/8.1/10/11 from Windows 8.1/8/7/Vista/XP and other ones. If you have one of those, refer the Windows key button to as yours. A list of them is below:

Windows key buttons

- Windows 11

- Windows 10

@prof3ssorSt3v3
prof3ssorSt3v3 / app.js
Created February 24, 2021 18:55
IndexedDB part 5 - loading and using test data
import { uid } from './uid.js';
import { state } from './data.js';
//https://developer.mozilla.org/en-US/docs/Web/API/IDBDatabase
const IDB = (function init() {
let db = null;
let objectStore = null;
let DBOpenReq = indexedDB.open('WhiskeyDB', 2);
@slavafomin
slavafomin / nodejs-custom-es6-errors.md
Last active January 30, 2026 17:29
Custom ES6 errors in Node.js

Here's how you could create custom error classes in Node.js using latest ES6 / ES2015 syntax.

I've tried to make it as lean and unobtrusive as possible.

Defining our own base class for errors

errors/AppError.js

@jamesmacwhite
jamesmacwhite / ffmpeg_mkv_mp4_conversion.md
Last active January 30, 2026 17:29
Easy way to convert MKV to MP4 with ffmpeg

Converting mkv to mp4 with ffmpeg

Essentially just copy the existing video and audio stream as is into a new container, no funny business!

The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.

With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.

These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.

Single file conversion example

@leandro
leandro / sentry-retrieve-all-issue-events.rb
Created January 30, 2026 17:15
Retrieve ALL the Sentry error events for a specific Sentry Issue
#!/usr/bin/env ruby
# -- Usage:
#
# SENTRY_AUTH_TOKEN=api_tokken ./sentry-retrieve-all-issue-events.rb issue_id [full_data, [verbose]]
#
# -- Program arguments:
#
# @issue_id The Sentry issue id number.
#
@maskrosen
maskrosen / raylib_render_extras.h
Created December 10, 2024 10:06
Some extended Raylib rendering functions
/**
raylib-render-extras - Some render functions that avoids extra overhead when rendering multiple instances.
Tested with Raylib 4.2 might work with other versions
See https://youtu.be/2EOjGwhYXds?si=fcJzO1VjbLQ1dzRW&t=319 for a brief explanation of the functions
Copyright (c) 2024 Lingon Studios
The code is derived from Raylib Copyright (c) 2013-2024 Ramon Santamaria (@raysan5)
This software is provided "as-is", without any express or implied warranty. In no event
@Hakky54
Hakky54 / java_keytool_cheat_sheet.md
Last active January 30, 2026 17:22
Keytool Cheat Sheet

Keytool CheatSheet 🔐

Some history

This cheat sheet came into life when I started working on a tutorial of setting up one way tls and two way tls, which can be found here: GitHub - Mutual TLS SSL

Creation and importing

Generate a Java keystore and key pair

keytool -genkeypair -keyalg RSA -keysize 2048 -keystore keystore.jks -alias server -validity 3650