Skip to content

Instantly share code, notes, and snippets.

@Rablidad
Rablidad / windows-keys.md
Created October 8, 2025 16:26 — forked from rvrsh3ll/windows-keys.md
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

@Rablidad
Rablidad / runscript.c
Created June 1, 2025 07:15 — forked from odzhan/runscript.c
In-memory execution of VBScript, JavaScript or JScript
/**
BSD 3-Clause License
Copyright (c) 2019, Odzhan. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
@Rablidad
Rablidad / validation-cpf.ts
Created May 11, 2024 14:57 — forked from joaohcrangel/validation-cpf.ts
Função para validar CPF em TypeScript
function isValidCPF(value: string) {
if (typeof value !== 'string') {
return false;
}
value = value.replace(/[^\d]+/g, '');
if (value.length !== 11 || !!value.match(/(\d)\1{10}/)) {
return false;
}
@Rablidad
Rablidad / ida_mc_notes.md
Created October 6, 2023 02:04 — forked from icecr4ck/ida_mc_notes.md
Some notes about the IDA Microcode (intermediate language).
Home/Core TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
Home/Core (Country Specific) PVMJN-6DFY6-9CCP6-7BKTT-D3WVR
Home/Core (Single Language) 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH
Home/Core N 3KHY7-WNT83-DGQKR-F7HPR-844BM
Professional W269N-WFGWX-YVC9B-4J6C9-T83GX
Professional N MH37W-N47XK-V7XM9-C7227-GCQG9
Professional Enterprise
Professional Workstation
Enterprise NPPR9-FWDCX-D2C8J-H872K-2YT43
Enterprise N DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4
@Rablidad
Rablidad / RoguesithGeItem.java
Created August 27, 2022 03:19 — forked from roguesith/RoguesithGeItem.java
Runescape Grand Exchange Item Object
class RoguesithGeItem /* extends GEItem */{
// RoguesithGeItem(String arg0, String arg1, int arg2, double[] arg3) {
// super(arg0, arg1, arg2, arg3);
// // TODO Auto-generated constructor stub
// }
protected int itemId;
protected String name;
protected String description;