Manuel Rubio
Manuel Rubio
### Steps to reproduce Create a release and then a new release with upgrade option. Then run the old release, perform an upgrade to the new one, stop the running...
In terms of avoiding collapse Logger waiting for the sent of messages to Graylog, I've developed another implementation based on the sending on the messages through workers in an async...
Related to #47
Hi, I'm trying to use the query parameters `skip` and `limit` to paginate an output, did you implement them in any way? Example: ``` http://localhost:5984/db/_design/d/_view/random?skip=i&limit=1 ```
Hello, I was checking a way to extend the controllers to add, for example: - captcha system for password recovery - send welcome email - register stats when login and...
Because FontAwesome is using different prefixes (https://fontawesome.com/how-to-use/on-the-web/referencing-icons/basic-use): fas, fab, far, fad and fal; I've made an addition to the specification for tidbit and widgets to let us use `full_icon` and...
The following example in README.md was incorrect: ``` use EctoEnum, "one", "two", "three" ``` But even the correct one was not working: ``` use EctoEnum, ["one", "two", "three"] ``` I...
Could it be possible to have a check also for the test coverage? It could be great to have even the configuration to know if that should be appearing in...
The original PHP stores the variables and adds a reference to them so, when an object, array or resource is assigned to a new variable, instead of a clone, it's...
The use of `and` and `or` with the `echo` and `print` functions is tricky: ```php print "OK" or die("trying"); ``` It could be understood as (1): ```php print("OK") or die("trying");...