6 ms·
I like this. Have you considered releasing the source so people can run it on their own servers?
by whois 7y ago
I like this. Have you considered releasing the source so people can run it on their own servers?
- dnpp123 7y ago^^^ This. The kind of people who use this are power users who want to run this on their server. Or use IFTTT otherwise.
- edoceo 7y agoNow that we've all seen the awesome implementation I think a clone in Go is not far off. If I don't see one by EOD I'll have to make - is thing is super cool
- openthc 7y agoYou'd better post the code
- anderspitman 7y agoHere's the extra poor man's version to get ya'll started. It doesn't have any of the auth/rate limiting/etc or pubsub, but it should basically work for the MPMC queue stuff: https://github.com/patchbay-pub/patchbay-simple-server https://github.com/patchbay-pub/patchbay-simple-server Note that this will leak memory since there's no logic for removing old unused channels.
- deleted 7y ago[deleted]
- edoceo 7y agoI did one too -- https://github.com/edoceo/httpubsub https://github.com/edoceo/httpubsub
- anderspitman 7y agoNice!
- olup 7y agoAnd, a bit late, me too, of the pub/sub option that sounded more appealing to me. https://github.com/olup/patchcreek https://github.com/olup/patchcreek
- anderspitman 7y agoI would love to make the source available. But there's no getting that genie back in the bottle once you go that route. I wanted to release it and get some feedback before deciding what to do with it. That said, a server that supports the examples on this page is pretty trivial to implement (especially if you skip the pubsub stuff). I had a working prototype in a weekend. Multiple implementations would probably be a good thing. EDIT: also, the current state of the code base is not something I'd be excited about having my name attached to ;)
- whois 7y agoAh yea I totally understand. I love this thing though. So simple but powerful.
- mathfailure 7y agoAnders, please, opensauce it!
- henryfjordan 7y agoYou can think about releasing the code with no license or with some form of the newer BSL or something. It won't stop bad actors from stealing your code and using it but you will stop most corporate actors from touching it (and they are the ones you'd want to pay in the future anyway).
- sairamkunala 7y agoI made a similar project when starting to learn Go. It's opensource and it works. Just don't host it out on the internet. Intranet should be good because no security audit has happened. This was sort of an MVP https://github.com/sairam/daata-portal/tree/master/daata-server https://github.com/sairam/daata-portal/tree/master/daata-ser...