Skip to content

Instantly share code, notes, and snippets.

View leenattress's full-sized avatar
🎯
Generally Smashing It

Lee Nattress leenattress

🎯
Generally Smashing It
View GitHub Profile
@leenattress
leenattress / pico8_vector_test.lua
Last active September 15, 2017 22:57 — forked from anonymous/pico8_vector_test.lua
pico8_vector_test
function _init()
hexchar="0123456789abcdef"
function hex(x)
x=flr(x)+1
return sub(hexchar,x,x)
end
charhex={}
for i=1,16 do
@leenattress
leenattress / command.js
Last active May 13, 2019 20:09 — forked from JamieBuckell/command.js
Login with speed
Cypress.Commands.add('login', (email, password) => {
cy.request({
method: 'POST',
url: 'http://localhost:5000/api/1.0/user/auth?tenant=greatrun&cb=1557776611205',
body: {
emailAddress: email,
password: password,
}
})
.then((resp) => {