Results 694 comments of Vitaly Shukela

Shouldn't this be decided by `umask` by default? If user does not want to have information world-readable by default, just set umask `077` and files will be created non-world-readable by...

Looks like just opening the database and immediately dropping it and exiting from `fn main` still leaves the database in unclean state.

I expect `was_recovered` to warn users that: 1. They were doing something wrong, e.g. shutting down the application or computer improperly; 2. Indicate that some information that user expects to...

bytehound showing large allocations here: ``` #17 sled::config::Config::open [config.rs:360] #18 sled::db::Db::start_inner [db.rs:54] #19 sled::context::Context::start [context.rs:33] #20 sled::pagecache::PageCache::start [mod.rs:541] #21 sled::pagecache::snapshot::read_snapshot_or_default [snapshot.rs:485] #22 sled::pagecache::snapshot::advance_snapshot [snapshot.rs:287] #23 sled::pagecache::snapshot::Snapshot::apply [snapshot.rs:162] ``` Does it...

Typically resolved `Future`s should not be polled again: > Once a future has finished, clients should not poll it again. Relying on reusing Future after non-`Pending` poll is like relying...

@busyboredom , I expect that one can workaround it with a manual `Stream` implementation where `poll_next` delegates to Sled subscriber's `poll`.

How games relying on `textUtf8` are expected to be localized then?

Also shall the font at least include ↑↓←→ characters, so that games can explain which buttons need to be pressed easily?

Maybe browser implementation of Wasm4 should just cheat and use browser's font in case of tricky text, rendering it not in framebuffer, but just as a separate element that is...

I'm using [my own specialised DNS proxy with cache](https://github.com/vi/dnscache). But that's not a proxy you would like to see probably.