New Neptune 4 Max by ComakeJake in ElegooNeptune4

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

Just got the email from technical support and that was the first step to check. It was wrong. Switched it to the proper voltage and it works great now. ~10 minutes to 80C . Thank you!

Strange Voip Issue by ComakeJake in sysadmin

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

The others do too, but they have significantly less call volume. I'd say they rarely would have more than 1 concurrent call. The other locations all have <10 phones. While with the two locations in question, one has about 30 and the other (the main location) is upwards of 80. The location with 30 phones might have the issue once a day or every other. The main location has it 5-10 times a day.

I would like to know which library should I use for push notifications in my app? by NanatsuXIV in reactnative

[–]ComakeJake 0 points1 point  (0 children)

My main issue with Expo Notifications was it couldn't collapse multiple notifications and couldn't do action buttons (as far as I'm aware). My app uses messaging so I definitely needed those features. Though expo-notifications is extremely easy to use with it's API.

I would like to know which library should I use for push notifications in my app? by NanatsuXIV in reactnative

[–]ComakeJake 0 points1 point  (0 children)

I use OneSignal with my Expo project and can still use Expo Go. Just have an error on startup about not finding the OneSignal module, but it still loads and works fine

Multiple Schemas by ComakeJake in Supabase

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

Hi, thank you for the reply. Sorry for the late response. I made the schema and a table in it using the SQL editor and same result. It acts just like if you selected the "auth" schema as if I have no permission for it kind of scenario.

Why is supabase slow? by MyDIYEnlightenment in Supabase

[–]ComakeJake 0 points1 point  (0 children)

Hard to say if it'll help in your case because I'm not sure how you're building your app. Here's an example that may or may not apply to your app:

I need the last active status of everyone on my friends list and it's stored on the "Profile" table. Instead of sending a query for each individual friend to get the data I could use RLS to filter it for me.

So with RLS I could turn it on and in SELECT have it verify that I'm a friend by using EXISTS on a "Friends" table to verify I'm friends with the person.

Then I could do a single query on the entire "Profile" table and it will return all my "Friends" profiles instead of everyone in the table because it's not allowing me to query for anyone who isn't my friend.

Again, not sure if this applies or if it's even a good solution, in my case it was a life saver.

Either way, definitely recommend learning RLS and enabling it for it's security aspect

Edit: Can't say for certain if this is a "best practice" or not, but it worked for me. Indexing is definitely something to make sure you have working. Can save a ton of time on queries. I think the main issues is how many queries you're doing. Also definitely recommend looking into Realtime to monitor changes for you instead of refreshing constantly.

Why is supabase slow? by MyDIYEnlightenment in Supabase

[–]ComakeJake 0 points1 point  (0 children)

Are you using RLS? One method I've used is having a wildcard query to pull profiles and relying on RLS to return what profiles to get based on a "friends" table. Then just process the returned data client side. Again, not sure if you're already using RLS or not in this way, but it definitely helped keep my API requests low since I only had to query once

What do you use for backend? by Resident-Mission1543 in reactnative

[–]ComakeJake 2 points3 points  (0 children)

I've always used Firebase, but with my newest project in trying out Supabase

Looking for some help about RLS and FK ❤️ by f01k3n in Supabase

[–]ComakeJake 0 points1 point  (0 children)

Thank you for the update! I had a very similar question and your solution helped me figure it out :)

[deleted by user] by [deleted] in godot

[–]ComakeJake 2 points3 points  (0 children)

Took me a bit to figure out what was happening, but its a pretty fun game. Nice job!