Marvin

Results 120 comments of Marvin

I was looking into double exporting CJS/ESM a couple of weeks ago and I found that https://github.com/egoist/tsup makes the whole tooling much simpler and less error-prone. It reduced my build...

> Maybe compute and display all hashes like in https://it-tools.tech/hash-text to remove the need to select the hash function That would be nice, but it already struggles with decently-sized files...

Here's another case, using Transition + Solid Router: https://stackblitz.com/edit/github-324i4c-h11day?file=src%2FApp.tsx

[solid-icons](https://github.com/x64Bits/solid-icons) works fine and contains Tabler icons as well

@pjtatlow I ran again to get the error again, the file ended up being a bit too large for GH, so I uploaded it to my S3: https://jammdb-debug.s3.eu-central-1.amazonaws.com/data.db

I agree the examples are somewhat awkward and don't really highlight the difference between a derived signal and a memo enough. --- The first example could be changed to just:...

> I changed the Sled Config to do 2GB data cache, which is the exact same amount as the data stored, and set Mode to HighThroughput. It did improve a...

Highlighting lines works, but not correctly in dark mode ![Screenshot from 2023-02-11 17-44-20](https://user-images.githubusercontent.com/33938500/218270136-5367b321-76e9-4bc7-acc6-94429199d0f0.png)

Possible API ```rs use fjall::TxKeyspace; let keyspace = TxKeyspace::open( ... )?; let items = keyspace.open_partition( ... )?; let tx = keyspace.transaction(); tx.get(&items, key)?; tx.insert(&items, newkey, newvalue); tx.commit()?; ```