Charles Machalow

Results 95 comments of Charles Machalow

Can something like this be merged? I just hit this issue when attempting to mount from a nonstandard location (like /dev/disk/)

Found this thread. The ability to BOOST_SKIP would help bring boost test in line with some other frameworks like: For Python: pytest: ``` pytest.skip() ``` unittest: ``` unittest.skip() ``` For...

Here is a simple example for pytest: ``` import pytest def test_a_pass(): pass def test_a_fail(): assert 0, "ouch" def test_a_skip(): pytest.skip("skipping!") ``` Then in the test result we see: ```...

Here is a bit more complicated example for pytest (using a fixture): ``` import pytest @pytest.fixture(scope='function') def setupAndTeardown(request): # setup goes here if request.node.name == 'test_a_fail_in_setup': assert 0, "This test...

I see this as a combo of FancyZones and Window Walker. I'd say use Ctrl+Win then put a '+' in front of an app name that you want to open....

I still see this today. ```ui_reloadscheme 1``` did not help. Any new thoughts?

@boppreh , how do i hook on an event only if is_keypad is True?

May be related: https://github.com/apache/airflow-client-python/issues/50

An alternative approach could be to just turn the current community blocking from list of communities to list of community regexes. It would also need the ui to allow you...

Hey folks, I wrote that PR for yt-dlp.. and somehow found this thread. It uses ShadowCopy and works just fine when elevated. Another way of potentially getting cookies is to...