Skip to content

Instantly share code, notes, and snippets.

View jkwok91's full-sized avatar

JESSICA jkwok91

View GitHub Profile
@jkwok91
jkwok91 / hack_club_curriculum_engineer.md
Last active February 5, 2016 08:06
HackLub is hiring a full-time curriculum engineer

Want to work on open source full-time and bring coding clubs to high schoolers around the world? HackLub is hiring a curriculum engineer to build out our open-source club curriculum.

The ideal candidate is actively involved in the open source community, has professional experience as an engineer (or the open source equivalent), and is already involved in getting more people coding (whether through hackathons, meetups, or something else).

Comment or shoot me an email at zach@hacklub.com if you're interested :-).

@jkwok91
jkwok91 / barrier.js
Last active August 29, 2015 14:03 — forked from nmalkin/barrier.js
this is a thing nathan wrote. here is what i think this means
"use strict";
/*
this is for simulating a 3 second request? response? a thing that takes 3 seconds to respond
*/
function longRunningFunction1(onComplete) {
setTimeout(onComplete, 3000); // it takes a callback function that it will execute after 3 seconds
}
/*