Skip to content

Instantly share code, notes, and snippets.

View fumi-sagawa's full-sized avatar
🎯
Focusing

fumi-sagawa

🎯
Focusing
View GitHub Profile
@tomo-makes
tomo-makes / spleeter-multi-source-separation-demo.ipynb
Last active December 29, 2019 13:53
Spleeter multi-source separation demo + transcription trials.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Avaq
Avaq / combinators.js
Last active November 25, 2025 09:37
Common combinators in JavaScript
const I = x => x
const K = x => y => x
const A = f => x => f (x)
const T = x => f => f (x)
const W = f => x => f (x) (x)
const C = f => y => x => f (x) (y)
const B = f => g => x => f (g (x))
const S = f => g => x => f (x) (g (x))
const S_ = f => g => x => f (g (x)) (x)
const S2 = f => g => h => x => f (g (x)) (h (x))