Paul Cleary

Results 117 comments of Paul Cleary
trafficstars

A login endpoint does exist that generates a password hash. Have to tie this together with JWT to send the logged in token down to the browser (as well as...

Are you talking about some kind of Http4s level stuff to simplify endpoints that have those parameters? Or are you referring to a general pattern throughout the system (endpoint, service,...

I think this is a valid interesting idea. Unclear of how to do it. Would gladly welcome and discuss ideas

**Note: I did not fix the tests on this yet as I wanted to get a Prototype up for feedback first. Will update the tests and such once I get...

It is an interesting idea. I like the idea of a CRUD algebra, because you assume you have to create/update/delete/getById on everything.

Actually unsure if we should do this or not tbh. Happy to get other people's thoughts on it. Assuming all data was in a single JDBC database, this seems like...

I actually have this setup on vinyldns - https://github.com/vinyldns/vinyldns This is the sbt configuration... https://github.com/vinyldns/vinyldns/blob/546cd49128db733f0bf795e11de028332b799499/build.sbt#L378 Here is the travis configuration... https://github.com/vinyldns/vinyldns/blob/546cd49128db733f0bf795e11de028332b799499/.travis.yml#L46 We are using plugins... ```scala addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" %...

@allantl I think it is a good idea. Honestly, I would be open to PRs for this one. When I have done logging I typically just accept it as side...

I would say that an advantage of separation of interpretation as well as abstracting away the effect type makes introducing a writer monad easier