Skip to content

Instantly share code, notes, and snippets.

View ftaiolivista's full-sized avatar

Fabiano Taioli ftaiolivista

  • Vista Tecnologie
  • Ravenna, Italy
View GitHub Profile
@ftaiolivista
ftaiolivista / ini-grammar.txt
Created June 28, 2024 13:24
PeggyJS ini file grammar
{
function makeObject(entries) {
const result = {};
for (const [key, value] of entries) {
result[key] = value;
}
return result;
}
}
@ftaiolivista
ftaiolivista / log.txt
Created May 11, 2023 06:51
gittup log.txt
:: Resolving dependencies...
:: Calculating conflicts...
:: Calculating inner conflicts...
Aur (1) gittyup-1.3.0-1
:: Proceed to review? [Y/n]:
:: Downloading PKGBUILDs...
PKGBUILDs up to date
nothing new to review
@ftaiolivista
ftaiolivista / mutor.js
Created December 5, 2019 17:01
Components
const Mutor = function (f = i => i, argz = {}) {
const _func = Array.isArray(f) ? f.reduce((f, c) => (f ? c(f) : c)) : f
const _arg = Array.isArray(argz) ? Object.assign({}, ...argz) : argz
const m = Object.assign(
function (a) {
return _func(Object.assign({}, _arg, a))
},
Array.isArray(f) ? f[0] : f
)
@ftaiolivista
ftaiolivista / cycle-yarn.lock
Created April 30, 2019 15:57
cycle-yarn.lock
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==
dependencies:
"@babel/highlight" "^7.0.0"
{
"header": {
"Variant": "truefox",
"Generator": "KIICONF 0.2",
"Base": "TheTrueFoxBase",
"Date": "2016-05-30",
"KLL": "0.3c",
"Author": "HaaTa (Jacob Alexander) 2015",
"Version": "0.2",
"Name": "WhiteFox",
❯ rollup --version
rollup version 0.25.3
❯ time rollup -c ./rollup.js
rollup -c ./rollup.js 4.65s user 0.22s system 118% cpu 4.131 total
❯ time webpack
Hash: ebb00bbccd954c114d3c
Version: webpack 2.0.7-beta
Time: 3623ms