Rushan Shaymardanov

Results 3 issues of Rushan Shaymardanov

I have a migration with the following code: ``` def migrate(migrator, database, fake=False, **kwargs): """Write your migrations here.""" MyModel = migrator.orm['my_table'] type_new = pw.CharField(null=True, constraints=[pw.Check( "type_new in ('type1', 'type2', 'type3')")])...

On linux, file names are actually bytes, not unicode. Yara can not scan file containing non-unicode bytes: ```python import pathlib import os import yara p = pathlib.Path(os.fsdecode(b'/tmp/\x44\xf9')) p.write_text('malware') rules =...

Hello. We are using hyper to send push messages using Apple Push Notification Service. Some times we get `TooManyStreamsError: Max outbound streams is 500, 500 open` when sending HTTP2 request....