Hatem Nassrat

Results 12 comments of Hatem Nassrat

@Tecktron any reason for using the large python base image instead of python:alpine mentioned in this ticket?

I love python, but this will most likely be the hardest part. Python bloats memory to much that in those cases Cython or C might be the answer even if...

It would be nice if a range of error log levels were produced, currently the only meaningful output you get is when you use debug logging. ``` proxybroker --log DEBUG...

+1 on log capture on success, a verbose flag of some sort would be great

+1 this needs to conform, otherwise should not be called twitter-text-python. PS this library has the conformance tests https://github.com/dryan/twitter-text-py

> I vote for similar method > > ``` > @classmethod > def update_or_create(cls, **kwargs): > try: > instance = cls[tuple( > kwargs[pk_attr.name] > for pk_attr in cls._pk_attrs_ > )]...

Adding an ``` class ProcState(Enum): ... def __str__(self): return self.name ``` Allows you to use the enum in queries. It is a hack but it works

I believe the problem shows up if you have a custom ip_resolver which most people would since the normal ip_resolver just looks at the ssh_config. With a custom ip_resolver, you...