Wez Furlong
Wez Furlong
well, in a bit of a twist, it seems that CGL initialization can sometimes pause for ~10 seconds at a time on macOS 11.2 as we discovered in https://github.com/wez/wezterm/issues/452 so...
Not for mac: ``` 19:49 wez@mba ~/Downloads/MetalANGLE.dylib.mac ; lipo -info libGLESv2.dylib Non-fat file: libGLESv2.dylib is architecture: x86_64 19:50 took 11s wez@mba ~/Downloads/MetalANGLE.dylib.mac ; file libGLESv2.dylib libGLESv2.dylib: Mach-O 64-bit dynamically linked...
My application uses cross-platform GL bindings that want to dynamically load libGL, so I can't use the framework version.
Ah, I see, I can copy the framework in and rename it to libEGL.dylib and load it that way
This is where this action manipulates the path: https://github.com/actions-rs/core/blob/master/src/commands/rustup.ts#L89-L90 that appears to call through to a core module whose docs are over here: https://github.com/actions/toolkit/blob/main/docs/commands.md#environment-files That talks about manipulting a file...
FWIW, `termwiz` has first class support to tracking hyperlinks as attributes on a per cell basis. It does however have a much less mature widget layer. I'm not here to...
I took a stab at implementing the type states proposal from https://github.com/japaric/embedded-hal/issues/35#issuecomment-372003122 in my simple sx1509 driver (https://github.com/wez/sx1509/commit/a063f2ce7cb3761279d411c3aeb98332f0312788). A notable difference is that I didn't include the delegation from `Owned`...
I'm seeing this with both script and textarea; inserting an empty string does workaround it
v1.5.3 has the interesting behavior of closing your tab when you hit delete in any input box in the dom (after clearing the shortcut field in instachrome prefs and saving...
I tracked down the difference that the readme mentions; it's just to allow underscores in the name: ```diff $ diff -u zc-upstream.py zeroconf.py --- zc-upstream.py 2021-01-23 23:01:15.599935355 -0800 +++ zeroconf.py...