Leonardo Prado

Results 9 comments of Leonardo Prado

@piotrmurach I think the plan you've posted on mar/3 is a really nice roadmap for TTY 1.0! Why don't you create a project for it on GH and split all...

I think it happens because `v4.8.0` lock rails version up to 5.3: https://github.com/collectiveidea/audited/blob/d59940b6f51172bb2d476d98da6f858a40e93dad/audited.gemspec#L23 Probably bundler installed `v4.2.2`, which don't have a compatible generator anymore Installing it from master is working...

Based on slack talks, here's the scope of Inspired by https://letterboxd.com/ Scope: - [ ] User can create many lists - [ ] Lists have: - [ ] Title -...

I think it would be better to move the docs from the site. Something like a docs.sequel-ace.com. This way we can keep the docs in a fixed location if we...

Instead of setting upper/lower case, we could ask what the user wants, something like this: ```python Dynaconf( case_transform_envvars="upper" ) ``` The typing could be something like this: ```python case_transform_envvars: Literal["upper",...

> You can implement your own custom cache behaviour by using `useAsyncData`. That would be a lot of boilerplate code instead of a one-liner, @danielroe… Is this cache removal a...

Haven't done it yet, but it seems like a good tutorial: https://www.kencochrane.com/2020/08/01/build-and-sign-golang-binaries-for-macos-with-github-actions/ It feels like a lot of steps to setup, but can be automated easily :)

I think that it's more an UX issue than a bug, but it sure is a bothersome one 😆 I'll try to check if the `preventDefault` is the only thing...

I had the same problem, but in the end the problem is that my vite config was with the `.js` extension. Changing it to `.mjs` solved the problem :)