Peter Saxton

Results 150 comments of Peter Saxton

Or you could use something different like cookie cutter, Or the best thing might be to make something in rust so that you can ship as a binary, which you...

I assumed this would be rebar3, but I'm now wondering about a web service. wget template.app/name?args can this out put a directory of files.

Rough hack here was surprisingly effective in small project https://github.com/did-app/qrpush/pull/3/files#diff-5a27cd42704893ba6ca92237d27de788

Added a simple structured logger. Article on new OTP logger. https://ferd.ca/erlang-otp-21-s-new-logger.html Question of how to add meta data. ```rust logger.log(Level, [field(..)], [field(..)]) ``` OR ```rust logger.with_metadata([field(..)], fn() { logger.log })...

timber.io doesn't seem very alive any more, check out https://logflare.app/

Running through some examples for input handling. In all these cases the error type is ```rust pub type Invalid(a) { Missing(key: String) CastFailure(key: String, help: a) } ``` ### Keep...

### Wrapping Errors Instead of wrapper functions that all return the same error type we could have a function for parse_form and then wrap the error once. ```rust fn try_parse_form(form)...

@lpil thanks for the feedback on the PR, I have merged version 1 to play with will see how it goes. Am mulling some of your suggestions for a next...

This issue isn't saying don't implement bitstrings down to the bit level. it's saying while only bytes strings are supported (as is currently the case) For that time we should...

> What is the problem with calling it twice? It could potentially change the mapping function, but I don't see a problem with that? Perhaps I'm missing something. Maybe it...