Ilya Kulakov

Results 232 comments of Ilya Kulakov

Codecov is a convenient way to see how much of the project is covered with tests. Moving tests out of the main repo allows not to ship them. Having config...

According to [the comment on redmine.org](http://www.redmine.org/issues/8421) all services based on pre-rails 3 are affected. As you can see from the comment, the problem is redmine does not pre-process [user input](http://www.redmine.org/issues/8031)....

@johnezang Unfortunately I need to parse likely big chunks of JSON data (10-20MB divided into ~100KB parts). So the "External preprocessing takes longer" disadvantage is serious enough. I think it...

> If you look at the resulting dylib's segment_command for __LINKEDIT, does it have a big filesize? ``` $ size -mlx ghidra/TimeMachine __TEXT __DATA __OBJC others dec hex size: object:...

Perhaps a solution that's more inline with decorator-esque customization is to provide decorators that would split attrs into transforming and freezing: ```python @attr.freeze @validate_attr_types @attr.transform class Foo: bar : str...

@ionelmc PDB allows you to inject set_trace by receiving the SIGINT signal. One way to send SIGINT is by doing this on the local system (e.g. via `kill` or from...

Well, it's pretty obvious what I want to achieve: being able to break execution at arbitrary point without having direct access to the remote machine :) One solution would be...

@ionelmc I need this on Windows as well :(

Sure. Right now I'm struggle another problem, but that's rather related to pythons internals :)