Dan Schultzer
Dan Schultzer
The build currently fails after #41 was merged because some of the dependencies in [the build scripts](https://github.com/danschultzer/blazing-bookkeeper/tree/master/scripts/build/darwin) are no longer accessible. The URL's just need to be updated.
These are the missing steps for the release: - [x] Clean up (#21) - [x] Make [travis artifacts upload to draft release](https://github.com/electron-userland/electron-builder/wiki/Publishing-Artifacts) work - [x] Code signing - [x] Update...
Remove `npm-shrinkwrap` when `node-opencv` has been updated. We need to revert https://github.com/danschultzer/blazing-bookkeeper/pull/7/commits/5ba73a95fccf6bf9b615b08801a4fc6a10cbcffd once the `node-openv` branch has been merged in to master. Ref: #7
I'm not happy with how responses are currently handled. As an example here's how an error response is handled: https://github.com/danschultzer/ex_oauth2_provider/blob/9a8fc6dbd2527ac06a56e97b97411caa47ea87f7/lib/ex_oauth2_provider/oauth2/authorization.ex#L27-L34 https://github.com/danschultzer/ex_oauth2_provider/blob/9a8fc6dbd2527ac06a56e97b97411caa47ea87f7/lib/ex_oauth2_provider/oauth2/authorization.ex#L48-L49 https://github.com/danschultzer/ex_oauth2_provider/blob/9a8fc6dbd2527ac06a56e97b97411caa47ea87f7/lib/ex_oauth2_provider/oauth2/authorization.ex#L54-L59 https://github.com/danschultzer/ex_oauth2_provider/blob/9a8fc6dbd2527ac06a56e97b97411caa47ea87f7/lib/ex_oauth2_provider/oauth2/utils/error.ex#L5-L9 https://github.com/danschultzer/ex_oauth2_provider/blob/9a8fc6dbd2527ac06a56e97b97411caa47ea87f7/lib/ex_oauth2_provider/oauth2/authorization/utils/response.ex#L13-L14 https://github.com/danschultzer/ex_oauth2_provider/blob/9a8fc6dbd2527ac06a56e97b97411caa47ea87f7/lib/ex_oauth2_provider/oauth2/authorization/utils/response.ex#L31-L38 From the above it's almost...
MonitGraphs needs to have 90% code coverage. With the complete rewrite, it's all ready, but I'll need some help to make the whole suite. If anyone wants to lend some...
I'm building an adapter to one of my libraries to use Gun, and testing with badssl.com for expired certificate. I use the following SSL verification setup (elixir): ```elixir opts =...
It's not obvious how to deal with Pow sessions and WebSockets. There are a few caveats to using WebSockets since browsers don't enforce CORS. Also, Phoenix LiveView won't run subsequent...
Initial work towards a refactor of cache logic The first step was to move invalidation of existing active sessions to the `Pow.Plug.Session` module. It doesn't seem right that `Pow.Store.CredentialsCache` should...
Preliminary work towards resolving https://github.com/pow-auth/pow_assent/issues/168 First step of supporting references defaults in the migration is done, but I'll have to figure out how to infer the references defaults from the...
Adds telemetry events to resolve #492 ## Events - [x] Session ID creation - [x] Session ID renewal - [x] Session ID destruction - [ ] Login and logout operations...