Asad Saeeduddin
Asad Saeeduddin
Maybe I'm not understanding but if you just want a `MatrixBot` that prints out all the users in the room there's nothing stopping us from just writing that now and...
Are GUI applications not supported on Windows yet? There's a workflow for running containerized GUI apps on Windows 10 that goes like this: - Start X Server (XMingW or Cygwin/X),...
@matthieudelaro Alright then. What should be the strategy for installing X? Do you just expect it to be on the machine or install it yourself?
Perhaps we could use subtraction types to express this. `{ [P in string - "marginLeft"]: CSSProperties }`?
If the primary benefit of this is introducing additional members to the type signature, you can already do that with interface merging: ``` ts interface Foo { foo(): number }...
@davojan Sure. Here you go: ``` ts class A { } namespace A { export let foo = function() { console.log("foo"); } } A.foo(); ```
@joyt Could you provide a playground reconstruction of the problem? I don't use react-redux, but as I've mentioned before, I think any extensions you desire to the shape of a...
@Mikolaj Could you explain for posterity what it does? I am very curious.
@Mikolaj Sorry I wasn't clear, I meant to ask what `ignore-project` does! I was not able to find it from a cursory search [here](https://cabal.readthedocs.io/en/3.4/cabal-project.html), which is the first Google link...
@DanielRosenwasser Say we treat functions of the form `(a: A, b: B) => R` identically to functions of the form `(a: A) => (b: B) => R` for the purposes...