benedictjohannes

Results 12 comments of benedictjohannes

I successfully workaround this using dynamic import and React lazy loading of main component, might want to see in this [gist](https://gist.github.com/benedictjohannes/33f93ccd2a66b9c150460c525937a8d3) This way, while the entry point is still the...

> And you can do exactly that. You just need to eject and tweak your webpack configuration. It works beautifully. The supposed benefit of CRA is having the easy path...

@johanbrandhorst I was exploring this library in hope of writing a webapp (for browsers) using gRPC. Since gRPC uses a single multiplexed HTTP2 connection, when WebSocket can be multiplexed, I'd...

@rschristian if those rules are documented (at least in this repo's README), I'd say the rules are excellent and totally workable. I like this rules more than the `public` pattern....

I have several feature request/suggestion such as tree view allowing right click a folder and have the option to add new notes similar to the File Explorer side pane. @patleeman...

I was just aware that this might be a close duplicate to #27 Allow me to add up my suggestion on this issue. If web's various sign in methods is...

The way Diesel define migration in pure SQL statements makes source control of DB schema extremely easy to deploy. One just need to check out SQL files, have the Diesel...

@lpil Probably the only part giving away Diesel CLI's power as *not* a migration toolkit is that it requires `Cargo.toml` to operate. I bet this feature can gain traction and...

@GopherJ Your last comment looks helpful. Can you share in more detail, maybe on a separate branch on your fork or maybe using github gist? It's quite hard for me...

I looked into this [page](https://kobzol.github.io/rust/ci/2021/05/07/building-rust-binaries-in-ci-that-work-with-older-glibc.html) that suggest using a container that has old version of glibc. Probably this can be implemented in the GH Workflows too, according to that same...