Skip to content

Instantly share code, notes, and snippets.

View dengjonathan's full-sized avatar

Jon Deng dengjonathan

View GitHub Profile
@dengjonathan
dengjonathan / Vue.html
Created December 9, 2016 23:54
Vue example by reader @thoragio
<div id="counter">
<button @click="up()">+</button>
<p id="count">{{ value }}</p>
<button @click="down()">-</button>
</div>
<script>
var counter = new Vue({
el: '#counter',
data: {
value: 0
{
"env": {
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParameters": true,
const Server = require('./server.js');
const webpack = require('webpack');
let config;
const port = (process.env.PORT || 8080);
const app = Server.app();
if (process.env.NODE_ENV === 'development') {
const webpackDevMiddleware = require('webpack-dev-middleware');
const webpackHotMiddleware = require('webpack-hot-middleware');
@dengjonathan
dengjonathan / avltree.js
Created January 16, 2017 19:27
Javascript AVL Tree
// AVLTree ///////////////////////////////////////////////////////////////////
// This file is originally from the Concentré XML project (version 0.2.1)
// Licensed under GPL and LGPL
//
// Modified by Jeremy Stephens.
// Pass in the attribute you want to use for comparing
function AVLTree(n, attr) {
this.init(n, attr);
}
@dengjonathan
dengjonathan / naivePromise.js
Created January 27, 2017 16:25
Naive Promise implementation
// creates a promise object which will either resolve or reject
const Promise = function (executor) {
const _thens = [];
let _catch;
const promise = {
then: cb => {
_thens.push(cb);
return promise;
},
@dengjonathan
dengjonathan / naivePromise.js
Last active January 27, 2017 16:43
Naive Promise
// creates a promise object which will either resolve or reject
const Promise = function (executor) {
const _thens = [];
let _catch;
const promise = {
then: cb => {
_thens.push(cb);
return promise;
},
// by Gina Lawrence
you been fighting
scheming, plotting / steady moving
finding a place
here or there /
don't much matter
cause they wont want ya anyway
not then
not now
not / really
@dengjonathan
dengjonathan / ex4.js
Created January 31, 2017 22:32
Sequenced async calls using promises
function fakeAjax(url,cb) {
var fake_responses = {
"file1": "The first text",
"file2": "The middle text",
"file3": "The last text"
};
var randomDelay = (Math.round(Math.random() * 1E4) % 8000) + 1000;
console.log("Requesting: " + url);
@dengjonathan
dengjonathan / jobSearch.js
Created February 5, 2017 16:17
job search knpasack
/*
You have a defined set of activities you can be doing during your job search
process. Each activity has a cost (time that it takes you to complete the activity)
and each activity provides some value (XP, or experience points, that will increase your chances of finding a job).
Write a function that maximizes XP for a given input of time. Try to make your
solution as efficient as possible.
*/
const ACTIVITIES = [
@dengjonathan
dengjonathan / jobSearchLinear.js
Created February 8, 2017 18:09
Job Search Brute Force
const ACTIVITIES = [
{name: 'side-project', time: 10, xp: 12},
{name: 'algorithms', time: 3, xp: 7},
{name: 'networking', time: 1, xp: 0.5},
{name: 'exercise', time: 2, xp: 1.5},
{name: 'systems design', time: 4, xp: 4},
{name: 'making CSS codepens', time: 3, xp: 4}
];
/**