Skip to content

Instantly share code, notes, and snippets.

View kalupa's full-sized avatar

Paul Kalupnieks kalupa

View GitHub Profile
@kalupa
kalupa / cloudSettings
Last active November 19, 2018 18:05
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-11-19T18:05:20.338Z","extensionVersion":"v3.2.0"}
@kalupa
kalupa / code-review.ts
Last active September 20, 2022 20:04 — forked from tavisrudd/agenda.md
////////////////////////////////////////////////////////////////////////
// 1.1) If you saw something like this during a code review
// what would you say and how would you improve it?
// (If you don't know Typescript's type system well, pseudo-code it or talk about a typed language you know well.)
type Shape = {
type: "circle" | "square";
size: number;
radius: number;
};