Skip to content

Instantly share code, notes, and snippets.

View jack-hermanson's full-sized avatar

Jack Hermanson jack-hermanson

  • Denver
View GitHub Profile

Urbanism Recommendations

Name Notes Video Sample(s)
Not Just Bikes I like all of his videos. The Strong Towns series is very educational. I would recommend going through the whole series. https://www.youtube.com/watch?v=y_SXXTBypIg&list=PLJp5q-R0lZ0_FCUbeVWK6OGLN69ehUTVa&index=2
Yet Another Urbanist Snarky guy that is direct, to the point, and speaks with a nasaly voice. I love all of his videos, but some can be very negative and feel like a bummer. https://www.youtube.com/watch?v=HGjs1iStqmc
Rob Robinson Funny gen-z guy that paints his nails and makes his case very well. Entertaining videos. https://www.youtube.com/watch?v=8m4xzQ2_M0g
Alan Fisher (Armchair Urbanist) Snarky funny guy in Philadelphia. Likes trains. https://www.youtube.com/watch?v=hbp8AesNC3w
Andrewism This isn't an urbanist channel, but some of his videos are. His channel is mostly a kind of leftist slam poetry. I recommend his SolarPunk video in addition to th
@jack-hermanson
jack-hermanson / ConfirmationModal.tsx
Created June 25, 2021 04:53
Generic Confirmation Modal
import React from "react";
import { Button, Modal, ModalBody, ModalFooter, ModalHeader } from "reactstrap";
interface Props {
isOpen: boolean;
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
title: string;
buttonColor?: string;
onConfirm: () => any;
buttonText?: string;