Skip to content

Instantly share code, notes, and snippets.

View avillp's full-sized avatar
:shipit:
ship it

Arnau Villoslada avillp

:shipit:
ship it
View GitHub Profile
// This will open up a prompt for text to send to a console session on digital ocean
// Useful for long passwords
(function () {
var t = prompt("Enter text to be sent to console, (This wont send the enter keystroke)").split("");
function f() {
var character = t.shift();
var i=[];
var code = character.charCodeAt();
var needs_shift = "!@#$%^&*()_+{}:\"<>?~|".indexOf(character) !== -1