Skip to content

Instantly share code, notes, and snippets.

View stickerboy's full-sized avatar
👨‍💻
Solving puzzles

Kenny stickerboy

👨‍💻
Solving puzzles
View GitHub Profile
@stickerboy
stickerboy / get-win7-productkey.vbs
Last active August 29, 2015 14:26 — forked from eyecatchup/get-win7-productkey.vbs
VBS Script to get the Windows(R) 7 Product Key from a PC's registry.
' VBS Script to get the Windows(R) 7 Product Key from a PC's registry.
'
' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC.
' Now, when you double-click the local script file an alertbox pops up
' displaying the product key stored in the machine's Windows registry.
Set WshShell = WScript.CreateObject("WScript.Shell")
KeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"
MsgBox ExtractKey(WshShell.RegRead(KeyPath))
@stickerboy
stickerboy / hide.twitter.moments.js
Created June 21, 2016 15:36
Hide Twitter Moments
// ==UserScript==
// @id HideMoments
// @name Hide Twitter Moments
// @version 1.0
// @namespace
// @author stckrboy
// @description
// @include https://twitter.com/*
// @run-at document-end
// ==/UserScript==
@stickerboy
stickerboy / regex
Created April 30, 2018 10:43
Regex Replace HTML parameters
^( x=")([\d]+)(") (y=")([\d]+)(")$
@stickerboy
stickerboy / halo.support.css
Last active January 14, 2020 23:08
Halo Support CSS
body {
background-color: #f6f6f6;
color: #3e3e3e;
}
a {
color: #1572a4 !important;
}
a:hover {
color: #ffae00 !important;
}