Dave Sag

Results 33 comments of Dave Sag

Hi @andre-l-mm sorry for taking such a long time to get back to you. I'll take a look at this and get back to you.

Here's how I ended up doing it ``` var bcrypt = require('bcrypt'); function hashPassword(password, errCallback, successCallback) { bcrypt.genSalt(10, function(err, salt) { if (err) return errCallback(err); bcrypt.hash(password, salt, function(err, hash) {...

Two features I am looking for in a Rich Text Editor are 1. Tracked Changes (not necessarily real-time collaboration, but being able to see - Google Docs / MS Word...

> Hi @glebmikulko, you're right it has been a while. Unfortunately I have less time these days for this project, and my work has shifted me away from as much...

+1 to this. It works great locally but assumes you are pushing to an organisation page not a project page, and so the asset paths all break

Once you have checked to see if an action `isRSAA` and then you want to actually extract the types from it (or in my case I needed the `meta` info...

Exposing a `getAction` function as you propose is a good idea. I’d use that instead of the `RSAA` constant if it was avail.

To assist in migration exposing `getAction` would ideally happen before `RSAA` was un-exposed :-)

I have a slightly different use case for this. I need my `bailout` function to throw an error and I need errors to trigger a `*_FAIL` action. ```js export const...

This was done in https://github.com/Capgemini-AIE/ethereum-docker/commit/2fc935fc4a1c0d7a034fb8cd06f4991fecc00f44 — this issue can be closed.