Peter Ullrich

Results 32 comments of Peter Ullrich

@dnl-blkv hmm that's a bummer indeed. Well a bummer because to have such functionality would be pretty awesome ;-) . However, it's also been a while since I looked into...

Once prepending/appending becomes [available](https://github.com/phoenixframework/phoenix_live_view/blob/master/lib/phoenix_live_view.ex#L89), move each Store state to its own socket assignment (e.g. `assign(socket, :store_a, %{a: 1, b: "test, ...})`)

The problem with this initially was that Phoenix LiveView didn't support `deep diffing`. So, if we were to put each store-state as a separate assign (e.g. `assign(socket, store_a: %{a: 1,...

Hey there, thanks for the inspiration. I agree that it would be nice to have separated stores eventually. Unfortunately, this would require quite a rewrite of the library for which...

Hey there, thank you for taking a look at this. I agree that calling these 2 opposite functions feels a bit weird and I only threw this code together for...

Small note for future reference: Make sure that your `chromedriver` version is the same on your local machine and on your CI. Pin the version on your CI if necessary....

I ran into this issue again locally and would like to recommend to verify that your `chromedriver` has the same version as your `Chrome`-Browser, if you have one installed. In...

I mentioned this before in https://github.com/zed-industries/zed/issues/4913 but it would be great to be able to define my own keybindings to run 1. all tests in the current file 2. only...

I tracked it down to [this piece of the code](https://github.com/quilljs/quill/blob/main/packages/quill/src/modules/syntax.ts#L133) where the following input is transformed wrongly to the following output. Somehow, the `hljs-class`-keyword confuses the `highlight(text, language)` function and...