Harro van der Klauw
Harro van der Klauw
Title sais it all.. I removed a host from the preferences which was active. But it wasn't removed from my /etc/hosts/
As the title, I really like the script service option to just run a script which outputs a color or a pattern. But it would be nicer if the color...
https://github.com/pypa/pipx is awesome for little tools like this, but for it to work it needs to be an actual package that can be pip installed.
The current build setup support coveralls but it's currently not working because the repo isn't signed up at coveralls.
We started used deprecate-fields and saw this warning in our logs. Turns out django-fsm uses `inspect.getmembers` which in turn does a `getattr(object, key)` where the object is the class, not...
Steps to reproduce: 1. Have 2 projects with pipenv installed 2. `cd project1` -> pipenv activated for project1 3. `cd ../project2` -> pipenv stays the same What I expected: 3....
On this line: https://github.com/sibson/redbeat/blame/2012b23f890ad5a25e082b03daf8a4a2a3db6536/redbeat/decoder.py#L84 with ```AttributeError: 'NoneType' object has no attribute 'total_seconds'``` Why would the timezone be set to a number of seconds anyway?
I have a category type: ```python @strawberry.django.type(models.Category, pagination=True) class Category: id: auto name: auto slug: auto parent: "Category" children: List["Category"] ``` The graphql then adds pagination to the parent relation,...
…pagination. Also changed the logic in ordering and filtering to match and keep it consistent. Made it so that ordering, filtering and pagination are not added to the list, but...
Right now in the template you loop through the columns to display the headers. Then you loop through the rows and for each row through the values. It would have...