Alex Skalozub
Alex Skalozub
Hi. I've just wrote a [diagnostic report parser](https://gist.github.com/pieceofsummer/65514e56678d34505cd653f69a8e1fe5), which decodes the attached logs and command outputs. Usage: `python ./parser.py diagnostic-report` It will create a `diagnostic-report-files` directory with all attached logs...
While writing an `ObjectId`-like class for another project (where I needed a time-based identifier, but didn't want to bring dependency on a whole `MongoDB.Bson` package just for `ObjectId`), I was...
The schema is obviously based on SqlServerStorage, but unlike MySql, SqlServer's `float` is actually `float(53)` by default, and is a 64-bit floating-point value. The score being 32-bit floating-point value results...
From Twitter thread: https://twitter.com/pieceofsummer/status/922743962271670273
Here we go. Based on `AsyncLocal` and supports nested scopes. I've looked through all @HangfireIO repos, and haven't find any mentions of `InnerScope`, so it was dropped. Added some unit...
The current implementation of job filters suggests two possible ways of using them: - Local filters added as attributes to Job class/method, - or - - Global filters' instances added...
**Describe the bug** Variable-size array introduces junk assignment instructions in the code; functions taking it as an argument are called with incorrect number of arguments (and it is impossible to...