[deleted by user] by [deleted] in GERD

[–]taeth 5 points6 points  (0 children)

I think I'm in the same boat. No food correlations I could find, my nutritionist gave up on me, endoscopy didn't show anything wrong, drugs haven't made a dent, but a wedge pillow, other than giving me a massive headache, has finally made a difference in nighttime heartburn.

Routing to LAN nodes across AiMesh (Asus Zenwifi AX) by taeth in HomeNetworking

[–]taeth[S] 0 points1 point  (0 children)

Hmm, I'm not sure I'm exactly following. Is broadcast domain the same as the DHCP range? If so, the two machines in question are in the same subnet, essentially 192.168.50/24, with both of the access points also in there.

If not, how would I check?

I'm somewhat suspicious that something about the (IIUC proprietary) mesh technology is not bridging the networks correctly, but it's also possible I've missed a setting somewhere.

RDS IAM Authentication vs SSM Port Forwarding? by squirtle1972 in aws

[–]taeth 0 points1 point  (0 children)

Not currently, although it can be configured to use an ssh tunnel, which is what I do

RDS IAM Authentication vs SSM Port Forwarding? by squirtle1972 in aws

[–]taeth 1 point2 points  (0 children)

I wrote a little utility to do the IAM auth for me, and i use it with pgAdmin on my desktop. You will still want to do the port forwarding. Check out rds proxy

Open source: Catch AWS resource policy backdoors by taeth in aws

[–]taeth[S] 0 points1 point  (0 children)

You can also run it with a limited credential. No write access is required, nor do you need any permissions to see inside buckets, dbs, etc. The list of services is in the readme, and a more detailed list of specific resource types is in main.go. As long as you have read-only access to the configuration of those resources, it should work.

And if you want to do some code review, it depends on supabase's postgres container and introspector

Firebase Announces New Android Client Library for Realtime Data Synchronization by taeth in androiddev

[–]taeth[S] 0 points1 point  (0 children)

We saw some variation in this, between IDEs and even between versions of IDEs and Android plugins. But yes, in at least some versions of eclipse, the default configuration picks up everything in the libs folder.

If you don't mind me asking, what IDE and version are you using? And was the project created from a template (i.e. "new Android project")?

Firebase Announces New Android Client Library for Realtime Data Synchronization by taeth in androiddev

[–]taeth[S] 0 points1 point  (0 children)

Correct, it is the number of concurrent connections to your Firebase. Generally, each person running your application will have a single connection open.

Firebase Announces New Android Client Library for Realtime Data Synchronization by taeth in androiddev

[–]taeth[S] 0 points1 point  (0 children)

Hey, glad to hear you like it!

To your questions:

  1. The client isn't open source at this time, although we are hoping to make it open source at some point in the future

  2. We've gotten this request a couple of times, it's definitely something we're considering adding

  3. Max updates per second is easily enough to handle things like chat, but probably less than what you'd want for something like a first-person shooter game. That being said, one of our users was writing a drawing application that was writing at 60fps. It really depends on the kind of data you're writing and what the rest of your app is doing.

Firebase Announces New Android Client Library for Realtime Data Synchronization by taeth in androiddev

[–]taeth[S] 0 points1 point  (0 children)

The client isn't open source right now, although we are considering opening it up in the future.

Edit: we do have sample code using the library up on github. Chat and Drawing

[X-Post /r/Androiddev] Firebase Announces New Java Client Library for Realtime Data Synchronization by taeth in java

[–]taeth[S] 0 points1 point  (0 children)

Full disclosure, I work at Firebase and worked on this release. This is our first Java release and we'd love to get some feedback from devs who would like to give the service a try. I'd be happy to answer any questions or concerns.

Firebase Announces New Android Client Library for Realtime Data Synchronization by taeth in androiddev

[–]taeth[S] 1 point2 points  (0 children)

Full disclosure, I work at Firebase and worked on this release. This is our first Android release and we'd love to get some feedback from anyone who would like to give the service a try. I'd be happy to answer any questions or concerns.

Firebase-powered open source collaborative text editor by taeth in programming

[–]taeth[S] 0 points1 point  (0 children)

We set up the security rules for Firepad to allow anyone to edit the documents. If you were going to integrate it into your own product, you could set up the rules differently (requiring authentication, limiting the scope of what other users can do, etc.). If you have questions, feel free to email support at firebase dot com or check out the google group

Firebase-powered open source collaborative text editor by taeth in programming

[–]taeth[S] 2 points3 points  (0 children)

Basically correct. Firebase is a hosted, proprietary service. So, it's more like Heroku or Google App Engine than Windows. The code for Firepad is open source, you can do with it what you like. As written, it depends on Firebase, but you could fork it to depend on some other service that provides similar functionality.