Daniel Sockwell
Daniel Sockwell
After #36, Flodgatt now supports an env variable that specifies whether to connect to Postgres via SSL. However, it does not yet support connecting to Postgres with SSL without manual...
Flodgatt is currently using some older versions of its dependencies, as specified in its `Cargo.lock` file and does not currently build with more recent versions of those dependencies. This is...
I recently noticed the similar project [loccount](https://gitlab.com/esr/loccount) and it looks like it supports several languages that we currently don't. I'm dropping them here in case anyone is looking for good...
`install-dist.raku` was created in February 2022 (6ddf75296ec746075ea6760a34c0d60a14e48f0a) with the same content as `install-dist.p6`. Since then, `install-dist.raku` has had 3 commits; of those, 1 was also applied to the `.p6` script...
The SSE filter has a `keep_alive` method that sends periodic messages to clients to persist the connection. However, the WS filter lacks similar functionality, even though it is sometimes needed...
When looking into #5443, I (incorrectly) believed that issue to be caused by a broader problem with how `Match` methods are being called internally; based on belief, I changed the...
Character sets (the thing that's created when different enumerated character classes/unicode properties/etc are combined, as in ``) can contain rules/tokens/etc. E.g., ``. This feature is undocumented (I'll be opening a...
The docs currently refer to `` as a synonym for `
The documentation currently uses the term "currying" to refer to what is more broadly known as "partial function application" (but frequently incorrectly called "currying"). However, Raku generally doesn't use the...
The [docs describe](https://docs.raku.org/language/regexes#Enumerated_character_classes_and_ranges) how you can combine enumerated character sets (e.g., `[0..9]`) and/or Unicode properties (e.g., `:Lu`) into character sets by using `+` and `-` (e.g., ``). However, they don't...