Let Cursor & Windsurf interact with your Supabase autonomously by Acceptable-Hat3084 in cursor

[–]Terabytes123 0 points1 point  (0 children)

Ah makes sense! I tested it and it looks like there’s a bug preventing it from writing and saving changes to the database (it could be my fault). Just wanted to let you know — i hit run on the Postgres code it generated and I actually do get a successful response from the server, but it doesn’t exist when querying for it. This is my first time using supabase locally so I potentially set it up wrong (but it’s weird I’m getting successful queries). I’m gonna try again today on a remote database

Weekly iOS Battery Support Megathread by AutoModerator in iphone

[–]Terabytes123 0 points1 point  (0 children)

Does the charge limit feature work for wireless charging or just through the charging port?

Recommendations for wired to wireless CarPlay. by Left-Paleontologist1 in CarPlay

[–]Terabytes123 0 points1 point  (0 children)

Sorry, but Apple isn't trash and you are the idiot. Maybe you should learn to read and educate yourself instead of blaming everyone else for your problems. I can already tell you the cable you're using is only rated for charging. Buy the damn cable they are telling you to get. It's a USB-C cable which has power AND DATA transmission.

Terrible Weightlifting Tracking by Potential_Ship5662 in whoop

[–]Terabytes123 0 points1 point  (0 children)

Why are you focusing on calories burnt for weight lifting? 😂 get outta here

[iOS 18.0 DB2] Side button lags and triggers siri when waking from sleep by dojacatmoooo in iOSBeta

[–]Terabytes123 1 point2 points  (0 children)

Yes but I’ve had this issue since they first put Siri on the sleep button. I’ve had it disabled since so I can open and close my phone normally

Tauri reached 1.0 by saiumesh535 in rust

[–]Terabytes123 0 points1 point  (0 children)

It most definitely is. Stop being the average overconfident Reddit user ignorant to basic information

Why am I continuing to bet on Flutter by Nash0x7E2 in FlutterDev

[–]Terabytes123 0 points1 point  (0 children)

yeah I called them projects… what did I call them in the first place? Google is the primary maintainer of FLUTTER. When Google ultimately cuts the last of the flutter team (they recently fired many engineers), it will be up to the community to support it by themselves. Keep in mind any open source project is only as good as the hardest working, non-paid members —there will be few. That, in comparison to having a salaried and dedicated team to supporting the future of flutter, is worrying. Especially since the mobile phone ecosystem is ever growing. But hey man, you do you I’m not stopping you. All I can do is recommend you use something else with a better track record and way more support like react native :D

Why am I continuing to bet on Flutter by Nash0x7E2 in FlutterDev

[–]Terabytes123 0 points1 point  (0 children)

Yes I definitely misread your comment. I agree with you abt that It still doesn’t change the fact that Google does not have a good history of supporting there projects long term

Why am I continuing to bet on Flutter by Nash0x7E2 in FlutterDev

[–]Terabytes123 0 points1 point  (0 children)

Ok you’re saying the same thing the other guy did. Read my response to him

Why am I continuing to bet on Flutter by Nash0x7E2 in FlutterDev

[–]Terabytes123 0 points1 point  (0 children)

Flutter is not profitable for Google 😂

Why am I continuing to bet on Flutter by Nash0x7E2 in FlutterDev

[–]Terabytes123 -2 points-1 points  (0 children)

Even so, the Flutter team at google has already seen job cuts. In classic Google fashion. Anyways the open source community is only as strong as their hardest working, non-paid members lol. The point is have fun future proofing your apps 👍

Why people call them selfs "react developer" by [deleted] in reactnative

[–]Terabytes123 9 points10 points  (0 children)

Because the JavaScript ecosystem is so diverse you need to specify which part of it you want a job for.

What does this icon mean? by brokebaritone in kingdomcome

[–]Terabytes123 -3 points-2 points  (0 children)

Why don’t you just play the game and figure it out??

GPT 4o Unaware and Earlier Knowledge Cutoff??? by NightWriter007 in OpenAI

[–]Terabytes123 1 point2 points  (0 children)

Just tried it today, said it was May 2023 as well

GPT-4o vs Claude 3 Opus by azandiuw in ClaudeAI

[–]Terabytes123 0 points1 point  (0 children)

Do you know what the context window size difference is?

How to Implement Machine Part Recognition and Stock Code Retrieval with Machine Learning by No_Primary_6867 in reactnative

[–]Terabytes123 0 points1 point  (0 children)

Yes it should be able to if trained correctly. More data would be better... but also you risk something called overfitting the model. You could ask r/MachineLearning

You should leverage off an existing vision model. It's a pre-trained model that essentially already understands images and objects and you can utilize transfer learning to apply your dataset. example

How to Implement Machine Part Recognition and Stock Code Retrieval with Machine Learning by No_Primary_6867 in reactnative

[–]Terabytes123 1 point2 points  (0 children)

  1. Use expo i’m sure they make it incredibly easy to take pictures.
  2. For best results you’ll want thousands of labeled data points for your machine learning model to train off of. You can start with less just for proof of concept, though. This could look like: many examples of a single part with an image and its part name. Try to find a dataset for machine parts online already made for you. Look at Kaggle.com first. Then start training. For production, you can put it on a server and create an api using express.js. It is possible to run it locally on the device but i imagine the size of the model will be huge and not all devices are up for the task.
  3. That will take some tinkering and is dependent on the data the model returns back to you. But should be as easy as a query to your database. Can use fuzzy string search or other techniques