u/swaryapatil14

Anyone else notice how hard it is becoming to find reliable low volume sheet metal fabrication without huge delays.

Been helping on a small hardware project recently and honestly one of the most frustrating parts has been finding fabrication shops that are actually responsive for lower volume work.

A lot of places either want massive production quantities or the lead times suddenly jump once you ask for anything even slightly custom. we had one quote come back quickly and then the estimated turnaround quietly changed two weeks later after drawings were already revised around their timeline.

What surprised me is how inconsistent communication is across the industry. some shops reply once and disappear, others answer quickly but clearly do not read the actual specs before quoting.

Curious how people here are handling this now. are you sticking with local shops, going overseas, or using online fabrication services for prototyping and smaller production runs?

reddit.com
u/swaryapatil14 — 1 day ago

Is gut health really related to menopause symptoms or is that just wellness marketing

Seeing a lot of content lately about gut health and menopause symptoms. hot flashes, weight gain, brain fog, bloating, mood changes, all somehow apparently connected to the gut microbiome. I am really wondering if there is any real science behind this or if it is just the wellness industry jumping on the gut health bandwagon to sell probiotics to a new demographic.

I am in the midst of perimenopause now and have been researching various methods. i take my health seriously and i am not going to waste money on things that aren’t actually doing anything. If this gut hormone connection is real, I want to understand it properly. if it's mostly marketing I want to know that too I have seen many but Provitalize and one other brand seem a bit cool to go with but nevetherless, I'd love put this to audience here.

Has anyone actually researched this or spoken to a doctor about this? For anyone who has tried probiotics specifically for menopause symptoms, what was your actual experience?

reddit.com
u/swaryapatil14 — 3 days ago

What's everyone doing for fridge backup this hurricane season

First time posting here. I'm in the Savannah area, coastal Georgia, and we've lost power 3 times in the last year and a half from storms and random grid stuff. Between the food spoilage and a $275 insulin replacement that insurance dragged their feet on for weeks, it's cost us close to $1,300 total.

I've been doing the cooler and ice thing every time and it honestly stops working after about 8 hours. By then the ice is just cold water and the fridge thermometer is already climbing past where I'm comfortable with the insulin.

I want a battery station that can keep a standard fridge running for 30+ hours but I'm seeing a huge range in how long they actually last even between stations with similar capacity, so I'm not sure what to trust.

reddit.com
u/swaryapatil14 — 3 days ago

Our Zendesk AI bot got worse because we made the LLM do too much

we built an automated triage bot for Zendesk tickets. its main job is to pull order history from our internal API to answer basic "where is my order" questions. but the generated replies got messy lately, like quoting wrong dates or hallucinating package statuses, so our reps had to rewrite half of them. At first we thought it was a context window issue and wasted days tweaking system prompts and vector chunk sizes. none of that actually helped.

it finally clicked when we mapped out the data flow. we were basically dumping raw API JSON and messy search results straight into a single massive Claude prompt. the LLM was getting confused trying to parse the data arrays and write a polite email at the same time. The fix wasn't better prompt engineering, it was breaking up the workflow. So we stripped out the basic logic tasks and gave them back to standard Python scripts. there's no reason to pay an LLM to read a json payload and calculate if a shipping date is delayed when simple code does it perfectly.

We also moved the LLM calls behind a gateway so we could trace each step instead of guessing where the reply went wrong. Were using ZenMux right now, mostly for logging, routing, and keeping the multi-model flow stable. now we use kimi2.6 to clean the context, then code handles the business logic, and deepseek V4 only drafts the final email based on the clean data. The difference was huge. latency dropped significantly and the accuracy stabilized because the system isn't juggling ten tasks at once anymore.

do you guys build your own custom routers for multi-step agents?

reddit.com
u/swaryapatil14 — 5 days ago

Is crypto getting easier or just more crowded?

There are more tools than ever, but also more confusion.

Not sure if that’s progress or not.

reddit.com
u/swaryapatil14 — 5 days ago

working from anywhere without stressing about power

I work fully remote and sometimes that means a park bench, a library, or a rooftop cafe where outlets are either taken or nonexistent. My MacBook Pro gets about 5 hours under load. I need something that extends that to a full 8-9 hour workday no matter where I am. What power banks are people actually using for laptop charging?

reddit.com
u/swaryapatil14 — 6 days ago
▲ 2 r/defi

How do you verify real trading value in crypto markets?

I have been looking into our crypto data platforms, deal with fake volume and wash trading especially in smaller original markets.

The issue is that raw trading volume can look impressive, but it does not always mean real liquidity. Bot-driven round-trip trades, abnormal order-book behavior, and shallow depth can make an asset look more active than it really is.

One approach I found interesting is the idea of a data validation leader before showing rankings or market signals. For example, Treno scope describes a T-check framework that looks at behavioral fingerprinting, CEX order-book data, oracle-based cross validation and anomaly filtering before treating a signal as reliable.

I am curious how old are people here verify whether volume is real. Do you use order-books depth, exchange quality, oracle feed, on-chain activity or something else?

reddit.com
u/swaryapatil14 — 6 days ago

Our hermes agent got worse because it remembered too much

been testing Hermes for an internal customer research workflow.

The use case was simple at first.

Every morning, the agent pulls recent sales call notes, support tickets, Discord feedback, changelog mentions, and competitor updates. Then it turns them into a short customer brief for our GTM and product team.

Basically:

• what users are asking for

• what objections keep showing up

• what product or sales should actually react to

Hermes was a good fit because we wanted something persistent, not just a one-off script. We didn’t want a chatbot that started from zero every morning. We wanted an agent that could remember our ICP, current positioning, common objections, active campaigns, product limits, and what had already been discussed in previous briefs.

The first version was pretty good.

• Hermes Agent handled the schedule and memory.

• Python handled cleanup, account normalization, date weighting, and exact de-dupe.

• Deepseek v4 flash handled extraction, tagging, clustering, and rough priority scoring.

• Sonnet 4.6 wrote the final brief and reviewed what was worth saving into long-term memory.

For a few weeks, the output was useful.

Then it slowly got worse. Not broken. Just subtly wrong

It started over-weighting old objections that were no longer true. It treated one enterprise prospect’s complaint like a general market signal. It kept referencing positioning from an older sales deck.

The annoying part was that each individual step looked fine.

At first we did the usual prompt therapy. It helped for a day or two, then the same problem came back.

The real fix was adding memory rules.

We split memory into:

• Durable facts: ICP, pricing model, product limits, approved positioning, known competitors

• Temporary campaign context: this quarter’s sales motion, launch themes, active target personas, current messaging tests

• Raw observations: sales notes, support tickets, Discord comments, objections, feature requests, bug reports

Raw observations can affect today’s brief, but they usually expire. Durable memory requires promotion.

We also put a gateway layer between Hermes and the model calls, mostly so each stage left a trace we could inspect later. That helped with debugging, but the real fix was still separating deterministic logic from the parts that actually needed an LLM.

After the change:

False trend callouts dropped from 9–11/week to 2–3

Briefs referencing outdated positioning dropped by ~60%

Manual editing time went from ~20 min to 8 min

Cost per daily run dropped ~12%

Bad brief debugging usually takes under 30 min now

Main takeaway:

Main takeaway: remembering everything can be as bad as forgetting everything.

For persistent agents, memory should not be a passive log. It needs rules.

reddit.com
u/swaryapatil14 — 8 days ago

Has anyone here had to catch up on multiple years of us taxes while living overseas.

Asking because i know i cannot be the only one who fell behind after moving abroad.

At first i genuinely thought if you lived and worked outside the us you basically stopped dealing with irs filings unless you still had us income. now i am finding out there are disclosure forms and reporting requirements i never even heard of before.

For anyone who went through the catch up process, how difficult was it and who did you use?

reddit.com
u/swaryapatil14 — 8 days ago
▲ 2 r/nextfuckinglevels+1 crossposts

The physics tradeoff behind every charger explained in under 2 minutes

Didn't expect to learn something from a brand film but here we are. Basically every charger has to balance three things that fight each other: power, size, and heat. Push one up and the other two push back. The video makes it feel like a genuine engineering constraint rather than a spec sheet

debate.https://www.youtube.com/watch?v=YlgAAtdyjMM

u/swaryapatil14 — 7 days ago

There's an active court case in new jersey involving a 90 year old stroke survivor and alleged elder abuse and i feel like nobody is talking about it.

Stumbled across this earlier while I was doing some reading and honestly couldn't scroll past it.

Apparently there's an ongoing elder abuse case in New Jersey involving a 90-year-old stroke survivor who by all accounts cannot fully advocate for themselves. What caught my attention was that outside organizations are actually stepping in at the court level to make sure the situation gets the weight it deserves legally. I saw Elder Help Network was one of them; they filed what's called an amicus brief, which is basically a way for organizations with relevant expertise to give the court additional context even if they aren't directly part of the lawsuit.

I didn't even know that was something advocacy groups could do and now I'm kind of fascinated by how much behind the scenes work goes into these cases that the public never hears about.

Does anyone follow elder abuse cases or know how much these kinds of filings actually move the needle in court? feels like this whole area of law is way under the radar.

reddit.com
u/swaryapatil14 — 9 days ago

MIT Technology Review makes a compelling case that chargers are becoming intelligent infrastructure

https://www.technologyreview.com/2026/05/11/1136406/innovation-abounds-in-device-charging/

MIT Technology Review published a piece on the future of charging and the core thesis goes way beyond faster watts.

They argue chargers are transitioning from passive accessories into active intelligent devices that integrate into the broader IoT ecosystem. Three trends they highlight: next-gen semiconductors pushing past current GaN limits for extreme power density, AI-driven charging that learns user habits and schedules power delivery across devices to reduce grid strain, and the long-term vision of chargers coordinating with each other and the electrical grid for optimized energy distribution.

The article interviews engineers who describe a future where charging becomes an imperceptible background process. You never think about it because the system handles everything autonomously. It's a long read but the technical depth is genuine and it's not just hype marketing dressed up as journalism.

u/swaryapatil14 — 10 days ago

SparkX i7 after a bit of use, small dog print test

I’ve been using the SparkX i7 for a little while now and wanted to share some honest thoughts with this small Galgo Afegao dog print.

Overall, I actually like the printer more than I expected. It has been pretty easy to live with so far, especially for a machine that can handle multicolor. The noise level is lower than I thought it would be, and the CFS Lite feels smoother and quieter than I expected.

For this dog model, I mainly wanted to see how it handled the shape, legs, small details, and cleaner surface areas. Small animal prints can sometimes show problems pretty clearly, especially around thin parts and curves, but this one came out nicely enough for an early test.

So far, I can think of a couple of things I like about the i7.

The multicolor feature is relatively easy to use once you get past the initial learning curve.

The filament path is set up differently from what I was anticipating but still seems easier than I expected.

The noise level is low enough for most applications (especially if the printer is close to your desk or in a small area), which makes a big difference if you are in a relatively quiet setting.

Print quality has been consistent enough so far that I am starting to gain confidence in its performance.

There are a few things I haven’t gotten used to yet: Changeover of filaments can feel somewhat awkward and I’m still trying to figure out how to deal with loose filament around the CFS Lite unit. I also wish the software for the printer had more “nice to have” features.

Overall, the i7 has been reliable for small-scale printing. It is not perfect but relatively easy to use from day to day.

I am curious if anyone else has used the SparkX i7 for printing small detailed or animal models and what print settings you consider the most acceptable?

u/swaryapatil14 — 10 days ago

Budget-friendly luxury lighting - Is this the real deal?

I’m trying to achieve that ""luxury villa"" look on a sensible budget for my hallway. I’ve been told to visit Seus Lighting for their current collection because their prices are much more reasonable than the high-end boutique stores. Has anyone compared their stuff in person?

Source: https://www.seuslighting.com/

reddit.com
u/swaryapatil14 — 10 days ago

Back to school shopping is genuinely brutal this year, what is actually working for people budget wise

Started putting together the list of what my kids need for this fall and had to close the tab and take a walk. between clothes, shoes, supplies, and whatever the school decides to add at the last minute it feels endless.

This year i have been spreading purchases out instead of doing it all in one panic session, which has helped mentally if nothing else. i also have coupert running while i browse and it has actually caught a couple of useful moments. it pulled a code at the staples checkout that took about $6 off a supply run, nothing dramatic but it was a purchase i was making regardless. it also popped up on a children's clothing site i was already on and saved me a few dollars on shoes.

Not looking for buy secondhand advice. more curious how other parents are actually navigating the budget side of this without completely losing it. specific stores or timing strategies that have genuinely helped would be really useful right now.

reddit.com
u/swaryapatil14 — 11 days ago

Any Creality K2 regular version owners here, how has it been working for you

I recently ordered the K2 regular version from the official site here in Europe and I’ve been reading up on it quite a bit over the past few weeks.

From everything I’ve seen so far, it actually looks like a pretty solid step forward compared to older Creality machines. The whole setup seems much more streamlined now, especially with the enclosed design and overall system approach.

I couldn’t really find that many detailed posts specifically about the non Pro version though, so I figured I’d just ask here and see what people’s experience has been like so far.

One thing that stood out to me is how many people mention being able to get up and running pretty quickly without needing to go through a long setup process. That’s a big plus for me since I’m coming from a setup where things were more hands on.

I’m mostly interested in how it performs in day to day use.

Things like printing TPU 90A, ASA, and other materials that usually need a bit more stability. From the design and enclosed chamber, it looks like it should handle those better than older open frame machines.

Also curious how people run it once everything is set up.

Whether you’re mostly sticking with default profiles or doing small tweaks to get more consistent results over longer prints.

From what I can tell, the firmware side has been improving quite a bit recently as well, so I’m assuming the overall experience now is smoother than what earlier impressions suggested.

So far, it looks like one of those machines where the workflow is a lot simpler than it used to be, and more focused on actual printing rather than constant adjustments.

Looking forward to getting mine and putting some hours on it.

reddit.com
u/swaryapatil14 — 11 days ago

Is UDPower C400 enough for basic setup or should I have gone bigger?

I’ve been trying to figure out a decent portable power setup for a while and honestly got a bit lost with how many options are out there. I ended up getting the UDPower C400 mainly for simple use during summer outages and occasional camping.

So far I’ve mostly just been using it for running a couple of small fans overnight and charging my phone and tablet. For that, it’s been fine and does what I need without being overkill, which is kind of what I was aiming for since I didn’t want anything too big or complicated.

I also like that I can top it up with solar on really sunny days instead of relying on the car all the time.

What I’m still unsure about is whether I should’ve gone bigger. I haven’t really pushed it yet with anything like cooking gear, but I’m curious if anyone has tried running small appliances off something like this. I know stuff like kettles or hot plates can drain things fast.

For people who’ve used this kind of setup longer-term, does the C400 feel enough for basic living use, or did you eventually wish you had more capacity or power headroom?

reddit.com
u/swaryapatil14 — 11 days ago

What would make you switch to a new platform instantly?

There has to be a breaking point where it’s worth moving everything.

What’s that for you?

reddit.com
u/swaryapatil14 — 11 days ago

first all night stargazing session and I'm hooked

Drove out to a dark sky site about 90 minutes from the city. Set up around 9pm and didn't pack up until 4am. Just me, my telescope, a camping chair, and way too much coffee.

My setup is modest. A dobsonian scope with a phone mount for basic photos, a red light headlamp, a star chart app, and an anker prime 300w power bank sitting on the ground next to me running my phone and dew heater strip off usb all night.

Saw Saturn's rings for the first time through the eyepiece and just sat there staring for probably 10 minutes. No photo does it justice. Something about seeing it live with your own eyes is completely different from a screen.

Now I understand why people drive hours for dark skies. The difference between suburban skies and a real dark site is shocking

reddit.com
u/swaryapatil14 — 13 days ago

What’s the weirdest or most unexpected thing you learned while researching Mexican citizenship?

When I first started looking into Mexican citizenship through family, I honestly thought the process would be pretty straightforward. But the deeper I went, the more random and unexpected things I kept discovering. Stuff like tiny name differences causing delays, old records being harder to find than expected, people qualifying without realizing it for years, different answers depending on the consulate and even learning how common dual citizenship actually is now.

At this point, I feel like almost everyone researching this process ends up discovering something they never expected. Curious what surprised you the most while going through it or researching it.

reddit.com
u/swaryapatil14 — 14 days ago