Glen Mailer
Glen Mailer
See original discussion here: https://github.com/glenjamin/transit-immutable-js/pull/13#issuecomment-172021813 Notable points: ``` js var FooRecord = Immutable.Record({ a: 1, b: 2 }, 'foo'); // This assertion passes expect(new FooRecord()).to.eql(new Immutable.Map({a: 1, b: 2})); //...
Thanks for this docset, it works really well! Would you be open to including some of the elm guides in the set? http://elm-lang.org/docs/syntax would be the main one, but also...
I've got my proxy working, but there are some URLs that I know the backend will return 403 unauthorized for depending on the API path and the properties of the...
The following is an except of my recent terminal session, before giving up and googling. ``` > lein cljfmt Wrong number of arguments to cljfmt task. Expected [command & paths]...
It would be nice to report the syntax error from elm-format, rather than the current silent no-op.
I tried to configure reloading, but the documented var is incorrect. The docs say `systemd_service_Service_ExecReload`, which is consistent with the rest But the code says `systemd_service_ExecReload`
This is a common pattern with tools like sinon or nock - to have afterEach do some standard verification at the end of each test. I'm fairly sure this used...
**Help us help you** Please tell us more about [your Tink deployment](https://docs.google.com/forms/d/1mhHvyNJQgTXFDnqOermB7-BD8GQSyvtFPUAhILRbYcA/edit). n/a **Is your feature request related to a problem?** vault supports a concept it calls "derived keys", the...
I've run across a few cases recently where I've wanted to set a deadline on a test running. Generally when doing potentially complicated things that could deadlock, and as mistake...
I originally tried pitching this to go-cmp, and they said no because they quite resonably want all comparison to be stateless. https://github.com/google/go-cmp/issues/241#issue-736205887 The context from that issue is: > After...