Steve Fan

Results 197 issues of Steve Fan

It is something like this: https://www.baeldung.com/linux/overlayfs-usage For example, we have can have a special folder called `tf2-overlay` and then it will merge the content into the `tf2` folder, so we...

From https://github.com/openanalytics/containerproxy/issues/62: > # Synopsis > We tried to patch pod template before launching, but since ContainerProxy only assumed Docker use cases, that is, configurations are based on one container...

enhancement

What if I can supply a `Vec` and won't have to expand the buffer and retry the request again? Example code in question: https://github.com/stevefan1999-personal/rust-igd/blob/e52d615a395e25b9134cea56e1d3225317d868ea/src/aio/mod.rs#L47-L70

It seems like e48e2179261140276a8c432fb89068e4f1961096 introduced a regression bug in NFA generation: ``` grammar C { options { Axiom = "translation_unit"; Separator = "SEPARATOR"; } terminals { // A.1.1 Line terminators...

This PR implements part of the idea expressed here: [https://github.com/cenotelie/hime/issues/88#issuecomment-1761391207](https://github.com/cenotelie/hime/issues/88#issuecomment-1761391207) > I have another obscure idea I can't express clearly (I'm not sure if that's novel or not) that if...

Wouldn't it be nice if we could do: ``` for_statement -> 'for'! '('! initial=(expression_statement | declaration) condition=expression_statement post_operation=expression? ')'! body=statement; ``` Instead of: ``` for_statement_initial -> expression_statement | declaration; for_statement_condition...

question

Consider an XML file: ``` ``` And this: ``` ``` Clearly the latter is wrong. Right now there is no way to add tags with regards to context sensitive rules...

question
wontfix

Things like **XID\_Start and XID\_Continue** are missing, and those are conventional way to make valid Unicode identifiers. [UAX #31: Unicode Identifiers and Syntax](https://unicode.org/reports/tr31/)

enhancement