Jim Hurd
Jim Hurd
I keep running into issues with the template compiler and I can't debug them because it just says "unexpected token, expected "," (1:2) where 1:2 doesn't seem to correspond to...
flutter: MobileScanner: No camera found or failed to open camera! Lost connection to device. jim@JamessMacStudio example % jim@JamessMacStudio example % flutter doctor Doctor summary (to see all details, run flutter...
[Explained in detail ](https://macmule.com/2022/01/29/macos-monterey-12-3-will-remove-python-2-7-usr-bin-python/) I can submit a patch, but wanted to discuss the appropriate way. I suggest changing project_tools.sh to use python3, and checking for its existence, then changing...
An augmented sequence might be useful to add: ```C++ template struct aug_seq_full_entry : entry { using val_t = bool; // not used using key_t = typename entry::key_t; using aug_t =...
Are you interested in pull requests? I've a few patches that let me compile with visual studio, but I wasn't sure if you would be interested in supporting this as...
I think these should be inline by virtue of being in a header? Alternately they could be wrapped by FJ_IMPLEMENT or similar.
### Description Appearance.Of creates a problem supporting playwright. Appearance.Of asks for a single element (driver.FindElement), but in selenium this apparently is really "find any". This violates strict mode which is...
### Description I have written a WebDriver on top of Playwright, and I'd like to use it with Boa including the functionality in the Selenium folder. ### Alternatives For my...
TS generators can only access the promise indirectly through co_yield. Macro based coroutines can access the promise area directly, and can use it to pass information in to coroutines as...
Allow coroutine resume functions with type value_type (\*_Resume_fn)(void* ) The current resume function void (\*_Resume_fn)(void*) reduces performance for a significant subset of generators compared to macro based coroutines. We should...