João Marcos
João Marcos
I think I'd rather do a `for-loop` instead :smiley:.
> it would be much better to have answers such as these in the repository My brother in christ, the repository has been open for **3 days**, chill???? `orlp` is...
@noib3 tests fixed, it's now ready for review.
+1 to this one, Alt+D, Ctrl+W, Ctrl+A and Ctrl+E hotkeys are extremely useful IMO. The crate [Rustyline](https://docs.rs/rustyline/latest/rustyline/) gives a "typing field" with emacs shortcuts, and there's [an enum to change...
Sorry, you return `bool` and not `Result`: ```rust fn removable(path: AsRef) -> Result { path.as_ref().parent().map(|parent| parent.writable()).unwrap_or(false) } ```
@schneems I really like the `fs-err` wrapper idea, I always use this crate. > So I've also need to map a similar set of logic that you've described here for...
Well, thinking more about this, I don't think there's much you can benefit from merging both. IMHO, good things about my crate are: 1. name, which is intuitive. 2. the...
Could be convenient to catch errors in the deserialization step and the users of the crate won't have to manually convert each field while trying to use them. However, the...
My 2 cents as a beginner: _1-update-per-frame_ seems to be simpler to reason about when learning the engine, I'm puzzled thinking about jittering, interpolation and smoothing add-ons instead of just...
IMHO, the clipboard history must be provided by the editor: 1. Zed must be batteries included, I want clipboard history regardless of what system I'm in. 2. Zed keeps extra...