lublak

Results 121 issues of lublak

Currently i miss some information about: RLexer/RParser R stands for? How can I use the: insertMacro inside other regex? A small example to precedence? I don't know how it works...

currently in some sigils there are always the "skipped" data inside: ```php $lexer->push('\s+', Token::SKIP); $parser->sigil(0); // returns "( " ```

currenlty there is no way to get the name behind a sigil. It can be helpful to debug your parser. ```php $infos = $parser->getSigilInfos(0); // => SigilInfos $infos->getName(); $infos->isToken(); ```

current solution: ```php $i = 0; $gs = []; try { while(true) { array_push($gs, $this->parser->sigil($i++)); } } catch(ParserException) { } ``` it would be nicer if you knew beforehand how...

i use hxparse with haxeparser hxparse throws some warnings out: ``` hxparse/ParserBuilderImpl.hx:136: lines 136-139 : Warning : This case is unused ``` Not really important since it will be built...

I have developed the application with ntlm on the local machine. It ran flawlessly on my machine with ntlm. Now I placed it on the production server but the login...

Just go to: `/home/deck/.var/app/net.retrodeck.retrodeck/data/yuzu/load/` Find the right id. And put you zip content into the folder with the id. https://yuzu-emu.org/wiki/switch-mods/ https://yuzu-emu.org/help/feature/game-modding/

enhancement

### Is your proposal related to a problem? The components are invisible in the editor. But it would be practical to see them in the editor, so that you have...

feature request

I have some special urls thats get mapped to local files like image50%.png. ``` app.get('/open/:path(*)', (req, res) => {}) ``` But it doesn't work because express automaticly calls decode_param. It...

question
module:router

What is the current maintenance status of this project? Is the project maintained?