Clouds
Clouds
Maybe we should use [winsplit-rs](https://github.com/chipsenkbeil/winsplit-rs) according to https://github.com/comex/rust-shlex/issues/20
I'm using alloy-rs to collect events/logs for some contract. After [`SolEvent::decode_log_data`](https://docs.rs/alloy-sol-types/latest/alloy_sol_types/trait.SolEvent.html#method.decode_log_data) I would get `U256` or `I256` and sometimes `U24` depends on the contract. Then I'd like to convert then...
Same here, any workaround?
After some investigation, the `Edit` menu is introduced in whiskey modified wine https://github.com/Whisky-App/wine/blob/c62434837078fc96cff3651a84d2d6614304708f/dlls/winemac.drv/cocoa_app.m#L341-L355. And to disable it: * globally: add empty string item `EditMenu` in `HKCU\Software\Wine\Mac Driver` * per app:...
> What is the implication of this? Does it fix the "ERR_ACTION_ACCESS_UNDEFINED" errors? Those are 2 topics. * fix `{root: 'true'}` means in current implement, following code would not be...
@championswimmer I'm glad to deprecate the old `getModule` way as it makes things like reusing a module harder. If we do so, I think the code and/or the logic could...
I found `let adjustment = 56` failed on extra monitor. Update: It should be `LogicalSize(0, 28)` empirical. (though I cannot find any documentation, the original code introduced in https://github.com/DioxusLabs/dioxus/commit/e923c6462c497a55388a62b93373fba972847594, could...
What's blocking here?
On macos, there's 1-1 mapping from points on screen to points in Logical Position, (and there's 2 points on screen have the same expression in Physical Position, like (1380, 100))...
the space trick would not always work ``` cmd.exe ' /c' echo 123 # works cmd.exe ' /c' "echo 123" # not work ``` and we have to write ```...