Skip to content

Instantly share code, notes, and snippets.

View schickling's full-sized avatar
Making the web better

Johannes Schickling schickling

Making the web better
View GitHub Profile
/* 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,
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)
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
/* 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'
// /// <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,
@schickling
schickling / DataLoader.ts
Created April 10, 2023 20:37
Effect Dataloader
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'
@schickling
schickling / flake.nix
Last active April 10, 2023 08:54
WASM Nix build script
# ...
# nix run .#wasm-packages
apps.wasm-packages = {
type = "app";
program = toString (pkgs.writeShellScript "wasm-packages" ''
${wasmPackScript { packageName = "somepkg-wasm"; }}/bin/wasmPackScript
'');
};
@schickling
schickling / WorkerCodec.ts
Created April 3, 2023 14:22
Worker codec refactor attempt
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>
@schickling
schickling / blob.ts
Created April 1, 2023 09:52
blob <> file[] encoding
// 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()
// }
/**
* 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 = [