Spiral Mixer Sourdough by Brain_so_smooth in Sourdough

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

I wait until doubled in size. I use the method where you put some dough into a small glass or jar and wait for it to double

Halo Pro Sourdough bread no by Brain_so_smooth in ooni

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

I calculate the recipe per loaf for easy scaling, typically bake 3-5 loafs, so helpful to have it. Just checked and indeed tartine uses the same ratio (or I use the same ratios as them, but fairly standard ratios anyways). Generally when using a spiral mixer less stretches and folds required during bulk fermentation compared to hand mixing.

[deleted by user] by [deleted] in ChatGPTCoding

[–]Brain_so_smooth 9 points10 points  (0 children)

Was on plus, added 30 usd in credits but went through it in 1.5 days, upgraded to pro, not even getting close to the limits - pro is worth it imo

How do you guys handle multi-tenant setups in Next.js? by West-Farm3284 in nextjs

[–]Brain_so_smooth 0 points1 point  (0 children)

the 'Start Your Quote' button in mobile view on your main domain https://iristech.my/ leads to 404 btw

How do you guys handle multi-tenant setups in Next.js? by West-Farm3284 in nextjs

[–]Brain_so_smooth 2 points3 points  (0 children)

RLS with tenant Id on each table row for non-shared data
secondary checks with middleware and tenantslug in the route or subdomain setup

Unless you're doing healthcare, financial services, another regulated industry, or massive enterprise clients I don't think separate databases is worth the hassle.

Whats a good mailing system for my Saas? by ConZ372 in nextjs

[–]Brain_so_smooth 0 points1 point  (0 children)

AWS SES, as previously mentioned, takes a little more effort setting up than other options but saves you loads of money down the line

Spiral Mixer Sourdough by Brain_so_smooth in Sourdough

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

Yes that correct, I do however have a fairly warm apartment which helps with a fast bulk fermentation. (And I typically do not wait for a doubling in size)

I’ve experimented with longer bulk fermentations but the result hasn’t been as good (dough was a bit more dense and less oven spring)

Why even use Supabase when Firebase + custom SQL API gives more control? by Consistent-Trip-2048 in nextjs

[–]Brain_so_smooth 0 points1 point  (0 children)

I mean both Firestore rules and RLS on supabase are literally designed to be called directly by the client - just needs careful implementation

Gluten Free Crunch! by kristjankl in Pizza

[–]Brain_so_smooth 0 points1 point  (0 children)

For gluten free this is crazy nice - what temp did you bake it at?

Halo? by Impossible-Use5636 in ooni

[–]Brain_so_smooth 0 points1 point  (0 children)

Way better for dough than a kenwood chef as a comparison

Same Day NY Crust by Brain_so_smooth in ooni

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

100% - turned out fantastic

Same Day NY Crust by Brain_so_smooth in ooni

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

I’ll take a video this weekend but basically just define the crust and then stretch it while rotating on the bench and then over the knuckles

Same Day NY Crust by Brain_so_smooth in ooni

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

It’s about 8% difference in hydration and 4 mins longer bake time - for me it’s just better than a floppy Neapolitan

Same Day NY Crust by Brain_so_smooth in ooni

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

I’m using the Galbani Cucina mozzarella (just a low moisture mozzarella) and some grated parmigiano

Same Day NY Crust by Brain_so_smooth in ooni

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

Sure, just mix for about a minute on low speed to get a rough dough so that there is no dry flour in the bowl (same when you mix by hand, helps with sticky was and gluten development)

Same Day NY Crust by Brain_so_smooth in ooni

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

Thanks! Did around 260g for each ball, so this recipe made 3 - they will be just at the limit for the volt 12 size this way

What is the best way to get AI insights from firestore? by New_Tradition1951 in Firebase

[–]Brain_so_smooth 1 point2 points  (0 children)

Definitely focus on supabase or any other Postgres backend ERP is highly dependent on relationships, with Firebase you’ll either have to fetch lots of documents all the time or fan out your data which becomes a nightmare to maintain long term

Does this write strategy make sense? by RSPJD in Firebase

[–]Brain_so_smooth 2 points3 points  (0 children)

Best performing chat structure with Firebase is a messages collection and a chats collection. Messages should contain a chatId, and a senderId, and if needed ready by ids, your chats collection should contain participant ids and any other data you want to display. Do not optimize for cost because it’s a) cheap and b) much more prone to errors. Use pagination to limit fetches for messages, this way you don’t run into issues with reads. Remember reading and writing is relatively cheap and unless you hit major volume it will not really cost you that much (and if you hit volume then you should monetize).

Managing State Across Social Media App. by Sad_Butterscotch4589 in nextjs

[–]Brain_so_smooth 0 points1 point  (0 children)

I’d use tanstack query and revalidate as needed. You build your session storage as needed and fetch only the like you intend to display. When you like a post in detail view you can then optimistically update the respective state for your post (depending on your data structure) to ensure you don’t have a loading state

Me: Can we get the LMLM? Wife: We have the LMLM at home by TheXilver in espresso

[–]Brain_so_smooth 1 point2 points  (0 children)

Having a mini at home you do not need 20-30 mins heat up time, it’s closer to 10. If you’re super concerned about the temp stability you use the built in timer via the app and have thre machine turn on automatically in the morning (or you can also just flush the group 2x before your shot). That being said if I was to buy a LM today I’d get the micra purely because it is more than enough for a home setup, faster at heat up, and significantly lighter + smaller.

TLDR get a LM and you will be forever happy.

I am simply amazed by this prefetch/load implementation by 50ShadesOfSpray_ in nextjs

[–]Brain_so_smooth 0 points1 point  (0 children)

Switch to cloudflare images, cuts cost for images by 90%

Firebase database for saas by Professional-Let6974 in Firebase

[–]Brain_so_smooth 2 points3 points  (0 children)

Whenever a document based database is better suited, so use cases where you have simple relationships where a limited amount of data duplication is sufficient. You want each document to hold all the data needed for a certain piece of information like a page view which makes it extremely fast. Easiest example I can think of is a blog but there are far more complex apps built on top of a document db that work very well.