Skip to content

Instantly share code, notes, and snippets.

@GlenCorreia
GlenCorreia / markdown_cheatsheet.txt
Created October 1, 2018 07:34
A simple and short overview of markdown techniques.
Italics and Bold
=> Italics: _some text_
=> Bold: **bold text**
=> Bold and Italics: **_bolditalics_** OR _**bolditalics**_ OR _bold **and** italics_
Headers
=> h1: #header1
=> h2: ##header2
=> h3: ###header3
=> h4: ####header4
@amysimmons
amysimmons / js-tricky-bits.md
Last active November 16, 2022 02:42
Understanding closures, callbacks and promises in JavaScript

#Understanding closures, callbacks and promises

For a code newbie like myself, callbacks, closures and promises are scary JavaScript concepts.

10 months into my full-time dev career, and I would struggle to explain these words to a peer.

So I decided it was time to face my fears, and try to get my head around each concept.

Here are the notes from my initial reading. I'll continue to refine them as my understanding improves.