Skip to content

Instantly share code, notes, and snippets.

View x3r0s's full-sized avatar
🏠
Working from home

David Kim x3r0s

🏠
Working from home
View GitHub Profile
@x3r0s
x3r0s / reset.css
Created August 3, 2021 16:26
reset.css
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
@x3r0s
x3r0s / BadUSB.ino
Last active November 16, 2021 03:19
Arduino Leonardo Bad USB Sample
#include "Keyboard.h"
void typeKey(int key)
{
Keyboard.press(key);
delay(50);
Keyboard.release(key);
}
/* Init function */