Sean Middleditch
Sean Middleditch
Required to successfully link when compiling with non-default calling conventions. e.g., if the hosting app is compiled with /Gv to use the __vectorcall calling convention by default, which is sometimes...
Begin using proper sonames (on ELF platforms) and name versioning for API/ABI breakages. `libtelnet.so.1` `libtelnet-1/telnet.h` `libtelnet-1.dll` etc.
Ponder seems to make many needless allocations. For a first example, let's look at the `.property` member of `ClassBuilder`: ``` ClassBuilder& ClassBuilder::property(const std::string& name, F1 accessor1, F2 accessor2) ``` Note...
Behavior observed on the public demo. Entering a newline does not trigger expansion like hitting space does. Example: input: ``` text *highlight* text ``` produces: text *highlight* text (note that...
From experience writing a lot of code-generation sorts of templates (e.g. generating C++ or C# code, not HTML "code"), a useful variation of this feature is to allow a block...
Adding WP-MarkDown to an existing blog will cause all old posts to be handled by WP-MarkDown. The plugin should only have an effect on posts that are originally authored by...
The library is great! The only real issue I've run into at all is that I need RGBA hex, e.g. getting 8-digit `#rrggbbaa` format output, which the library does not...
Webby doesn't have any user data in `WebbyServerConfig`. This means that the callbacks like `ws_connect` can't receive any user data (because there's none to receive) and `WebbyConnection` can have only...
webby.c around line 1333: ``` timeout.tv_sec = 0; timeout.tv_usec = 5; err = select((int) (max_socket + 1), &read_fds, &write_fds, &except_fds, &timeout); ``` I experienced large hitches in the `select()` call...
Rename `format_output` to `format_context` Add `format_parse_context`