Daniel Deng

Results 7 comments of Daniel Deng

> Will you contribute a patch for that? Thanks! Yeah sure. I'll try to do that in the weekend :) I'm just not familiar with `Test::Nginx::Socket::Lua` though. Let's see what...

That would be great if German is supported. It doesn't seem to be as straightforward though. Example: - Singular: `Internationalisierungsstrategie` - Plural: `Internationalisierungsstrategien` How can we tell they are `Internationalisierung`...

A few compound word examples here: - `Internationalisierungsstrategie` -> `/(.+)ung[s]?(.+)/` - `Zwischenzeit` - `Höchsttemperatur` - `Haustürschlüsselloch` Normally when we program in German how do we deal with umlauts? Use `e`...

https://github.com/fp-works/function-composition-cheatsheet/pull/2 has addressed the first bullet point, thanks to @stevemao 's awesome contribution.

@lqhuang you can do something like this: ```bash ls packages | xargs -I % sh -c "pdm build -p packages/%" ``` or taking one step further, create a `pdm.sh`: ```bash...

@gg-mmill I'd suggest adding this into `README.md` too: ```bash ls packages | xargs -I % sh -c "pdm update -p packages/%" ``` or create a wrapper shell script, e.g. `pdm-sub-pkgs.sh`...

@mttbernardini In your case, try ```bash pdm run pytest -p ``` --- I personally use a shell script, under `./bin/pdm.sh` ```bash ls packages | xargs -I % sh -c "pdm...