Skip to content

Instantly share code, notes, and snippets.

View wojciech-kowalik's full-sized avatar
🎯
Focusing

Wojciech Kowalik wojciech-kowalik

🎯
Focusing
View GitHub Profile
const delay = (time) => {
return new Promise((res, rej) => {
setTimeout(res, time)
})
}
const getLimits = async () => {
await delay(1500)
return {
availableDailyAmount: 123,
@wojciech-kowalik
wojciech-kowalik / master-javascript-interview.md
Created November 12, 2020 21:18 — forked from Geoff-Ford/master-javascript-interview.md
Eric Elliott's Master the JavaScript Interview Series
@wojciech-kowalik
wojciech-kowalik / composing-software.md
Created November 12, 2020 21:17 — forked from Geoff-Ford/composing-software.md
Eric Elliott's Composing Software Series

Eric Elliott's "Composing Software" Series

A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.

Edit: I see that each post in the series now has index, previous and next links. However, they don't follow a linear flow through all the articles with some pointing back to previous posts effectively locking you in a loop.