Damian Hamill
Damian Hamill
### Description The HTML spec states that the JSON response type should be "application/json; charset=utf-8". However browsers often send just "application/json". Flutter/Dart Http client sends "application/json; charset=utf-8". For Dart clients...
### Description of the Change I was getting incorrect decoding of UTF-8 characters in a Flutter application pulling data from an Amber web application that contained text strings with accented...
### Description The recipe generator could be used to generate all kinds of code snippets. For example it has been suggested that the auth generator be moved out to a...
### Abstract The current recipes implementation means that each recipe needs to provide app, controller, model and scaffold templates. There are 2 main disadvantages to this - lots of duplication...
this works fine ------------------- ``` {% assign params_name = "{{ name | underscore }}_params" %} {% assign hash_name = "{{ name| underscore }}_hash" %} {% assign create_model_method = "create_{{ name...
### Question Description how can I ensure all memory is freed after a request has been served. My API server has a memory leak that ultimately gets the process killed...