Romain Slootmaekers
Romain Slootmaekers
I recently worked on the ordma package and needed to implement a new Lwt engine, based on librdmacm's rselect. There were some problems: - Lwt checks for readability (`Lwt_unix.readable`) on...
Sometimes, a package is patched after a release, and then it's released again, with **the same** version. This practice makes it hard to track dependency changes, but it also (probably)...
The phpdoc states: ``` /** * Decode the response from youtube, extract the list of resource objects * * @param string $apiData response string from youtube * @throws \Exception *...
on a Quad-Core AMD Opteron 2350 we got: ``` #0 _mm_aeskeygenassist_si128 (__C=, __X=...) at /usr/lib/gcc/x86_64-linux-gnu/4.8/include/wmmintrin.h:88 #1 _nc_aesni_derive_e_key (rounds=, rk0=, key=0x1fe0b30 "") at src/native/aes/aesni.c:106 #2 caml_nc_aes_derive_e_key (key=140673840720632, off1=, rk=140673840720576, rounds=) at...
I have a protobuf definition: ``` message Batch { ... repeated uint64 sequence = 2 [packed=true]; ... } ``` which gets compiled into ``` type batch_mutable = { mutable sequence...
your current performance bottleneck seems to be iterating bitsets. Maybe try to short cut the iteration via an efficient calculation of the number of trailing zeroes. I just pasted the...
``` stx@R25U19:~$ ovs monit Traceback (most recent call last): File "", line 3, in File "/usr/lib/python2.7/dist-packages/ovs_extensions/generic/configuration.py", line 211, in list return cls._list(key, recursive=recursive) File "/usr/lib/python2.7/dist-packages/ovs_extensions/generic/configuration.py", line 260, in _list recursive=recursive)...
``` //var x = [1,2,3,4] // interpreted as number //var x = ['a','b','c', 'd']; // used as labels var x = ['-1','1e1', '0x64']; // now they're numbers :( var trace1...
``` rm -rf /home/romain/workspace/Effex/JULIA curl -fsSL https://install.julialang.org | sh -s -- -y -p=/home/romain/workspace/Effex/JULIA info: downloading installer Welcome to Julia! This will download and install the official Julia Language distribution and...