Laurent Savaete
Laurent Savaete
The paths in `Cargo.toml` seem to be handled in an inconsistent way. Here is an example from [alacritty](https://github.com/jwilm/alacritty): ``` assets = [ ["../target/release/alacritty", "usr/bin/", "755"], (...) ["../extra/alacritty.info", "usr/share/alacritty/", "644"], ]...
I'm using this theme with neovim 0.8.x from the nightly releases and alacritty as my terminal. Overall it looks neat, but I have an issue with the LSP completion (I...
When I use `react-native-modalbox` version`2.0.0` on an app built with RN 0.61.5, the app crashes with the following error message: ``` Invariant Violation: Element type is invalid: expected a string...
I would like to run an experiment with this repo. I am clearly not available enough to maintain this package at the pace I would like to, but it does...
As suggested in [this comment](https://github.com/laurentS/slowapi/pull/19#discussion_r547876563) it should be possible to make the functionality available as a dependency for FastAPI. It looks like this would not be usable in Starlette, so...
As both starlette and FastAPI are fully async, there is no reason to keep this extension running synchronously. Going async should help save a few ms while fetching data from...
## Issue ```javascript const a = firebase.database().ref('/v2/projects'); const b = firebase.database().ref('v2/projects'); const c = firebase.database().ref().child('/v2/projects'); const d = firebase.database().ref().child('v2/projects'); console.log(a.path, b.path, c.path, d.path); // outputs v2/projects v2/projects /v2/projects /v2/projects (note...
I added this functionnality as I needed it myself. It doesn't really address any existing issue, hence this pull request. I intend to improve upon it, but getting your attention...
**Describe the bug** I've noticed lazygit getting in the 20-30% of CPU usage for prolonged periods of time (for several minutes at least, probably hours if I leave it be)....
I use a monorepo for a project such as: ``` /myproject /myproject/.git /myproject/python_pkg/ /myproject/python_pkg/pyproject.toml /myproject/node_pkg/ /myproject/node_pkg/package.json ``` I am trying to configure `efm` to format python files (under `/myproject/python_pkg`) using...