David D Lowe

Results 69 comments of David D Lowe
trafficstars

Not really, try it for yourself: https://mixed-script.badssl.com/ (this one gives no user-visible errors on Chrome, but it blocks the script) https://mixed.badssl.com/ (this one gives no user-visible errors on Chrome, but...

Of interest for probably anyone affected by this issue is that .po files are not up-to-date with code either. (Issue https://github.com/pennersr/django-allauth/issues/1259)

Here is the workaround that I ended up using. In `projectname/settings.py`, I added these lines at the end: ```python # Monkey-patch fix: import allauth.app_settings allauth.app_settings.SOCIALACCOUNT_ENABLED = True ``` However, I'm...

(Ignore my previous deleted comment.) I like this behaviour better than the existing behaviour. If I type `from os import` without any pauses between keystrokes, I don't end up with...

I just tested this on my home Ubuntu 17.04 computer with vim 8.0, and I couldn't get suggestions or autocompletions to work after typing `from os `, neither in 3176b49...

It works on my work computer (macOS, vim 8.0), just not on my Ubuntu 17.04 computer (vim 8.0).

Again, it works on my work computer (macOS), but not on my home computer (Ubuntu 17.04, vim 8.0, package version: 2:8.0.0095-1ubuntu3). Sorry, I realise that's not very useful, I hope...

After doing some digging, it turns out that I can adjust the order I expect by adding these `account` lines: ``` account expenses account assets account expenses:b account assets:a commodity...

I would quite like to have this declaration order, to have all the cash accounts first, then all other asset accounts next (which in my case are "receivable"), then liabilities,...