Skip to content

Instantly share code, notes, and snippets.

View barlas's full-sized avatar

Barlas Apaydin barlas

View GitHub Profile
@barlas
barlas / python-fast-webserver.txt
Created October 15, 2015 00:12
python-fast-webserver
$ cd related-dir
$ python -m SimpleHTTPServer 8080
@barlas
barlas / promises-explained.js
Created March 26, 2020 12:04
ASYNC Code evolution in JS/ES => Callbacks => Promise => async/await
/*
Presentation Parts
Take away: aysnc/await uses promises and promises build with callbacks.
ASYNC Code evolution in JS/ES =>
Callbacks => Promise => async/await
SECTION 1
How aysnc/await works?