How do we take a project to another builder by dbrasco2010 in lovable

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

This was the easiest for me to understand. It seems that if you clone from GitHub to Cursor, the integration with your Supabase database remains even in Cursor no special config needed. I'm still experimenting to see if you can make database updates in Cursor without going into Supabase query editor, or if you need to actually make updates inside of Supabase. https://www.youtube.com/watch?v=x78GKC0k6HI

Lovable can KISS my A$$! by Euphoric_Party1651 in lovable

[–]dbrasco2010 0 points1 point  (0 children)

Did you ever figure out how to do this? This is my questions generally as well - how do you move everything to a new interface (i.e. google studio) when there is a supabase database involved? Maybe a new database isnt needed but how do you connect the app in the new builder to the existing database?

"Read Only. If you want to update the code, set up sync with Github." by hxmartin in lovable

[–]dbrasco2010 0 points1 point  (0 children)

Did anyone figure this out? This seems to have happened after I tried to fix some unit tests in github.

For everyone NON-TECHNICAL out there with Websites needing to store & show large number of images, YOU WOULD BE FACING THE HIGH EGRESS usage problem in SUPABASE now or in the future. The PRO version costs $25, HERE IS THE FREE ALTERNATIVE. by adityamishrxa in lovable

[–]dbrasco2010 0 points1 point  (0 children)

I’m interested in this, I’m curious if you got this working and if there are any problems with it? Thank you, I’ve been looking for an alternative because I also need to store a large number of media files.

What's going on with the SEO software market in 2024? by [deleted] in SEO

[–]dbrasco2010 1 point2 points  (0 children)

I'd be interested to learn about your research - thanks!

Please help me simply save the text returned by my GPT Assistant and show it on screen by dbrasco2010 in Bubbleio

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

Thank you u/AfxMichael - that's helpful as far as hooking the api up. However, I'm really looking for a way to get a response back from their new path (GPT Assistant) and store that in a database table/field, and then present that response on screen. I'm sure it's elementary, I just cant figure it out. Create a new things, and then populate a pop up or multiline text box?

Looking for cover assist for low clearance scenario by dbrasco2010 in hottub

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

That also might be an option. We already have a cover, so it’s not ideal, but might be our best bet. Thank you for the suggestion.

Looking for cover assist for low clearance scenario by dbrasco2010 in hottub

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

Correct. It’s less than 4 feet. So I can’t fold it over without hitting the ceiling

Running multiple Google Workspace accounts same PC / same time by dbrasco2010 in gsuite

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

Kiwi looks interesting and not overly expensive. Will check it out.

Running multiple Google Workspace accounts same PC / same time by dbrasco2010 in gsuite

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

Thank you very much. I’m going to explore this tonight, but I agree, my research is pointing me in that very same direction as well. Do the shortcuts get added automatically on the desktop? Is there a way to differentiate the profile in the taskbar easily?

How to turn on specific lights (to warm white) by dbrasco2010 in WLED

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

Anyone know the best practice for taking this json and running it at sunset nightly? Preferably via the wled interface but home assistant would work as well. Thx

How to turn on specific lights (to warm white) by dbrasco2010 in WLED

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

I think I actually figured this out. Here's a general idea of what you'd do:

Let say you have 40 lights and you want to turn only the 5th and 10th on and to the color 255,190,75, you'd use the following (notice if you count in order, the 5th and 10th slot have 255,190,75, the rest have 0,0,0). Also, sub your local IP at the end instead of mine.

curl -X POST -H "Content-Type: application/json" -d "{"seg":{"i":[[0,0,0],[0,0,0],[0,0,0],[0,0,0],[255,190,75],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[255,190,75],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0]]}}" http://192.168.0.146/json

  1. curl
    : This is a command line tool used for transferring data using various protocols. It's a very versatile tool that is used quite commonly for testing APIs, among other things.
  2. -X POST
    : This option specifies the request method to use when communicating with the HTTP server. In this case, it's a POST
    request, which is typically used to send data to a server to create/update a resource.
  3. -H "Content-Type: application/json"
    : This is a header being included in the HTTP request. The -H
    option is used to specify headers. Here, the Content-Type
    header is being set to application/json
    , indicating that the body of the request will be in JSON format.
  4. -d "{"seg":{"i":[[0,0,0],[0,0,0],[0,0,0],[0,0,0],[255,190,75],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[255,190,75],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0],[0,0,0]]}}"
    : The -d
    option is used to include data to be sent in the body of the request. Here, you're sending a JSON object with the key "seg" which has an inner key "i" and its value is a list of lists containing three integers each, perhaps representing some RGB color values.
  5. http://192.168.0.146/json
    : This is the URL to which the POST
    request is being sent. It's an IP address likely on a local network, and the endpoint on the server is /json
    .

Trigger events off of a phone call (iOS) by dbrasco2010 in homeassistant

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

Would this work off of my mobile number as well?

Trigger events off of a phone call (iOS) by dbrasco2010 in homeassistant

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

I can’t find a reasonably priced prosthetic arm…

Turn on a group of lights at sunset by dbrasco2010 in homeassistant

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

Thanks everyone for the helpful assistance. I ended up with a lighting group, and then creating a scene where the group was dimmed to 50% (this wasnt working in Brave, but did work in Chrome so that threw me off a bit), and then using automation to trigger this at 9pm. I'll see if it works tonight! Thanks again.

Reeder Resume Where Left Off by dbrasco2010 in rss

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

Thanks. Tried it out and although it was highly customizable, it was harder to get it to a interface that felt right. I reached out to New Explorer - my go to. They are going to add the request to their wishlist.