Skip to content

Instantly share code, notes, and snippets.

View diegoconcha's full-sized avatar

Diego diegoconcha

View GitHub Profile
@diegoconcha
diegoconcha / redux_egghead_notes.md
Last active January 18, 2022 13:23
Redux Egghead.io Notes

###Redux Egghead Video Notes###

####Introduction:#### Managing state in an application is critical, and is often done haphazardly. Redux provides a state container for JavaScript applications that will help your applications behave consistently.

Redux is an evolution of the ideas presented by Facebook's Flux, avoiding the complexity found in Flux by looking to how applications are built with the Elm language.

####1st principle of Redux:#### Everything that changes in your application including the data and ui options is contained in a single object called the state tree

@diegoconcha
diegoconcha / index.html
Created March 22, 2015 00:30
WorkPop Coding Challenge: Fair Shuffler (http://jsbin.com/wahefa/25/edit)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
/**