Ben Sidhom
Ben Sidhom
The current implementation always creates a flat file in `createDocument()`. Instead, a directory should be created when the mimetype is `Document.MIME_TYPE_DIR`.
Fixes https://github.com/rust-lang/git2-rs/issues/1033. Here's an example run of the example from that issue, but with the fix: ``` > cargo run --release Creating repo at "/var/folders/0h/1lcyrkv11ynfjq5w7bt0sl_00000gn/T/git-repo-_YIz7w.git" Populating repo Repo populated Walking...
The problem is that the [callback wrapper](https://github.com/rust-lang/git2-rs/blob/3da58f3ee344278115f87b7b2d82a5ecc294a170/src/tree.rs#L218) in the `walk()` implementation assumes utf-8 for the root name. However, this is not required by base Git or libgit2. Other git2-rs methods...
The out-of-band flow is deprecated and can no longer be used to authorize new clients: https://developers.google.com/identity/protocols/oauth2/resources/oob-migration#what-is-oob. Desktop clients should be migrated to the loopback flow: https://developers.google.com/identity/protocols/oauth2/resources/oob-migration#desktop-client. Fixes #1140.
The [Out-of-Band workflow](https://developers.googleblog.com/2022/02/making-oauth-flows-safer.html) will be [deprecated in October 2022](https://developers.google.com/identity/protocols/oauth2/resources/oob-migration). As far as I can tell, `drive` [still uses](https://github.com/odeke-em/drive/blob/bede608f250a9333d55c43396fc5e72827e806fd/src/remote.go#L43) OOB (copy/paste) to authenticate. I think that existing (authenticated) clients will continue...
These are defined as 5 mL and 15 mL, respectively, and are used in the UK and elsewhere where metric is used. See https://en.wikipedia.org/wiki/Tablespoon and https://en.wikipedia.org/wiki/Teaspoon#Metric_teaspoon. The situation is even...
This is the first step in making Numbat fully offline-capable and installable as a PWA (see #371). It's a bit brittle right now because it relies on static assets being...
It would be great to make Numbat installable as a [Progressive Web App (PWA)](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Guides/What_is_a_progressive_web_app). The key benefit of this is the ability to use it _offline_ on any device with...
Thought of how this might be useful when trying to work around #305. I'm picturing being able to do something such as the following: ``` 1 / 30 mpg ->...
Adding more general readline-style support could make it much easier to edit/reuse long inputs, especially given that there's no mouse support. I assume that there's some baked-in Emacs-style bindings at...