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 */ | |
import type * as otel from '@opentelemetry/api' | |
const noopSpan = { | |
setAttribute: () => null, | |
setAttributes: () => null, | |
addEvent: () => null, | |
setStatus: () => null, | |
updateName: () => null, | |
recordException: () => null, |
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 { describe, expect, it } from 'vitest' | |
import { Equal } from './index.js' | |
import * as Schema from './Schema.js' | |
import { Wrapper, wrapper } from './SchemaWrapper.js' | |
describe('wrapper', () => { | |
it('wrapper', () => { | |
const wrapped = wrapper(Schema.number) | |
const decoded = Schema.parse(wrapped)(10) |
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
/* 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
// /// <reference no-default-lib="true" /> | |
/// <reference lib="esnext" /> | |
/// <reference lib="webworker" /> | |
import { casesHandled } from '@mytunes/utils' | |
import { Effect, Either, Layer, Otel, pipe, ServiceContext, Stream, WorkerLive } from '@mytunes/utils/effect' | |
import { OtelMeterLive, OtelTracerLive } from '@mytunes/utils-frontend/tracing' | |
import type { | |
EventId, |
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 Chunk from '@effect/data/Chunk' | |
import * as Context from '@effect/data/Context' | |
import * as Duration from '@effect/data/Duration' | |
import type * as Either from '@effect/data/Either' | |
import { pipe } from '@effect/data/Function' | |
import * as Deferred from '@effect/io/Deferred' | |
import * as FiberRefs from '@effect/io/FiberRefs' | |
import * as Queue from '@effect/io/Queue' | |
import * as Effect from './Effect.js' |
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
# ... | |
# nix run .#wasm-packages | |
apps.wasm-packages = { | |
type = "app"; | |
program = toString (pkgs.writeShellScript "wasm-packages" '' | |
${wasmPackScript { packageName = "somepkg-wasm"; }}/bin/wasmPackScript | |
''); | |
}; |
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 type { Either } from '@mytunes/utils/effect2' | |
export type HasTag<T = {}> = { _tag: string } & T | |
// NOTE implementations using `AnyWorkerCodec` might be unsafe | |
// export type AnyWorkerCodec = WorkerCodec<AnyIWorkerCodec> | |
export type AnyWorkerCodec = WorkerCodec<any> | |
// export type AnyWorkerCodec = WorkerCodec<any, any, any, any, any, any, any, any> | |
export type AnyIWorkerCodec = IWorkerCodec<any, any, any, any, any, any, any, any> |
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
// export const encodeFilesToBlob = (files: File[]): Promise<Blob> => { | |
// const formData = new FormData() | |
// files.forEach((file) => { | |
// formData.append('files[]', file, file.name) | |
// }) | |
// return new Response(formData).blob() | |
// } |
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
/** | |
* Structure: | |
* First 4 bytes: number of files | |
* Middle section: Array of file sizes (in bytes) relative to the order of the `files` array | |
* End section: Array of file name lengths (in bytes) relative to the order of the `files` array | |
* | |
* Array of file sizes (in bytes) relative to the order of the `files` array with the first element being the number of files. | |
* Encoded as a Uint32Array (so each element has to be less than 2^32 ~ 4GB) | |
* | |
* e.g. for files = [ |