Zsolt Ero
Zsolt Ero
@IvanSanchez I found the nicest experience for continuous zooming by turning off animation altogether and just letting each small scroll event make a small zoom level change, by using a...
I did some performance testing on my realistic workload. spread - 0.275ms ``` this.setState(reconcile({ ...this.state, ...data })) ``` for loop no batch - 0.205ms ``` for (const key of Object.keys(data))...
I'm happy to wait for 2.0 to have some improvements. The other common issue is Date() objects. Right now, setStore + reconcile handles every common types (both basic and wrappable...
What about adding a special case for Date()? With Date() you'd cover 99% of the most common types. Or, adding a type -> eqFn map like `{Date: 'getTime')` or similar....
I think you should put the recursive behaviour under `--recursive` flag. I cannot imagine any CLI tool to access my full filesystem for a single migrate command. Also, $HOME and...
``` { "root": true, "$schema": "https://biomejs.dev/schemas/2.2.2/schema.json", "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": true }, "files": { "maxSize": 100000, "ignoreUnknown": true, "includes": [ "**", "!**/.astro", "!**/.venv", "!**/_astro", "!**/_not_used", "!**/_tailwind.css", "!**/cdn",...
What is the recommended workaround for this as of today? How can I migrate my $HOME config?
> You could put it in it's own folder, migrate it, and then replace your home config with the output. Thanks!
For OpenFreeMap I'm planning to implement the following: 1. Offer a set of known open source fonts. For example NotoSans generated from sources in a few variants, hosted next to...
@louwers thank for explaining. I can imagine something along the lines of: - Specifying client-dependent font stack in style JSON, like in CSS. ``` "my_special.ttf", Avenir, Montserrat, Corbel, 'URW Gothic',...