Skip to content

Instantly share code, notes, and snippets.

View eisenbergrobin's full-sized avatar

Robin Eisenberg eisenbergrobin

View GitHub Profile
@eisenbergrobin
eisenbergrobin / menu.json
Last active October 5, 2025 06:08
st-avertin-school-menu
[
{
"date": "2025-09-01",
"lunch": [
"Carottes râpées",
"Cordon bleu",
"Coquillettes",
"Yaourt au fruits"
],
"snack": [
@eisenbergrobin
eisenbergrobin / index.js
Created May 24, 2016 15:27
requirebin sketch
const fuzzy = require('fuzzy');
const array = ['lolipooop', 'Botidy', 'Botify', 'lolipop', 'botif']
const results = fuzzy.filter('botify', array);
// Expecting results at indices 1, 2, 4 in the following order [2, 1, 4]
console.log(results);
// Got a single result...