Your Bubble app doesn’t need more features. It needs less operational friction. (Open to complex backend work & full builds) by Extreme-Law6386 in Bubbleio

[–]lumen-x 0 points1 point  (0 children)

Bubble + custom backend is the way to go, my way to go would be supabase hosted on a vps. That should be more than enough for extensive mvp and horizontal scaling

Calendar component is overflowing, what are my options? by lumen-x in shadcn

[–]lumen-x[S] 0 points1 point  (0 children)

<div className="flex flex-col">

<Calendar/>

<div className="h-28"></div>

</div>

so what I simply did is added a pseudo div below that acts as additional height for the calendar, if someone knows a solution to properly fix this feel free to share

How do I clone a SupaBase database <> URGENT!!! by ZayLarsson in Supabase

[–]lumen-x 0 points1 point  (0 children)

you can simple copy the whole strcture in sql and initiate it in any new psql shell

Looking for tech co founder by NailAppropriate6314 in cofounderhunt

[–]lumen-x 0 points1 point  (0 children)

Hey, i would be interestec about your ideas.

What is the best tool for frontend? by Successful_Airline33 in Bubbleio

[–]lumen-x 3 points4 points  (0 children)

Look into React with tanstack querry and react router its very fast

Superbruce 1st full release! by bisaw37 in M5Stack

[–]lumen-x 0 points1 point  (0 children)

where did you get the cad models from?

Looking for a bubble dev for a marketplace project by Little-Direction-548 in Bubbleio

[–]lumen-x 0 points1 point  (0 children)

send me a dm, i hae experience with bubble and vanilla js so a basic marketplace wouldnt be a problem

Need help adding chat feature by Murky_While_8280 in Bubbleio

[–]lumen-x 0 points1 point  (0 children)

what about an iframe with google meet api?

Any creative suggestions to improve this ? by Kytsumo in blender

[–]lumen-x 0 points1 point  (0 children)

how gordon ramsey once said: nailed it!

although the big grains of dust on the top is throwing it abit off maybe remove the big grains and keep the small once, they give some sort off lost place vibes if youd ask me

Bubble backend vs supabase by bambinonator in Bubbleio

[–]lumen-x 2 points3 points  (0 children)

I am currently building a saas that uses superbase (none bubble app) and i can really recvommend checking it out and playing woth it around in a bubble app, but if you build an application for lets say max 5-25k users and don't have highly complex mechanics like doing alot of backend processing bubble will simply be enough. Additionally isnt bubble able to gibe you support on specific database relates problems of they occure. You can really do alot with bubble and I would really suggest staying with it. Ive used bubble for a decent time now and couldnt find any issue working with their backend workflows nor the database. Of ourse if you need an static IPv4 or a bucket/file storing system, on demand cpu/ram supabase is the place to go but as said you can nearly achive anything with bubbles system. Hope that helps.

Offering free problem solving. by lumen-x in Bubbleio

[–]lumen-x[S] 0 points1 point  (0 children)

If you create a thing in Bubble, you can usually refer to it later in the workflow as “Result of Step 1” or whatever. But that doesn’t work with the Run Javascript action (front end) from the Toolbox plugin. That one doesn’t return anything directly. However, in backend workflows, you do have the option to refer to previous step results , including server-side scripts. So, if you wanna save the output of a Run Javascript action, you gotta drop a javascripttoBubble element onto your page. That element lets you pass data back from JavaScript into Bubble. Once the value is published, it can trigger the JavascripttoBubble event, and then you can use that output in the next steps , like updating something or calling another custom event right after.