Skip to content

Instantly share code, notes, and snippets.

@IsaacBell
IsaacBell / index.pug
Created August 1, 2018 04:17
Personal Profile // Keanu Reeves
// Keanu Reeves never looked so good :-)
// Inspired by this magazine layout:
// https://s-media-cache-ak0.pinimg.com/564x/2e/f7/8d/2ef78d1f44a6ade085bb38810104435a.jpg
.page-wrapper
aside
h1 Man declines prison release
@IsaacBell
IsaacBell / Doom_Emacs_Cheatsheet.md
Created October 30, 2021 19:59
Doom Emacs Cheatsheet

General Commands

Command Action
Spc Open general menu
M-x Search for commands
Spc-p-p Open project browser
Spc-Spc Search for file
Spc-. Find file in current directory
Spc-! Run terminal command from root project directory
Spc-f-R Move file
// In TS, interfaces are "open" and can be extended
interface Date {
/**
* Give a more precise return type to the method `toISOString()`:
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
*/
toISOString(): TDateISO;
}
type TYear = `${number}${number}${number}${number}`;