Skip to content

Instantly share code, notes, and snippets.

View bagazdoswiadczen's full-sized avatar

Michał Szymczyk bagazdoswiadczen

View GitHub Profile

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@chajr
chajr / polecenia_git.md
Last active May 30, 2020 15:02
Polecenia GIT

Zbiór komend przeniesiony

Zbiór przeniesiony z gist do jednego repo w celu łatwiejszego zarządzania.

Zachęcam do przejrzenia pozostałych zbiorów z repozytorium, oraz do aktywnego dodawania własnych komend

@icodejs
icodejs / writeOutNumbers.js
Created April 7, 2016 21:59
Write out numbers
/*
Create a function that transforms any positive number to a string representing the number in words. The function should work for all numbers between 0 and 999999.
For example,
number2words(0) should return "zero"
number2words(1) should return "one"
number2words(9) should return "nine"
@staltz
staltz / introrx.md
Last active July 2, 2024 03:45
The introduction to Reactive Programming you've been missing
@mikaelbr
mikaelbr / destructuring.js
Last active April 25, 2024 13:21
Complete collection of JavaScript 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];