Skip to content

Instantly share code, notes, and snippets.

View cwarden's full-sized avatar

Christian G. Warden cwarden

View GitHub Profile
@sebmarkbage
sebmarkbage / react-terminology.md
Last active January 11, 2026 02:45
React (Virtual) DOM Terminology
@HenrikJoreteg
HenrikJoreteg / README.md
Last active September 20, 2021 01:36
Minimalist routing in Redux

Why would you want to do this? Because you often don't need more. It's nice to not have to think about your "router" as this big special thing.

Instead, with this approch, your app's current pathname is just another piece of state, just like anything else.

This also means that when doing server-side rendering of a redux app, you can just do:

var app = require('your/redux/app')
var React = require('react')
@wasamasa
wasamasa / lowdown-fenced-code-block.scm
Last active November 5, 2021 19:11
Fenced code block extension for lowdown
(module lowdown-fenced-code-block
(fenced-code-block
enable-lowdown-fenced-code-blocks!)
(import scheme)
(import (chicken base))
(import (chicken string))
(import (srfi 13))