Christophe de Vienne
Christophe de Vienne
Given the following enum: ``` enum Counter { Value(Number) NoValue } ``` I wrote the following code in a component: ``` state counter : Counter = Counter::NoValue fun inc {...
The solution was to add "BASECFLAGS=-U_FORTIFY_SOURCE" as a configure option (as seen on https://bugs.launchpad.net/ubuntu/+source/gcc-defaults/+bug/286334). The issue seems to occur since ubuntu intrepid, and is related to the default options of...
Using go-libreofficekit I have this error message coming up: ``` signal 23 received but handler not on signal stack fatal error: non-Go code set up signal handler without SA_ONSTACK flag...
Not really an issue I guess but currently testing wayland, I find myself cruelly missing xcape !! Since I have absolutely no idea how the same could be achieved in...
Using binary websockets and handle the messages in Elm currently means encoding/decoding to/from strings to get the data through ports. The lamdera compiler already provides this feature, making things more...
This attribute expects a markdown content. If defined, the html output will render it in the 'info' header of the test stuite.
Using {{ and }} for variable substitution makes it cumbersome to generate venom scripts with yaml library, when we need to make data substitutions (as opposed to string substitutions). The...
Add a 'command' property to 'exec' It is an alternative to 'script' that takes an explicit list of strings and does not use a shell. It makes it easier to...
If set, the value is written to the script stdin. This avoid the need to use 'echo' in the script, which makes thing clearer. It is also particularly useful in...
When parsing a protocol chunk by chunk, we need to stop successfully with every thing we decoded so far, and keep the remaining bytes for later. The current decoder API...