Phillip Davis
Phillip Davis
I'm going to second-guess myself here: I just discovered you can use `std::io::Cursor` for basically the same purpose. Doesn't that make this PR redundant?
> I didn't think of `io::Cursor` specifically but that's kind of what I was wondering with my previous comment. But you're right, `io::Cursor` does do [something very similar](https://doc.rust-lang.org/src/std/io/cursor.rs.html#322). I was...
`std::io::Cursor::position()` can report how many bytes any `Writer` wrote. See the following: ```rs let mut cursor = Cursor::new(buf); let mut writer = Writer::new(&mut cursor); ... // Write a bunch of...
Looking into this
I just spent some time doing an initial survey of all the things that this new Settings struct should keep track of. I referenced [this](https://docs.meilisearch.com/learn/configuration/settings.html#displayed-attributes) page but obviously there are...
Gotcha, thanks for the reply! I'll put a pause on this until then, for fear of finding out any changes I make are irrelevant.
Hey guys, sorry for falling off the face of the Earth, a lot of personal stressors this past semester. Does it meet goals to allow the impl block of `Index`...
Firstly, I should have been clearer that I meant "can the card be configured." I of course didn't mean to pop up out of nowhere and demand a feature lol....
I am not the repo owner, but please do not be scared. It is very unlikely that any unrecoverable damage has been done. How did you delete Komorebi? Also, are...
I have diagnosed the issue: it looks like displaying desktop icons is purely a config option. As far as I can tell, there are two solutions: 1) Document this fact...