Sridhar Ratnakumar

Results 581 comments of Sridhar Ratnakumar

Looking at https://github.com/fsbolero/Bolero/blob/2901c7e8ee03c27fff47522af55c7735d1aba6c9/src/Bolero.Server/RazorHost.fs#L62-L67 By default, the bolero app template is in `RenderMode.Static` mode, and setting server=true puts it in `RenderMode.Server` (the prerendered variation, actually) mode. What's the difference? From https://devblogs.microsoft.com/aspnet/asp-net-core-and-blazor-updates-in-net-core-3-0-preview-9/#render-multiple-blazor-components-from-mvc-views-or-pages...

Ah, my first question is out of misunderstanding I guess. The render mode is in the context of the server serving a path request, where it makes the decision to...

Aha, https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor I guess I understood the model incorrectly. > **Run on WebAssembly or the server** > Blazor can run your client-side C# code directly in the browser, using WebAssembly....

@Tarmil Is that hypothetical async program currently possible in Bolero (albeit with the shortcoming of the client doing a duplicate request/rendering)?

@jameslittle230 It'd be good to support document metadata more generally, in the form of hash map (Map from string to string), for instance. That would allow me to use stork...

The error can be reproduced by using a particular (pre-revert) commit from https://github.com/soywod/himalaya/pull/73 ``` ❯ nix run github:srid/himalaya/a267f6b876b938605e583147cf311ec5baa7a4b2 error: builder for '/nix/store/vqyq9brra8qmn6yq0jvy7ssn18zhs7cq-himalaya-crate2nix.drv' failed with exit code 3; last 10 log...

Also worth noting that this happens only when the git working copy is not dirty.

Surrounding paragraph with a hardcoded limit that makes sense for UX? You can checkout the backlinks in https://notes.andymatuschak.org/About_these_notes?stackedNotes=z3SjnvsB5aR2ddsycyXofbYR7fCxo7RmKW2be for some ideas. This is something I need to figure out for...

I went with the approach of including entire surrounding "block" element, which is usually paragraph or a list item. You can see it in action in any of the neuron...

If breaking the self-referential record fields case is a concern (which is valid) we can derive on types from the `k -> Type` kind instead, viz.: ```haskell instance HasAny (Const...