-
HKE - SQ777 Series https://asurarevolver.bandcamp.com/album/sq777-7-sacred-code-encrypted
-
Sangam - Various https://andoptions.bandcamp.com/album/disconsolate
-
Lilith Twin - Various https://kudatah.bandcamp.com/album/caress
-
Bibio - Phantom Brickworks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useEffect, useRef } from "react"; | |
// Runs only on update, not on initial render, unlike useEffect. | |
// Handy replacement for componentDidUpdate(). | |
export function useUpdateEffect( | |
effect: React.EffectCallback, | |
deps?: React.DependencyList | |
): void { | |
const didMountRef = useRef(false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Null filtering. | |
function isDefined<T>(value: T | undefined | null): value is T { | |
return !!value; | |
} | |
// Immutability | |
export type Immutable<T> = T extends Function | boolean | number | string | null | undefined | |
? T | |
: T extends Array<infer U> | |
? ReadonlyArray<Immutable<U>> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env pipenv run python | |
import subprocess | |
from pathlib import Path | |
import sys | |
from tempfile import NamedTemporaryFile | |
import multiprocessing as mp | |
def usage(): |
OlderNewer