Jacob Michael Lee

Results 32 comments of Jacob Michael Lee

We can remove the conditional function to clean up the code as well: ```js // convert secret to buffer if (!Buffer.isBuffer(secret)) { if (encoding === 'base32') { secret = base32.decode(secret);...

Pull request #66 patches Speakeasy to support this use case. I have tagged this issue as an enhancement for browser support.

A hotfix was committed on January 6. We have not published a new version to NPM yet. You may use the following URL in your package.json to use the hotfix...

@markbao Are we ready to push 3.0?

Just thought of a more permanent fix. Instead of detecting whether the base32 returns a buffer, always import the client version and have speakeasy initialize a buffer with byte array....

The library is hard-coded to use `UInt32` for the length. May I suggest accepting template arguments for the stored value and size storage as an enhancement? It would be a...

I needed bounded dragging to implement a slider UI in `material-ui` under a short schedule. To implemented bounded dragging, I needed to change the drag tracking algorithm and the changes...

Thanks for looking into it @KapJI ! It seems that using `react-draggable` will take a bit more effort than we thought.

Sorry about the lack of documentation... you should be able to access the total count via `data.total` and the raw JSON via `data.json`. The returned object's prototype is extended to...

@skyteclabs I started documenting Sage at [mikepb.github.com/sage](http://mikepb.github.com/sage). It's a work in progress; let me know what you think.