A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.
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
require './site' | |
run Sinatra::Application |
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
// Original code by Homer Chen | |
// https://github.com/homerchen19/use-undo | |
// Same as original but using useState instead of useReducer | |
import { useState, useCallback } from 'react'; | |
const initialState = { | |
past: [], | |
present: null, |
A hopefully helpful guide to getting a basic setup on your mac for JS and React Native development.
Note: This is a work in progress, I'll keep adding/updating
- Homebrew - We'll need this to install other things below
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- https://brew.sh/
- Git
OlderNewer