Simply put, destructuring in Clojure is a way extract values from a datastructure and bind them to symbols, without having to explicitly traverse the datstructure. It allows for elegant and concise Clojure code.
This file contains 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
/* | |
A worklet for recording in sync with AudioContext.currentTime. | |
More info about the API: | |
https://developers.google.com/web/updates/2017/12/audio-worklet | |
How to use: | |
1. Serve this file from your server (e.g. put it in the "public" folder) as is. |
This file has been truncated, but you can view the full file.
This file contains 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
ZIP,LAT,LNG | |
00601,18.180555, -66.749961 | |
00602,18.361945, -67.175597 | |
00603,18.455183, -67.119887 | |
00606,18.158327, -66.932928 | |
00610,18.295366, -67.125135 | |
00612,18.402253, -66.711397 | |
00616,18.420412, -66.671979 | |
00617,18.447538, -66.557681 | |
00622,17.991245, -67.153993 |
error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory
sudo apt-get install libnss3
error while loading shared libraries: libXss.so.1: cannot open shared object file: No such file or directory
sudo apt-get install libxss1
This file contains 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 { TypeOf, Type, InputOf, OutputOf } from "io-ts" | |
import { matchW } from "fp-ts/Either" | |
import { reduce } from "fp-ts/Array" | |
import { flow } from "fp-ts/function" | |
import { ReactNode, PropsWithoutRef } from "react" | |
import { Form as FinalForm, FormProps as FinalFormProps } from "react-final-form" | |
export { FORM_ERROR } from "final-form" | |
export interface FormProps<C extends Type<TypeOf<C>, OutputOf<C>, InputOf<C>>> | |
extends Omit<PropsWithoutRef<JSX.IntrinsicElements["form"]>, "onSubmit"> { |