Stephen Mathieson
Stephen Mathieson
I've been working on a similar concept, called [clib](https://github.com/clibs/clib). Thoughts on working together and possibly allowing ccan modules to be installed with clib(1)?
Just out of curiosity, I ran the test suite with `make VALGRIND='valgrind --leak-check=full' test`. Everything looks good excluding the issues tests: ``` valgrind --leak-check=full ./issues ==16091== Memcheck, a memory error...
The example leaks 48 bytes (see [this valgrind report](https://gist.github.com/stephenmathieson/9672946#file-valgrind-report-txt)): ``` c #include #include int main(void) { char *path = "/tmp/foodb"; void *env = NULL; void *db = NULL; int rc...
something like: ``` my program ✓ should do stuff ✖ should fail sometimes Assertion error: 0 == 12 (example.c:11) ✓ should be ok after failures ✓ should bundle assertion macros...
might be useful as this is a build tool
add support for: ``` js new Obfuscator() .set('foo', 'bar') .obfuscate(function (err, obfuscated) { ... }) ``` or something less stupid
I want to add the feature discussed in #2, but want to make sure I don't break anything by doing so. This patch adds a GitHub action for running the...
``` stephenmathieson at UTA in ~/repos/github.com/littlstar/b64.c on master $ valgrind ./test ==1936== Memcheck, a memory error detector ==1936== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et al. ==1936==...
It'd be nice to not require Prism to be exposed globally. I tried doing: ``` $ npm install prismjs react-prism ``` and rendering some components, but no such luck.
## Prerequisites * [x] I am running the latest version. (`up upgrade`) * [x] I searched to see if the issue already exists. * [x] I inspected the verbose debug...