TILTThings I've Learnt Today

(┛◉Д◉)┛彡┻━┻

2020-01-16

Why is This so Terrible

I gave a short presentation: Elements of Functional Programming for React.js Developers. You can see the slides.

Read more

2019-08-27

Shape Up by Ryan Singer from Basecamp

Oh my! This book is the best. I want to work like that!

Read more

2019-03-31

Is there an equivalent of cd - for cp or mv?

Perhaps you know that you can go back and forth between current and previous directory using handy shortcut for the cd command:

cd -

But this is cd specific. Is there a way to copy or move a file from current directory to the previous? Turns out there is.

Read more

2017-08-04

Passing undefined to a JavaScript promise

Consider this simple snippet:

Promise
  .resolve('JavaScript, why are you doing this to me?')
  .then(console.logg)
  .catch(console.error)

Note that `console.logg` is `undefined`. What will be printed?

Read more

2017-08-04

Weird AWS Region Bug

Read more

2017-08-04

Using Promise.race in Node.js to enforce a timeout

Read more

2017-07-21

Facebook Flow in an Alpine Node Docker Container

Read more

2017-07-20

How to Setup SSH Key limited to Creating a Tunnel

Read more

2017-06-29

Managing Access to NPM Private Packages

Read more

2015-07-29

How to Test if a Given Value is a React.js Component

Read more

2015-07-12

An Idea for the Blog

Read more

2015-04-28

How to Install NPM Packages Written in CoffeeScript from a Git Repo

Read more