Skip to content

Instantly share code, notes, and snippets.

View Sinequanonh's full-sized avatar
🏠
Working from home

leo Sinequanonh

🏠
Working from home
  • Paris
View GitHub Profile
@Sinequanonh
Sinequanonh / _readme.md
Created October 26, 2023 05:57 — forked from pongstr/_readme.md
HTTP/2 Recipe: Nginx + Node.js

Imgur

Recipe

Install homebrew/services, this will be helpful, you'll see later. :D

$ brew tap homebrew/services 
@Sinequanonh
Sinequanonh / shuffle.js
Created November 27, 2017 01:30 — forked from guilhermepontes/shuffle.js
Shuffle array element ES2015, ES6
const shuffleArray = arr => arr.sort(() => Math.random() - 0.5)
shuffleArray([1, 2, 3]) //[3, 1, 2]