Glen Huang

Results 23 comments of Glen Huang

Is `first()` not being faster than `max()` due to the reason that `first()` doesn't return early? Is it possible for an aggregate function to return early and not to look...

Same question. Ideally another function that tests both absolute or relative paths could be provided.

If you want to change the whole background without having the content being taller than the fold, being able to change body class is pretty vital. Is there currently a...

BTW, I think this feature might somewhat relate to https://github.com/sveltejs/sapper/issues/374. That issue is basically asking a way for svelte to render directly at the html/body level, instead of a child...

I did some experiments: Given the empty window, if I drag the mouse through where the heading should be and right click, the menu prompts me to search for the...

I tried this, same result: ```rust fn main() { let context = tauri::generate_context!(); tauri::Builder::default() .menu(if cfg!(target_os = "macos") { tauri::Menu::os_default(&context.package_info().name) } else { tauri::Menu::default() }) .build(context) .expect("error while running tauri...

I don't think I'm experiencing the same issue as @alexgraddev did. I have set `tauri.macOSPrivateApi` to `true` in `src-tauri/tauri.conf.json`, same result, and I don't see any white background of web...

@hudochenkov thanks for the quick reply. Do you happen to know any case where it can break? I just checked the csswg, it doesn't seem to mention anything about order...

I’m in the hope that they might compress better, just like why you’d want to sort regular properties.

@poy @balshetzer I'm struggling to test the following scenario with `Do()`: Say my function `foo()` calls two mocked method `.F1()` and `.F2()`, I want to test the argument passed to...