Yifei Teng
Yifei Teng
@deepak1556 I can confirm your build works on debian sway version 1.8.1 and also crashes when opening multiple vscode windows that way (I ran `ELECTRON_RUN_AS_NODE=1 ~/Downloads/electron-v25.8.4-linux-x64/electron /usr/share/code-insiders/resources/app/out/cli.js /usr/share/code-insiders/resources/app/out/main.js --ozone-platform-hint=auto`
@deepak1556 I'm not sure how to test opening new windows with fiddle. The electron prebuilt you sent opens a welcome window but doesn't appear to support creating new windows. Strangely...
I wonder if using generics is ever possible in Realm. I'm pretty new to Objective-C and only recently discovered that generic classes cannot be marked dynamic. Does this imply they...
Would it be possible to extend Realm such that we can use `List` with a generic type parameter, by creating non-generic counterparts through substitution at runtime? Maybe the new Swift...
You're right, `Foo` could be different every time. What I'm proposing is not accommodating arbitrary type parameters, but translating `Foo` into a non-generic type without erasing the parameter (think of...
Yes. Well I agree that doing the transformation is the job of the compiler, but maybe we can leverage the reflection support in Swift to inform the type to Objective-C....
Note that since macOS 14 Mojave, it is not possible to send Apple events to Finder without user confirmation, so the AppleScript trick doesn't work anymore for translocated apps. Perhaps...
@JeremyAgost I was referring to this line: https://github.com/potionfactory/LetsMove/blob/master/PFMoveApplication.m#L408 It seems that all other attempts at removing a translocated app fails, and this last resort was blocked in macOS 14.
The library is on NPM. It'll take some effort to use it in a pure ES5 setting. So most likely you'll still need JSPM.
We _could_ transpile it to ES5, but it is kinda ugly. Decorators have to instead wrap the entire function, or otherwise get manually invoked after the function definition.