Skip to content

Instantly share code, notes, and snippets.

View ZoeElizabeth's full-sized avatar

Zoe Elizabeth G ZoeElizabeth

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
</head>
@ZoeElizabeth
ZoeElizabeth / password.js
Created September 25, 2018 01:37
password.js
var input = process.argv[2]
function obfuscate(input) {
var password = "";
for (var i = 0; i < input.length; i++) {
if (input[i] === "a") {
password += "4";