Joe Sylve
Joe Sylve
I've got a codemirror editor that I've set up to convert pasted HTML to Markdown as follows: ```javascript this.editor.on('paste', (cm, e) => { let html = e.clipboardData.getData('text/html'); let state =...
When converting text that contains HTML links the Markdown links do not have spaces before or after then, causing them to be concatenated to the adjoining words.
Since we've discussed bumping the major version number on the next release, I figured this was a good time to further break the public API a bit (your big refactor...
This adds a new (optional) `--with-c++-standard` argument to the configure script. Users can select 11, 14, or 17 (default is 11) to choose which version of the standard to compile...
I noticed in commit e5e148960d4e0155df376b376ac7162b97829961 that you re-added the option to `aff4imager` to support the "zlib" compression (deflate is supported). @blschatz pointed out to me that this form of compression...
It seems that the version of osxpmem in this repo hasn't been updated in a while and doesn't support the framework changes. I think the pmem tools should be removed...
The current C API returns -1 on failure and sets `errno` with a specific error value. This behavior should be avoided outside of system calls [1]. I suggest that the...
The current version seems to be based on boost 1.66.0. Are there directions for upgrading to 1.67.0?
https://github.com/polenter/SharpSerializer/blob/55782864a46016c663779688b400026bcb354d4a/SharpSerializer/Core/Binary/Elements.cs#L226 This function returns an invalid number of bytes for signed 8-bit integers. I believe the check should be referencing `SByte.MinValue` and `SByte.MaxValue` rather than `byte`.