Andida Syahendar

Results 10 issues of Andida Syahendar

SInce Go 1.11, the Cookie struct has [SameSite](https://golang.org/pkg/net/http/#SameSite) attribute in it to prevent CSRF attacks. I think loginsrv need to provide `-cookie-samesite` option.

I just added LinkedIn OAuth2 login provider. Please review the PR. Thank you.

Adding MQTT transport that need shared subscription. AFAIK shared subscription is supported by VerneMQ and EMQ.

I tried summitdb in docker swarm, I first create a master service: ``` docker service create --name summitdb-master --network redis didasy/summitdb ``` Then I created a slave service ``` docker...

Is there any config I should change to enable POST? I can't seems getting it to work, it always return 403.

Is this even possible using AQL only? [From here](http://stackoverflow.com/questions/35074545/safe-removal-of-vertexes-in-arangodb-using-ids) it says that currently there is no way to do this via AQL. But arangolite doesn't seems to have a way...

How do I handle error of a promise (bluebird) using suspend?

I'm currently trying to do analogWrite(255) to pin 5 of an Arduino Uno, but it doesn't give me voltage reading at all. (it toggle the LED though) I've tried it...

How do I use Grid() with this? Is it like this? ``` var db = mongode.connect('mongodb://localhost/test'); var mongoFile = db.grid(db, 'fs'); mongoFile.put(buffer, {}, function (err, res) {}); ```