Justice Nanhou

Results 14 comments of Justice Nanhou

Thank you really good example. I was thinking about something like the ruby and rails model field generator from the cli. Or the jhipster one for generating Java spring boot...

@rickardenglund why did you pass long Params in the description instead of body. Like this. ```feature Feature ... Given the companies: """ Company 1 Company 2 ... """ When ......

in the [doc](https://flashtext.readthedocs.io/en/latest/keyword_processor.html) you can find something like this: > Characters that will determine if the word is continuing. > Defaults to set([A-Za-z0-9_]) special character is not supported at the...

you can also use the add_non_boundary method to add you special chars like this. also make sur to give a not empty clean name. instead of `kwp.add_keyword('', '')` give somthing...

Hi, do You already try tout change thé building file un thé .Openshift directory ? I des somethin Luke 8.0 change it to 9.0. Regards.

we can just create a repository and start the website and documentation in a separate repository. we can use [Hugo ](https://github.com/gohugoio/hugo) to edit and build the page. then host it...

or even better like the hugo documentation see [https://github.com/gohugoio/hugo#the-hugo-documentation](https://github.com/gohugoio/hugo#the-hugo-documentation) own repo for the doc and add it as git subtree in the main spago repo

For backward compatibility it will be better to allow both angular and angularx for now. Update the documentation and and show warning when used. Then completely remove angularx in a...

You try to marshal an umsorted map `m`. The result is also unsorted which is ok. May be you need to sort `m` first before marshalling. ``` ... sort.Strings(keys) sort.Strings(m)...

here are some points for angular - 2-way data bind and good training content - separation of concern by design - directives to enhance component with reusable logic like translations,...