This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* forEach | |
*/ | |
// forEach is very simlar to for-looping arr.length | |
// array.forEach(callback, context) | |
var arr = ['apple', 'orange', 'watermelon', 10, 20, 30] | |
arr.forEach((value, index) => console.log(`Element's ${index} type is ${typeof value}`)) | |
// Prints: | |
// Element 0 type is string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Higher Order Component (HOC) : A component that renders another component | |
// Goal: Reduce code, render hijacking, prop manipulation, abstract state | |
// Inspired by mead.io videos on Udemy | |
import React from 'react' | |
import reactDOM from 'react-dom' | |
const info = (props) => ( | |
<div> | |
<h1>Hello { props.isAdmin ? 'admin' : 'guest' }</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Object Destructuring | |
*/ | |
const book = { | |
title: 'ReWork', | |
author: 'Some guy', | |
publisher: { | |
name: 'Penguin' | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import oauth2 as oauth | |
import json | |
CONSUMER_KEY = "yT577ApRtZw51q4NPMPPOQ" | |
CONSUMER_SECRET = "3neq3XqN5fO3obqwZoajavGFCUrC42ZfbrLXy5sCv8" | |
ACCESS_KEY = "" | |
ACCESS_SECRET = "" | |
consumer = oauth.Consumer(key=CONSUMER_KEY, secret=CONSUMER_SECRET) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hasDuplicates(numbers) { | |
let memo = {}; | |
let count = 0; | |
numbers.map(number => { | |
if (!memo[number]) { | |
memo[number] = 1; | |
} else { | |
count++; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function anagram(first, second) { | |
let one = [...first]; | |
let two = [...second]; | |
let temp = {} | |
const len = one.length === two.length; | |
if (len) { | |
temp = one.reduce(function (letters, letter) { | |
if (letter in letters) { | |
letters[letter]++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Animal { | |
constructor(name, energy) { | |
this.name = name | |
this.energy = energy | |
} | |
eat(amount) { | |
console.log(`${this.name} is eating.`) | |
this.energy += amount | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Animal { | |
constructor(name, energy) { | |
this.name = name | |
this.energy = energy | |
} | |
eat(amount) { | |
console.log(`${this.name} is eating.`) | |
this.energy += amount | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Taken from http://stackoverflow.com/questions/5867534/how-to-save-canvas-data-to-file/5971674#5971674 | |
*/ | |
var fs = require('fs'); | |
// string generated by canvas.toDataURL() | |
var img = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0" | |
+ "NAAAAKElEQVQ4jWNgYGD4Twzu6FhFFGYYNXDUwGFpIAk2E4dHDRw1cDgaCAASFOffhEIO" | |
+ "3gAAAABJRU5ErkJggg=="; | |
// strip off the data: url prefix to get just the base64-encoded bytes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.get("/my-view", async (req, res) => { | |
res.send(render("my-view", {data: await db.getData()})) | |
}) | |
function render(view, ctx = {}) { | |
return _.template(fs.readFileSync(`./views/${view}.html`))(ctx) | |
} |