Skip to content

Instantly share code, notes, and snippets.

View archx3's full-sized avatar
🎯
Focusing

Kobina Koomson archx3

🎯
Focusing
View GitHub Profile
@archx3
archx3 / *valoo.md
Created July 8, 2018 14:26 — forked from developit/*valoo.md
🐻 Valoo: just the bare necessities of state management. 150b / 120b. https://npm.im/valoo

🐻 valoo

just the bare necessities of state management.

Usage

Hotlink it from https://unpkg.com/valoo.

See Interactive Codepen Demo.

@archx3
archx3 / destructuring.js
Created January 17, 2018 15:41 — forked from mikaelbr/destructuring.js
Several demos and usages for ES6 destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];
@archx3
archx3 / .gitignore
Created September 10, 2017 08:20 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #