Skip to content

Instantly share code, notes, and snippets.

View jabarihunt's full-sized avatar

Jabari J. Hunt jabarihunt

View GitHub Profile
@jabarihunt
jabarihunt / HeidiDecode.js
Last active September 19, 2019 02:46 — forked from jpatters/HeidiDecode.js
Decodes a password from HeidiSQL. HeidiSQL passwords can be found in the registry. Use File -> Export Settings to dump all settings. Great for if you forget a password.
<!doctype html>
<html>
<head>
<!-- http://www.chasewoodford.com/blog/how-to-recover-a-stored-password-from-heidisql/ -->
<script>
function heidiDecode(hex) {
hex = hex.substr(0, hex.length - 1);
var str = '';
var shift = parseInt(hex.substr(-1));
@jabarihunt
jabarihunt / README-Template.md
Created November 23, 2018 20:12 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites