This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-10-14
Channels
- # admin-announcements (21)
- # aws (5)
- # boot (41)
- # cider (76)
- # cljs-dev (15)
- # clojure (251)
- # clojure-brasil (25)
- # clojure-dev (16)
- # clojure-japan (8)
- # clojure-nl (1)
- # clojure-russia (110)
- # clojure-uk (7)
- # clojurescript (168)
- # clojurewerkz (1)
- # cursive (10)
- # datomic (45)
- # devcards (50)
- # emacs (5)
- # hoplon (6)
- # instaparse (6)
- # ldnclj (73)
- # lein-figwheel (4)
- # leiningen (6)
- # liberator (7)
- # luminus (2)
- # off-topic (19)
- # om (80)
- # onyx (2)
- # re-frame (11)
- # testing (12)
@seancorfield: Yeah, noticed. I read on the Postgres JDBC driver's page that I can just use the newest one for my version of the db.
Has anyone used Storm Trident classes to write to HBase before? I’m having real issues finding any examples out there that work with more recent versions of Storm/HBase (0.10)
Are there people here who used firebase?
@mitchelkuijpers: I've used Firebase with JS; clojure not yet
I have a client who want's that there can only be one person active on an given account
any idea if that's possible
Really hate this requirement btw
Hm, not sure
You can't really force it, if a hacked client wants to authenticate, AFAIK there's no way to prevent them
But you can put a flag in an entry for user info that says "someone is connected", and use onDisconnect to unset that flag when the client disconnects
the flag then works as a kind of lock
It's messy, and I'm not sure it's safe, though
If you do the flag setting in a transaction I guess it would be safe
https://www.firebase.com/docs/java-api/javadoc/com/firebase/client/Firebase.html#onDisconnect--
thnx @gusbicalho it doesn't have to be 100% if I catch 80% it would also be fine
It is basically to prevent account sharing
@mitchelkuijpers: glad to help
i'm trying to get realtime twitter notifications (full user stream) to a wearable device over bluetooth, preferably using the internet connection from an iOS device. This should work if i can get realtime twitter push notifications from APNs to my iOS device. Any ideas whether there is an app or other possibility to do so?