John Vandenberg

Results 1268 issues of John Vandenberg

Using x86_64-w64-mingw32-gcc on host macos building a rust wrapper for C project https://github.com/swift-nav/libsettings/ , the macos default `/usr/bin/ar` was being used and naturally failed. `CMakeError.log`: ``` Compiling the C compiler...

### Documentation Feedback https://github.com/angular/components/blame/main/src/cdk-experimental/popover-edit/lens-directives.ts#L51 includes the following in the docs > A two-way binding for storing unsubmitted form state. If not provided > then form state will be discarded on...

docs
P4

If the action was only using `channel: 'stable'` , it would be helpful for the action to print out the version which was installed so the CI logs have that...

The tests are empty https://github.com/ivlevdenis/drf_pretty_exception_handler/blob/master/tests/test_drf_pretty_exception_handler.py

I built cargo-make from source `cargo install --path .`, and then when running `cargo install-update` ``` $ cargo install-update taplo-cli cargo-make Updating registry 'https://github.com/rust-lang/crates.io-index' Package Installed Latest Needs update taplo-cli...

Demo for https://github.com/idlesign/django-siteprefs/issues/23 Includes Mimic hackery so that the following works ```py from django.conf import settings as django_settings from django.http import JsonResponse def settings(request): return JSONResponse({ 'site_name': django_settings.SITE_NAME, }) ```

I have a test case using [`django.test.override_settings`](https://docs.djangoproject.com/en/3.0/topics/testing/tools/#django.test.override_settings) which is failing when the pref is part of siteprefs. My workaround is to use mock ```py def test_setting(self): import foo.settings with patch('foo.settings',...

question

Early import of Preference causes AppRegistryNotReady Related to https://github.com/idlesign/django-siteprefs/issues/15