Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<style>
* {
margin: 0;
}
body {
@izaakrogan
izaakrogan / gist:1f29095612fda218ae3243f44feb94e4
Created May 24, 2016 10:18 — forked from mikestone14/gist:11198630
Getting a GoDaddy domain to point to a Heroku app.

How Do I Into Git?

a helpful primer for users sick of git's poorly-named commands

I've used Git since 2011, and this is the stuff that I've always had to Google to remember. I hope it helps you not hate Git so much.

Learning About the Repo

Learning About History

Virtual DOM and diffing algorithm

There was a [great article][1] about how react implements it's virtual DOM. There are some really interesting ideas in there but they are deeply buried in the implementation of the React framework.

However, it's possible to implement just the virtual DOM and diff algorithm on it's own as a set of independent modules.