Andreas Källberg
Andreas Källberg
@tolysz That was my first thought too, but I feel like that might be too much of a breaking change. It also have the downside that there are two different...
I meant that if anyone is pattern matching on `Value`, it will complain about missing cases, but I guess that might be very rare in practice. It also might not...
I believe the reason for this issue is that for all namespaced attributes [the value is an object](https://github.com/elm/virtual-dom/blob/5a5bcf48720bc7d53461b3cd42a9f19f119c5503/src/Elm/Kernel/VirtualDom.js#L268), https://github.com/elm/virtual-dom/blob/5a5bcf48720bc7d53461b3cd42a9f19f119c5503/src/Elm/Kernel/VirtualDom.js#L263-L270 which we then [try to compare by reference](https://github.com/elm/virtual-dom/blob/5a5bcf48720bc7d53461b3cd42a9f19f119c5503/src/Elm/Kernel/VirtualDom.js#L912). https://github.com/elm/virtual-dom/blob/5a5bcf48720bc7d53461b3cd42a9f19f119c5503/src/Elm/Kernel/VirtualDom.js#L911-L913 This is...
Adding a condition like this ```javascript if (xValue === yValue && xKey !== 'value' && xKey !== 'checked' || category === 'a__1_EVENT' && _VirtualDom_equalEvents(xValue, yValue) || category === 'a__1_ATTR_NS' &&...
@shmish111 We can fix the hard-coded ghc version by extracting it from the `myGhc` derivation: ``` my-program-invoker = pkgs.stdenv.mkDerivation { name = "my-program-invoker"; unpackPhase = "true"; buildInputs = [ myGhc...
Same here. I'm on MacOS Catalina Here is a log from the content script of it failing: ``` AudioPick(https://www.twitch.tv/konfycare): Received message: report_sink_no content.js:27 AudioPick(https://www.twitch.tv/konfycare): Reply with: sink_no: 8 content.js:27 AudioPick(https://www.twitch.tv/konfycare):...
In the log above "No sinks found" looks like a very relevant error. I don't know what it means though
@fendor > > Nix > > Is there a way to get the ghci arguments from nix that are used to compile this script? I think by default it doesn't...
@jneira What do you mean with "natively"? Is WSL ok? If so, I would assume that all three should work in all three major environments (Linux, Mac, Windows), but I...
@fendor Why does not needing command line arguments make it difficult? I am not familiar with the internals of how hie-bios works. Why is not environment variables sufficient? If all...