r/AI_Application

Most packing lists ignore the actual weather — so I built a tool that doesn't
▲ 9 r/AI_Application+7 crossposts

Most packing lists ignore the actual weather — so I built a tool that doesn't

Generic packing lists are almost always useless. they don't care if it's monsoon season or if you're actually planning to hike — they just give you a generic list of t-shirts and socks. I got tired of manually checking weather patterns and luggage weights every time i moved countries, so i built a dynamic generator.

The tool covers 130+ countries and factors in destination-specific climate data, gender, and specific activities. the logic splits everything into essentials, clothing, electronics, toiletries, health, and carry-on items. it also estimates the total weight of your gear, which is usually the part where people mess up.

It is completely free. I am looking for blunt feedback on the logic for multi-activity trips — specifically if the balance between "essentials" and "other items" feels right for your region.

https://pack-lightly.com/tool/packing-list-generator/

u/Realistic-Log-4414 — 9 hours ago
▲ 42 r/AI_Application+1 crossposts

What are you all using for Korean speaking practice when you don’t have anyone to talk to?

I’ve been learning Korean for a few months now, but I live somewhere with basically no Korean speakers around me, so speaking practice has been the hardest part for me.

I can study grammar and vocab on my own, but actually getting myself to speak out loud is a different story. I’ve been trying a mix of things, and one of the apps I’ve been using Issen for speaking practice. It’s been helpful just because it gives me a way actually to say things out loud instead of only studying silently.

I’m still figuring out what’s worth sticking with long term, though. The main thing I’m looking for is something that helps with speaking consistency when you don’t have a real conversation partner nearby. At this point I’m mostly trying to build the habit of talking every day without feeling totally stuck.

What’s working for everyone else here? If you’ve been learning Korean solo, I’d love to hear what you actually use for speaking practice and what felt useful versus what got old fast.

u/Impossibu — 16 hours ago

How do you decide where to put the AI in your SaaS product and where to keep it out?

After building and integrating AI features across a lot of SaaS products over the last three years, the decision of where to put AI has become one of the most consequential product calls you can make. Get it right and it drives retention. Get it wrong and it actively erodes trust in the rest of your product.

Here is the filter we use now.

Put AI where the output is verifiable. Summaries, drafts, suggestions, things where the user can glance at the output and know if it is right or wrong. AI handles the generation, the human handles the judgment. This works.

Do not put AI where the output is invisible. Automated routing, silent classification, background scoring, things where the user never sees what the model decided. When these go wrong (and they will), users have no way to trace the problem and no way to trust the system again.

The mistake most teams make: they add AI to the most complex, highest-stakes workflows first because that is where the ROI story sounds biggest. Those are exactly the workflows where a wrong output causes the most damage and where trust recovery is the hardest.

Start with low-stakes, high-frequency tasks. The user encounters the AI dozens of times, builds confidence, and by the time you expand it to higher-stakes workflows they already have a track record with it.

Where have others drawn the line on where AI belongs in your product, and where you explicitly kept it out?

reddit.com
u/Alive-Cake-3045 — 19 hours ago

AI Companions subscriptions are too high. Is there a good free alternative?

My basic instict when I use an AI companion is, do it feels like a friend? And we already have a problem if I need to pay. Who would pay for a friend? (rhetorical question).

I would not anyway. But I live on the earth planet right and I know nothing is free but at least I don’t want to loose a kidney.

Is there any AI Companion that is actually useful AND free?

reddit.com
u/GlitteringTie2554 — 1 day ago

How important is realtime AI visibility tracking?

I’ve been wondering if realtime AI crawler monitoring is actually worth caring about yet. Because I mean we all know that most LLMs still don’t even rely heavily on realtime data anyway. ChatGPT, Claude, and a lot of these systems seem way more dependent on training data or selective retrieval than constantly crawling the web like Google does.

But I do keep seeing platforms pushing realtime visibility tracking, crawler monitoring, and analytics tied to AI mentions, but I genuinely can’t tell if this is actually useful right now or if the market is just getting ahead of itself because of the whole AEO trend.

Is it worth allocating funds for this alongside SEO?

reddit.com
u/Academic_Way_293 — 1 day ago

What AI workflow actually became part of your life?

Not the “replace your entire company with AI agents” stuff.

I mean something small that genuinely stuck.

Maybe:
- summarizing long emails
- brainstorming
- coding help
- voice transcription
- journaling
- research
- automation
- meeting notes
- content drafts

I noticed most AI tools feel exciting for a week, but the ones people keep using are usually the boring tools that quietly save time every day.

Curious what actually survived long term for you.

reddit.com
u/Curious_Being9540 — 2 days ago
▲ 48 r/AI_Application+5 crossposts

[D] PINN loss functions: why physics-informed networks often fail to train

hysics-Informed Neural Networks are interesting because they break the standard ML paradigm: instead of approximating an unknown function from data alone, they exploit a known PDE constraint that the solution must satisfy. In principle this should make them converge faster and generalize better.

In practice the loss function makes them notoriously hard to train. The loss is a weighted sum of multiple terms (PDE residual, boundary conditions, initial conditions, data), each with different scales and gradient magnitudes. Several papers have characterized what goes wrong:

Wang, Teng & Perdikaris (2021) showed empirically and theoretically that during training, the gradients from different loss components become severely imbalanced. The optimizer follows whichever loss has the loudest gradient, regardless of which one matters most.

Wang, Yu & Perdikaris (2022) used Neural Tangent Kernel theory to show that the PDE residual term has much smaller eigenvalues than the boundary loss. The network learns boundaries quickly and interior physics slowly — often it never catches up.

Krishnapriyan et al. (NeurIPS 2021) demonstrated that even on simple PDEs like the convection equation, PINNs systematically fail to converge as the convection coefficient grows. This is on textbook problems with reasonable hyperparameters.

Mitigations exist (adaptive loss weighting, causal training, curriculum approaches, architectural fixes that hard-code boundary conditions) but none has fully solved the problem.

I wrote a longer version with full references and applications here: https://cristobalsantana.substack.com/p/the-pinn-loss-function-where-physics

Curious if anyone here has dealt with these training pathologies in production and what worked for you.

u/Illustrious-Crew5070 — 2 days ago

What’s the hardest part of AI copilot development: UX, data, or model accuracy?

Been building software products for 12+ years and the copilot space is genuinely the hardest category I have worked in, not because of the models but because of everything around them.

The demo always works. Clean data, happy path, someone who knows what to ask. Production is the opposite of that.

In my experience the data access and permissions problem hits first and hits hard. Enterprise environments have years of siloed systems, inconsistent formats, and access controls nobody fully documented. The model is ready in week two, the data pipeline is still broken in month four.

UX trust is the second wall. Users will tolerate one or two bad outputs if the interface gives them confidence. The moment it feels unpredictable they stop using it entirely, even if accuracy is at 90 percent. That last 10 percent does disproportionate damage to adoption.

Model accuracy is actually the problem that gets solved fastest because there are clear benchmarks and iteration loops. The messy human problems, data ownership, workflow change, trust building, those do not have clean solutions.

Priorities always shift after launch. Before launch everyone obsesses over output quality. After launch the question becomes why are only 20 percent of users coming back after the first week.

Curious to know how others are handling the trust and retention problem specifically, that is the one keeping me up right now.

reddit.com
u/Alive-Cake-3045 — 2 days ago
▲ 40 r/AI_Application+2 crossposts

What’s one AI tool you actually use daily now?

Not the overhyped “make $10k overnight” stuff.

I’m curious what AI tools people genuinely ended up using every single day after the hype settled down.

For me it’s honestly ChatGPT for brainstorming and research. I thought AI tools would be a phase for me but now I use them almost daily.

What’s yours and what do you actually use it for?

reddit.com
u/Curious_Being9540 — 3 days ago
▲ 5 r/AI_Application+6 crossposts

I built an agent that monitors my portfolio drawdown and alerts me if it's down 10%

I'm currently at Founders Inc. in San Francisco (in the Canopy program), and have worked on AI agents for retail traders and investors.

I realized a basic problem that has not been addressed is that broker apps do not allow users to set alerts on a percentage variation of their entire portfolio. And even if they did, if a trader uses multiple brokers (which they often do), then there's no existing way to be alerted about your portfolio across all brokers.

So I thought I'd start by solving that issue. I'm going to make it compatible with more and more brokers and neobanks over the next few weeks.

u/Money_Horror_2899 — 3 days ago

Is an Apple Watch actually useful for recording meetings?

I honestly thought the whole “AI meeting recorder for Apple Watch” thing sounded gimmicky until I started using it for conferences and quick in-person meetings.

Been using Bluedot lately and it’s surprisingly convenient. I just start recording from the watch and later get searchable transcripts, summaries, and action items without needing to touch my laptop during the conversation. Anyone else trying something similar or still using your phone for this stuff?

reddit.com
u/kin20 — 3 days ago
▲ 6 r/AI_Application+1 crossposts

Building an AI workflow platform called Pipecat — would love feedback

Been working on Pipecat recently.

Originally I started it because I was tired of rebuilding the same AI workflow logic every time I experimented with agents/tools. So I made a visual builder where you can connect blocks, APIs, prompts, memory, etc and expose the workflow as an endpoint.

While building it, I tried using it for ecommerce support and that became a whole second product on its own.

So now there are basically 2 sides to it:

  1. a builder platform for creating AI workflows/agents
  2. an AI assistant stores can embed on their site with one line of code

The store assistant can now recommend products accd to the queries , can add products to cart from the chat itself and checkout too. It can also handle support queries with human handoff.

One thing I didn’t expect was how useful the analytics side became. Seeing what customers repeatedly ask gives stores a pretty good idea of what confuses people or what they should probably explain better.

Stack:

Frontend : Nextjs

Backend : FastAPI

Datbases : PostgreSQL

Redis for caching

Still very much figuring things out as I go and adding new things

Would love feedback from people building in this space.

For Builders :https://app.pipecat.in

For Store Owners: https://app.pipecat.in/ecomm

For blogs on how to use : https://app.pipecat.in/blogs

u/srinath2709 — 6 days ago
▲ 161 r/AI_Application+14 crossposts

Starting today, I declare scraping free again.

I got tired of anti-bot systems constantly breaking my Playwright AI agent, so I built Invisible_Playwright: an open-source, MIT-licensed Playwright and Firefox fork patched at the C++ level.

Instead of reusing the same noisy automation fingerprint, Invisible_Playwright generates a different but internally consistent browser fingerprint for each session. The goal is to remove the Playwright automation signals while keeping the browser environment coherent and reproducible.

Category Invisible_Playwright result
Fingerprint generation ✅ Different, coherent per-session fingerprint
WebRTC ✅ Pass — no public IP leak
PixelScan ✅ Pass — no inconsistencies
CreepJS ✅ Pass — 0 lies
SannySoft ✅ Pass — all green
BrowserLeaks WebRTC ✅ Pass — no public IP leak
reCAPTCHA v3 ✅ Pass — 0.90
Fingerprint Pro ✅ Pass — bot=false, tampering=false
Cloudflare / Turnstile ✅ Pass
hCaptcha ✅ Pass
DataDome-style checks ✅ Pass
Kasada-style checks ✅ Pass
Akamai-style checks ✅ Pass
Imperva-style checks ✅ Pass
HUMAN / PerimeterX-style checks ✅ Pass
Arkose-style checks ✅ Pass

Repo: https://github.com/feder-cr/invisible_playwright

github.com
u/bolaretyr — 8 days ago
▲ 51 r/AI_Application+1 crossposts

So I've been preparing for IELTS for the past few months and honestly the reading and writing sections felt manageable with enough practice. But the speaking section was a completely different story. Every time I tried to practice out loud my brain just froze. I knew the words, I understood the questions, but forming a coherent spoken answer under any kind of pressure felt impossible.

I should mention I'm not a native English speaker and I'm still learning. So the speaking pressure wasn't just about IELTS format, it was also just about speaking English confidently in general. I had no consistent way to practice. I couldn't afford a tutor every single day, and my friends weren't exactly lining up to do IELTS speaking mock tests with me at 7am. I tried recording myself and playing it back which helped a little but there was no feedback, no way to know if what I was saying actually made sense or sounded natural.

That's when I started using Issen. I saw it mentioned a few times across different language and exam prep communities so I figured I'd try it. It's basically an AI speaking tool where you just talk and it gives you real feedback in real time. No scheduling, no awkward silences, no feeling embarrassed in front of a real person. I started doing 15–20 minutes every morning before my regular study session.

After about three weeks something genuinely shifted. I stopped freezing mid-answer. My responses started feeling more structured. I wasn't searching for words as desperately as before. I also started using it to just refine how I express things in English, not just for exam practice but for general fluency too. Tbh I wasn't expecting it to make that big a difference that fast.

I still combined it with other prep, reading sample answers, doing timed writing practice, watching IELTS speaking examples on YouTube. But for the specific problem of "I understand everything but I can't speak smoothly," Issen was the thing that actually moved the needle.

If you're in the same spot, a non-native speaker preparing for IELTS or any other language exam and the speaking section feels like a wall, it's worth trying. Even just 15 minutes a day of low-pressure speaking practice adds up faster than you'd expect.

u/crystalgaylexx — 8 days ago

FastApi or Spring boot for AI application development

Do people still use Fast Api for production code for AI apps considering spring boot is widely used lib for reliable and secure app development ?

my question for more towards do people rely on fast api for small scale ai apps in production ?

reddit.com
u/SadCryptographer1738 — 6 days ago

Customer onboarding automation using AI that doesn’t feel robotic

We built a SaaS product and our onboarding is still manual founder calls and Notion checklists. Users sign up, poke around, and drop off because they don’t know what to do next.

I want an AI layer that watches what they do in-app, guides them to the next best action, and answers basic questions without sending them to docs. If they get stuck for more than 24 hours, I want a human alert.

The tools I’ve tried either blast generic tours or hallucinate answers. I need it to use our real product data and knowledge base, not guess. How are teams applying AI to onboarding that actually helps and knows when to hand off?

reddit.com
u/Front-Vermicelli-217 — 8 days ago

What AI features does WPS Office add to Spreadsheets, is it worth upgrading for?

Running an older version of WPS Office that predates the AI features and considering upgrading. Before I do I want to understand specifically what the AI addition actually brings to the Spreadsheets side of things rather than just the document and PDF features which seem to get most of the attention.

What does WPS Spreadsheets AI actually do and is it genuinely useful for everyday spreadsheet work or more of a novelty? Would love to hear from anyone who made the same upgrade and noticed a meaningful difference in their spreadsheet workflow

reddit.com
u/StrongPipe_69 — 9 days ago
▲ 42 r/AI_Application+28 crossposts

This one is for all the broke college CS students out there <3

If you're like me, you don't want to pay $20 a month for claude code :(

It's an amazing tool I love, but a recurring expense is the last thing I need. That's why I find myself jumping from tool to tool, using the daily or monthly free tier limits and constantly having to find new free tools.

That's where "AI For Brokies" comes in. Just a simple github repo with a readme file of some free AI tools you can use for building :)

https://github.com/Joe-Huber/AI-For-Brokies

The actual building behind this project was mostly the automatic tool adder, following an issue format! If you want to see it in action, please drop an issue explaining a tool you use and see the bot do it's magic!

Please feel free to leave a star! ⭐️ (pretty please) You can use it to save the list of tools for whenever you run out of credits!

u/Joe-Codes — 12 days ago

Can anyone share some free AI Companion Apps?

Spent the last few weeks actually testing "free" AI companion apps because I kept getting hit with paywalls after getting attached to a character. Honest finding: most are free trials in disguise. Pi AI is the only one with zero paid tier at all. Character.AI is genuinely usable free but doesn't build memory over time. SoulLink surprised me that memory actually carried over between sessions without paying, and the companion texted me first a few times which felt weirdly nice. Still early but the free tier felt the most complete. Has anyone else been going down this rabbit hole? Curious what's actually sticking for people long term.

reddit.com
u/daisyyuan0 — 10 days ago