Christopher Dieringer

Results 128 comments of Christopher Dieringer

I’ll have to take a peek later, but iirc when I popped open the tutorial JS module, it was not ESM. We need each tutorial exported as a top level...

`$ convert oc-sq-full.jpeg -resize 800x800 -strip -define jpeg:extent=50KB oc-sq-lg.jpeg` github didn't reprocess it _too_ much, at approx 48KB (96% reduction) ![oc-sq-lg](https://user-images.githubusercontent.com/1003261/146517189-e00a6f3a-d242-42b5-a96b-d230a3d69519.jpeg) `$ convert oc-sq-full.jpeg -resize 400x400 -strip oc-sq-sm.jpeg`

we have `pub type Foo`, but we could also entertain rust type `pub (module) type Foo` for scoped public-ness. in this respect, i could put my `pub (module) opaque type`...

Thanks! It was pretty surprising to not be able to call very basic pure functions in gleam in guards. It's something i do quite often in ocaml. Would be rad...

yea, let me know your thoughts. i'd be happy to co-hack it out if you found it worth pursuit.

The jest-worker is using the copying execArgv (`--require=/path/to/wrap.js`, `--experimental-loader=...`), which is breaking their worker. I modified the worker source to _ignore_ these options and it went fine :). perhaps these...

`node-dev my-script` - `node -r wrap.js --expiremental-loader=... my-script.js { env: { IS_NODE_DEV_ENTRY: 1 } }` ```js /* wrap.js */ if (IS_NODE_DEV_ENTRY) { delete process.env.IS_NODE_DEV_ENTRY; // critically, flag this file as...

hmm. that's odd. i'm getting the same result on two different machines. Maybe we could compare envs? `npx envinfo`: ``` System: OS: macOS 11.6 CPU: (8) arm64 Apple M1 Memory:...

I went from “not having a node bug since 8.x” to two in the last month. So infrequent that I rarely remember to even check the node version! 😀 Thanks...

> Actually, no. I don't think we are required to mandate any specific APIs. It sounds like all parties agree a firm API is not part of the specification, but...