Max Graey

Results 346 comments of Max Graey

@CrazyPython It very depends on task. See another examples: https://github.com/acutmore/type-off https://twitter.com/matthewcp/status/1390013392950284291 https://github.com/MaxGraey/as-string-sink#benchmark-results btw issue with growing array already fixed

> but you can write the same fast code in JavaScript, if you know what to avoid. That's not really true. Ofc you could do something [like this](https://medium.com/leaningtech/a-javascript-optimizing-compiler-3fd3f49bd071) in theory....

> WASM and JS use the same optimizing backend. You can manipulate both to get similar results. Yes and no. First of all JS hasn't some operations like `popcount`, `ctz`,...

Right. And runtime exception is normal behaviour for C#, Java. [Rust](https://doc.rust-lang.org/nomicon/subtyping.html#variance) support this only for traits and generic functions. But as I understand Hegel doesn't have interfaces or traits?

How about enhance existing language tag? Like if framework consist of 80% C code and 20% python code then tag show `c / py`, in contrast case it will be...

sin / cos and other functions could be implemented in very minimalistic way. Usually you're need only fixed point result which may use precalculated tables. Otherwise it could be some...

It should be ```ts store(w4.PALETTE, 0xe0f8cf, 0 * sizeof()); // light store(w4.PALETTE, 0xe30000, 1 * sizeof()); // red store(w4.PALETTE, 0x306850, 2 * sizeof()); // green store(w4.PALETTE, 0x000000, 3 * sizeof());...

I'm honestly not familiar with free online storages. Here's a list of the ones I've heard of 1) firebase (firestore) https://firebase.google.com/docs/firestore/quotas 2) heroku https://www.heroku.com/free 3) back4app https://www.back4app.com/parse-pricing

> Also shall the font at least include ↑↓←→ characters You could use ordinal bitmaps for this. Another option is allowing set custom font atlas I guess