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 * as Data from '@effect/data/Data' | |
import { pipe } from '@effect/data/Function' | |
import * as Effect from '@effect/io/Effect' | |
import * as msgpack from 'msgpackr' | |
import * as Otel from './Otel/index.js' | |
export const fetchHead = ( | |
url: string | URL, | |
headers?: HeadersInit, |
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
{ | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/master"; | |
flake-utils.url = "github:numtide/flake-utils"; | |
}; | |
outputs = { self, nixpkgs, flake-utils }: | |
flake-utils.lib.eachDefaultSystem (system: | |
let | |
pkgs = nixpkgs.legacyPackages.${system}; |
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 * as Data from '@effect/data/Data' | |
import { pipe } from '@effect/data/Function' | |
import * as Effect from '@effect/io/Effect' | |
import * as msgpack from 'msgpackr' | |
import * as Otel from './Otel/index.js' | |
export const fetchHead = ( | |
url: string | URL, | |
headers?: HeadersInit, |
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
/* eslint-disable prefer-arrow/prefer-arrow-functions */ | |
export * from '@effect/io/Scheduler' | |
import * as Scheduler from '@effect/io/Scheduler' | |
// Based on https://github.com/Effect-TS/io/blob/main/src/Scheduler.ts#L63 | |
export class ReactAwareScheduler implements Scheduler.Scheduler { | |
private running = false | |
private tasks = new Array<Scheduler.Task>() |
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
/* eslint-disable prefer-arrow/prefer-arrow-functions */ | |
/** | |
* fork of https://github.com/astoilkov/main-thread-scheduling | |
* | |
* node compatibility | |
* removal of visible priority | |
* reversal of task order | |
*/ | |
import * as Effect from '@effect/io/Effect' |
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 React from 'react' | |
const PR = Math.round(window.devicePixelRatio || 1) | |
const FRAME_BAR_WIDTH = 2 | |
export type FPSMeterProps = { | |
width?: number | |
height?: number | |
systemFps?: number |
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 { pipe } from '@effect/data/Function' | |
import * as Option from '@effect/data/Option' | |
import * as Cause from '@effect/io/Cause' | |
import * as Effect from '@effect/io/Effect' | |
import * as Exit from '@effect/io/Exit' | |
import * as Fiber from '@effect/io/Fiber' | |
import * as Queue from '@effect/io/Queue' | |
import * as Stream from '@effect/stream/Stream' | |
export const chainSwitch = |
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
const makeEtaState = () => { | |
type TimestampInSeconds = number | |
const countBucketsForLast10Seconds: Map<TimestampInSeconds, number> = new Map() | |
const countRun = (numberOfItems: number) => { | |
const timestampInSeconds = Math.floor(Date.now() / 1000) | |
const count = countBucketsForLast10Seconds.get(timestampInSeconds) ?? 0 | |
countBucketsForLast10Seconds.set(timestampInSeconds, count + numberOfItems) | |
} |
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 React from 'react' | |
/** | |
* A variant of `React.useState` which allows the `inputState` to change over time as well. | |
* Important: This hook is synchronous / single-render-pass (i.e. doesn't use `useEffect` or `setState` directly). | |
* | |
* Notes: | |
* - The output state is always reset to the input state in case the input state changes (i.e. the previous "external" `setStateAndRerender` call is forgotten) | |
* - This hook might not work properly with React Suspense | |
* - Also see this Tweet for more potential problems: https://twitter.com/schickling/status/1677317711104278528 |
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
{ lib, rev, pkgs ? import <nixpkgs> { } }: | |
let | |
inherit (pkgs) fetchzip lib stdenv; | |
inherit (pkgs.stdenv) mkDerivation; | |
inherit (pkgs.stdenv.hostPlatform) system; | |
selectSystem = attrs: | |
attrs.${system} or (throw "Unsupported system: ${system}"); |