Matt Stancliff

Results 59 comments of Matt Stancliff

The "leafness" is already stored as a 1-bit tag: ```c /* Macros to manipulate pointer tags */ #define IS_LEAF(x) (((uintptr_t)x & 1)) #define SET_LEAF(x) ((void *)((uintptr_t)x | 1)) #define LEAF_RAW(x)...

Also would be cool if [borgbase](https://www.borgbase.com/) would be interested in offering bupstash support eventually once long term storage formats settle down a bit. They even wrote a [mac desktop backup...

Good to hear! Always easy to switch backup providers when better alternatives come along.

Is this commit right? The Makefile has: ``` ../priv/stdin_forcer: stdin_forcer.c @mkdir -p ../priv $(CC) -Wall -Werror -pedantic -ansi -O2 -o ../priv/stdin_forcer stdin_forcer.c ``` Looks like changing the loader to `get_base_dir(?MODULE)...

Good point about turning it into an application. Maybe version 2.0 will be application + consistent naming + better worker pool.

Last I checked, rebar tries to compile anything in c_src to a shared library linked against erlang interfaces. The stdinout binary is just a standalone executable. If you want to...

Keywords -- "last I checked." Looks like newer versions of rebar don't use the `port_pre_script` and `port_cleanup_script` blocks anymore. Everything got moved to a centralized `post_hooks` block. Let's compromise. I'll...

oh, good catch. could also just do it manually with a hand rolled infinite generator: ```python In [1]: import random In [2]: randos = [random.randbytes(3000) for i in range(333)] In...

From the python version: > #### Unicode > > `hiredis.Reader` is able to decode bulk data to any encoding Python supports. > To do so, specify the encoding you want...

> I am preparing an RCP for a memory related stat to be tracked and made available in the info command. Just adding a single new field should be fine...