Gregor Aisch
Gregor Aisch
ah I see, we added `f.objToFn` for this use case. just wrap your object inside this function and it should work ``` test.equal(ƒ(ƒ.objToFn({foo: 'bar'}))('foo'), 'bar'); ``` https://github.com/gka/d3-jetpack/blob/master/src/f.js#L23-L29
here's another log, in case it's helpful ``` $ rhythmbox (rhythmbox:14907): Gtk-WARNING **: Duplicate child name in GtkStack: Add to Playlist (rhythmbox:14907): Gtk-WARNING **: Duplicate child name in GtkStack: Add...
hey thanks for the PRs. will try to take a look at this on the weekend.
just a heads up, we are very likely going to introduce a simple [plugin architecture](https://github.com/schn4ck/schnack/pull/99) for Schnack that allows adding a lot more authentication and notification methods without cluttering the...
Hi @danmenzies-jerram, Apologies for the ultra-long delay, but I am still very excited about your contributions. I finally got around to finish my big plugin refactoring, so now we can...
schnack is using passportjs as auth framework, and from what I see there is a [provider for anonymous "authentication"](http://www.passportjs.org/packages/passport-anonymous/). so I guess we could just plug this in like any...
I think my preferred solution for anonymous commenting would be to allow users to enter a name of their own liking. of course, if the field is left empty we...
I think that is a known and accepted side-effect of posting anonymously. if you want to authenticate yourself as the legitimate author you can always chose to sign in via...
shouldn't it be `embed.js` ?
ah I see. with the last version we added the localization feature. this breaks your use case bc the default values are pre-filled in index.js, not in client.js. you can...