Keybase proof
I hereby claim:
- I am itsmeimtom on github.
- I am itsmeimtom (https://keybase.io/itsmeimtom) on keybase.
- I have a public key ASDJYtjMiIbsxeOBtDxAK2ku5kw3NL7Z0U1S9g_Zk-1vZwo
To claim this, I am signing this object:
size = 10 | |
s = size | |
for i in range(0,size): | |
spaces = " "*i | |
stars = "*"*s | |
print(f'{spaces}{stars}') | |
s = s - 1 |
document.querySelectorAll('.advanced-notification-settings-toggle .tw-toggle__input').forEach( | |
e => { if(e.hasAttribute('checked')) e.click() }) |
I hereby claim:
To claim this, I am signing this object:
import os | |
import subprocess | |
import json | |
import re | |
from datetime import datetime | |
def dothings(folder): | |
listing = list() | |
# folder = f"Photos from {folder}" | |
# print(folder) |
def roundtotens(n): | |
n = int(n) | |
# ty https://stackoverflow.com/a/26454686 xoxo | |
return int((n + 9) // 10 * 10) | |
def percent_bar(percent): | |
hashCount = 0 | |
hashes = "" | |
dashes = "" |
function addTask(t, hseconds) { | |
window.setTimeout(function() { | |
document.querySelectorAll('ul.items .item_editor_input .public-DraftEditor-content span')[0].innerText = t; | |
document.querySelectorAll('ul.items .item_editor_submit')[0].click(); | |
}, hseconds * 500); | |
} | |
let i = 0; | |
for (task of tasks) { | |
addTask(task, i); |
import os, time | |
import morse_talk as mtalk | |
dotLen = 0.08 | |
print('Keyboard Lock LED Morse Code') | |
code = raw_input('Morse Code: ') | |
codeSplit = list(code) |
let sa = window.setInterval(function() { | |
window.scrollBy(0, 350); | |
for (e of document.querySelectorAll('.header-selector:not(.header-selector-selected)')) { | |
e.click(); | |
} | |
}, 300) |
import codecs | |
print('### Welcome to PassNot ###\n') | |
key=raw_input('Enter a key to use:\n') | |
service=raw_input('\nEnter the service you wish to create a password for:\n') | |
print('\nYour password for ' + service + ' is:') | |
print(key + codecs.encode(service, 'rot_13') + '\n\n') |