Skip to content

Instantly share code, notes, and snippets.

View adamsdenniskariuki's full-sized avatar
🇰🇪
Still alive!

Adams Kariuki Dennis adamsdenniskariuki

🇰🇪
Still alive!
  • Andela
  • Nairobi, Kenya
View GitHub Profile
@adamsdenniskariuki
adamsdenniskariuki / async-await.js
Created September 10, 2018 13:10 — forked from wesbos/async-await.js
Simple Async/Await Example
// 🔥 Node 7.6 has async/await! Here is a quick run down on how async/await works
const axios = require('axios'); // promised based requests - like fetch()
function getCoffee() {
return new Promise(resolve => {
setTimeout(() => resolve('☕'), 2000); // it takes 2 seconds to make coffee
});
}
@adamsdenniskariuki
adamsdenniskariuki / example.html
Last active April 5, 2017 17:49
HTML and CSS Example
HTML:
<div id = “parent” >
All the content here is blue in color.
<div id = "child">
I’m Red.
</div>
</div>
CSS: