Fork me on GitHub
#off-topic
<
2015-10-14
>
borkdude07:10:51

@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.

agile_geek09:10:46

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)

mitchelkuijpers12:10:44

Are there people here who used firebase?

gusbicalho13:10:34

@mitchelkuijpers: I've used Firebase with JS; clojure not yet

mitchelkuijpers13:10:15

I have a client who want's that there can only be one person active on an given account

mitchelkuijpers13:10:20

any idea if that's possible

mitchelkuijpers13:10:38

Really hate this requirement btw

gusbicalho13:10:27

Hm, not sure

gusbicalho13:10:56

You can't really force it, if a hacked client wants to authenticate, AFAIK there's no way to prevent them

gusbicalho13:10:20

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

gusbicalho13:10:32

the flag then works as a kind of lock

gusbicalho13:10:58

It's messy, and I'm not sure it's safe, though

gusbicalho13:10:20

If you do the flag setting in a transaction I guess it would be safe

mitchelkuijpers14:10:37

thnx @gusbicalho it doesn't have to be 100% if I catch 80% it would also be fine

mitchelkuijpers14:10:44

It is basically to prevent account sharing

sander18:10:31

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?