Skip to content

Instantly share code, notes, and snippets.

View 1216892614's full-sized avatar

Nerd 1216892614

View GitHub Profile
@1216892614
1216892614 / mayErr.ts
Last active September 11, 2024 06:09
mayErr
// deno-lint-ignore-file no-explicit-any
type FlatMonad<T> = T extends MayErr<
infer InnerE,
infer InnerT,
infer InnerIsSuccessful
>
? InnerIsSuccessful extends true
? FlatMonad<InnerT>
: InnerE
@1216892614
1216892614 / menu.tsx
Created August 18, 2024 07:13
Apple Watch Menu like
import React, { useMemo, useRef, useState } from "react";
import { animated, SpringValue, useSpringValue, to } from "@react-spring/web";
const GOODS = [
{ title: "0", color: "rgb(29, 69, 76)" },
{ title: "1", color: "rgb(29, 69, 76)" },
{ title: "2", color: "rgb(28, 66, 72)" },
{ title: "3", color: "rgb(28, 66, 72)" },
{ title: "4", color: "rgb(27, 63, 68)" },
{ title: "5", color: "rgb(27, 63, 68)" },
@1216892614
1216892614 / carousel.tsx
Last active July 25, 2024 06:39
carousel.tsx