Skip to content

Instantly share code, notes, and snippets.

View rjindael's full-sized avatar

rj rjindael

View GitHub Profile
@rjindael
rjindael / win95keys.py
Last active June 4, 2020 19:13
Generates Windows 95 OEM and CD keys. Based off of https://www.youtube.com/watch?v=3DCEeASKNDk
import random
years = ["95", "96", "97", "98", "99", "00", "01", "02", "03"]
def divisible_random(min, max, divisor):
result = random.randint(min, max)
while result % divisor != 0:
result = random.randint(min, max)
return result
@rjindael
rjindael / app.js
Last active October 14, 2020 15:51
ThumbnailGenerator
// ThumbnailGenerator
// Carrot
const express = require("express")
const bodyParser = require("body-parser")
const fs = require("fs")
const app = express()
const port = process.env.PORT || 3000
@rjindael
rjindael / script.lua
Created March 29, 2020 22:23
Dex Explorer v2 (via wearedevs.net)
CreateGui = function()
local NewGuiPart1 = Instance.new("ScreenGui")
local NewGuiPart2 = Instance.new("Frame")
local NewGuiPart3 = Instance.new("Frame")
local NewGuiPart4 = Instance.new("TextLabel")
local NewGuiPart5 = Instance.new("TextBox")
local NewGuiPart6 = Instance.new("Frame")
local NewGuiPart7 = Instance.new("Frame")
local NewGuiPart8 = Instance.new("TextButton")
local NewGuiPart9 = Instance.new("TextLabel")