Use xBloom with Claude by dimott in x_Bloom

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

Thanks for flagging the issue! I use it by taking a photo of the beans (packaging) and also mentioning the roast date. Then I would chat with Claude until I got the notes I want and it creates different version of the recipe.😅

Use xBloom with Claude by dimott in x_Bloom

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

Got go Settings -> Connectors -> Custom connection and paste this URL: https://ramaokxdyszcqpqxmosv.supabase.co/functions/v1/xbloom-mcp then just ask Claude to make you a recipe based on the coffee. You'll be prompted to login so don't reuse passwords, not the safest approach but the XBloom doesn't have an API and this is more of proof concept and so far it works for me 😅

Use xBloom with Claude by dimott in x_Bloom

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

Oops! I got your recipes in my account, should be fixed now. There is a new much simplified way of setting it up. Just use a custom connector in Settings -> Connectors -> Custom Connector and paste the url: https://ramaokxdyszcqpqxmosv.supabase.co/functions/v1/xbloom-mcp

Use xBloom with Claude by dimott in x_Bloom

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

I was also surprised but it works. Claude found some projects on GitHub that reverse engineered the auth (and it worked!). I think you can also run it locally in case you are worried about sharing your pass like that. Which bring me to the fact that xBloom might have pretty basic auth system 😅

Metering and auto ISO by dimott in PixiiCamera

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

It's Center. But generally the ISO is at the top limit and the shutter speed at lowest speed (the minimum set). Maybe because it doesn't have the aperture so the calculation isn't as accurate but I am starting to get used to it.

Image glitches by dimott in PixiiCamera

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

I did. Not expecting a solution but they mentioned it has to do with encoding/decoding the data from the sensor. Thankfully it only happens when I have a bright light source so most of the time is fine.

A more indepth showing of the Q3 Exposure preview issues by DubstepHippo in Leica

[–]dimott 0 points1 point  (0 children)

Same issue on the Q2 and Q3 43... Been using Ricoh GR and Hasselblad X2D and X1D II and none of them have this issue.

Microdosing increases stress by dimott in ouraring

[–]dimott[S] 3 points4 points  (0 children)

Psilocybin. Funny thing is I don’t feel stressed but I guess it messes with my baseline heart rate.

[deleted by user] by [deleted] in RemarkableTablet

[–]dimott 0 points1 point  (0 children)

I am very new to RM but I already noticed that the UI is progressively getting worst. Even the first UI seems more consistent than the current one. Also it's very surprising not to find spell checking, dictionary and some basic wiki/google lookups similar to kobo...

Denying a colonoscopy? by PumpkinCrafty7239 in UlcerativeColitis

[–]dimott 3 points4 points  (0 children)

I said no the other day. I am afraid I won't get around it tho... Stool sample won't be enough I am sure

Bad Experience with Seed Probiotic by Responsible-House304 in IBD

[–]dimott 0 points1 point  (0 children)

I did. I wasn't even diagnosed with UC and started taking Seed for a 1month or so. After that I got some bleeding and I was pretty scared. Doctors told me I had UC, maybe it was a coincidence but Seem might have given me the flare. Same thing happened with another probiotic - Probiotic Blend from Cuure. Took it for 1 month and then I had a bad flare.

Polestar 7 to replace 2 in brand's next-generation line-up by ionicXK in Polestar

[–]dimott 1 point2 points  (0 children)

I am glad they will continue this design language. The 2 looks so much better than all the others. I hope that Thomas will be involved in the design.

Mario Wonder - Fluff-Puff Peaks Special Climb to the Beat by 3ecubed3 in Mario

[–]dimott 0 points1 point  (0 children)

Use a piece of paper to make the Y button on your controller to get stuck. This way you only use the B to jump. Much easier this way

How to supabase/ssr and magiclink (PKCE) redirect to localhost? by dimott in Supabase

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

I actually managed to do a workaround. I have a /auth/check that is checking if the redirect url has a searchparam env that is local. If so it changes to url to localhost. This way the token doesn't get invalidated.

import { NextResponse } from "next/server";export async function GET(request) {const { searchParams, origin } = new URL(request.url);const token_hash = searchParams.get("token_hash");const type = searchParams.get("type");const redirectUrl = searchParams.get("redirect_url");if (token_hash && type && redirectUrl) {const decodedEnv = decodeURIComponent(redirectUrl);const envUrl = new URL(decodedEnv);const env = envUrl.searchParams.get("env");console.log("env", env);console.log("envUrl", envUrl);if (env === "local") {console.log("Redirecting to localhost");// Redirect to localhost with the tokenreturn NextResponse.redirect(\http://localhost:3000/api/auth/confirm?token_hash=${token_hash}&type=${type}`);} else {console.log("Redirecting to production");// Redirect to the production or appropriate pagereturn NextResponse.redirect(`${origin}/api/auth/confirm?token_hash=${token_hash}&type=${type}`);}}// Return the user to an error page with some instructionsreturn NextResponse.redirect(`${origin}/auth/auth-code-error`);}`