Boris Nagaev

Results 67 issues of Boris Nagaev

Compare speed: Before: ``` $ timeout 10s ./shallot ^abcdefgh Caught SIGINT/SIGTERM after 19390861 tries - exiting. ``` Now: ``` $ timeout 10s ./shallot ^abcdefgh Caught SIGINT/SIGTERM after 32956370 tries -...

This bug is reproducable on one computer (Debian stable i386). But it does not affect another computer with Debian testing i386. Example: 1) $ time ./shallot ^hell real 0m1.330s 2)...

Code: ```c typedef struct aaa { enum { bar = 1 } foo; } aaa; int main() { } ``` Problematic AST: ``` |-RecordDecl 0x643013d9a6d8 line:1:16 struct aaa definition |...

d: bug
c: transpiler

The implementation runs up to 8 AES instructions in different registers one after another in ASM code. Because CPU has instruction pipelining and the instructions do not depend on each...

Most of `ifdef WIN32` code in hyperscan tree is compatible with non-MinGW compilers on Windows (e.g., Visual Studio). [This patch](https://github.com/mxe/mxe/blob/1875b2fb99f999a60fba4dc11699fbc18282ba30/src/hyperscan-1-fixes.patch) is needed to build hyperscan in [MXE](http://mxe.cc/).

I'm trying to convert a big library which has many functions calling each other and just few of them are public. Nevertheless I have to write a lot of declarations...

In my application, I have two slow actions: - create multiple instances of a model (~40 instances) - update multiple instances of a model (~20 instances) Both of them take...

http://leafo.net/lapis/reference/actions.html Link "configuration variable" doesn't work. Should it be "configuration.html"? http://leafo.net/lapis/reference/database.html Link "the migrate command". Should it be "command_line.html"? http://leafo.net/lapis/reference/command_line.html "For example, if you have a production deployment, you might...

Postgres supports publish-subscribe feature. One client listens on a channel (provided as a string), while another (or same) client send a notification. It can be used to send notifications accross...