Results 6 issues of Dustin Graham

Howdy, Of course it is up to your discretion if you want to make this change. I just want to bring it to your attention. Once I installed bcrypt for...

**Describe the bug** Integrating with unity, using `Dispatch.OnDebugCallback` receiving "not in sdk" messages. **To Reproduce** Steps to reproduce the behavior: 1. Dispatch.OnDebugCallback = (type, str, server) =>Debug.Log(str); 2. SteamClient.Init(gameId); 3....

https://github.com/onury/tasktimer/blame/master/README.md#L120 ` if (timer.tickCount >= 3600000) timer.stop();` I think this should be: ` if (timer.time.elapsed >= 3600000) timer.stop();` Or: ` if (timer.tickCount >= 3600) timer.stop();` Based on the comment that...

Laravel 5.3 is out. =) I like their new Mailables feature. `Mail::to($request->user())->send(new OrderShipped($order));` Mailgun documentation doesn't suggest this is feasible yet. Thought I'd mention it.

feature request

Looks like this is pegged to 4.x and 5.x. I recognize it hasn't been updated in 6 years, but it still works well for our needs. Do you know of...

I have gotten the form to display in an iframe on my page following `README-AcceptHosted.md` The communicator seems to be working. I have a `console.log` printing any time `onmessage` fires....