Close Menu
Fin Street NewsFin Street News
  • Home
  • Business
  • Finance
    • Banking
    • Stocks
    • Commodities & Futures
    • ETFs & Mutual Funds
    • Funds
    • Currencies
    • Crypto
  • Markets
  • Investing
  • Personal Finance
    • Loans
    • Credit Cards
    • Dept Management
    • Retirement
    • Mortgages
    • Saving
    • Taxes
  • Fintech
  • More Articles

Subscribe to Updates

Get the latest finance and business news and updates directly to your inbox.

Trending
I wanted to go to grad school, but I let my husband talk me out of it. I was initially angry until I saw he was right.

I wanted to go to grad school, but I let my husband talk me out of it. I was initially angry until I saw he was right.

July 14, 2026
I spent 2 nights at Lisa Vanderpump’s brand-new Las Vegas hotel. See inside the only new hotel opening on the Strip this year.

I spent 2 nights at Lisa Vanderpump’s brand-new Las Vegas hotel. See inside the only new hotel opening on the Strip this year.

July 14, 2026
Taco Bell takes extra cyclospora precautions while CDC investigates outbreak

Taco Bell takes extra cyclospora precautions while CDC investigates outbreak

July 14, 2026
At 38, I didn’t want to waste time trying to get pregnant. Our employers’ fertility benefits let us skip straight to IVF.

At 38, I didn’t want to waste time trying to get pregnant. Our employers’ fertility benefits let us skip straight to IVF.

July 14, 2026
New Rivian Buyers Can Save ,500 on New EVs in California. Here’s Why

New Rivian Buyers Can Save $3,500 on New EVs in California. Here’s Why

July 14, 2026
Facebook X (Twitter) Instagram
  • Privacy Policy
  • Terms of use
  • Press Release
  • Advertise
  • Contact
July 14, 2026 11:47 pm EDT
|
Facebook X (Twitter) Instagram
  Market Data
Fin Street NewsFin Street News
Newsletter Login
  • Home
  • Business
  • Finance
    • Banking
    • Stocks
    • Commodities & Futures
    • ETFs & Mutual Funds
    • Funds
    • Currencies
    • Crypto
  • Markets
  • Investing
  • Personal Finance
    • Loans
    • Credit Cards
    • Dept Management
    • Retirement
    • Mortgages
    • Saving
    • Taxes
  • Fintech
  • More Articles
Fin Street NewsFin Street News
Home » She had a baby, tried AI coding, and built the nutrition app she actually wanted
She had a baby, tried AI coding, and built the nutrition app she actually wanted
Markets

She had a baby, tried AI coding, and built the nutrition app she actually wanted

News RoomBy News RoomMay 28, 20263 ViewsNo Comments


2026-05-28T09:30:01.265Z


Read in app




Copy link


Email


Facebook


WhatsApp


X


LinkedIn


Bluesky


Threads

lighning bolt icon An icon in the shape of a lightning bolt.


Impact Link



Save
Saved

This story is available exclusively to Business Insider
subscribers. Become an Insider
and start reading now.

Have an account? .

Lisa Lin had long worked alongside coders. When she had her son, she tried it for herself.

The 33-year-old has worked in operations roles at a variety of tech companies, including Uber. But she was “non-technical,” as her industry would call it; she couldn’t code.

Then came the AI revolution, and her baby. Lin moved from a full-time operations role to a contractor while taking on the new job of stay-at-home mom.

She’d heard horror stories about those early months, but has been pleasantly surprised. “He’s a happy baby,” she said.

When her baby was about 5 months old, she began testing out nutritional apps to introduce solid foods and identify allergens. She tried a popular nutrition app but found it overwhelming. “Day to day, it’s a lot of information to digest,” she said.



AI Conversation Embed — Annotated

‘
).join(”);

root.innerHTML = `

`;

const msgsEl = document.getElementById(‘messages’);
(cfg.messages || []).forEach((m, i) => {
if (m.role === ‘divider’) {
const d = document.createElement(‘div’);
d.className=”divider”;
d.style.transitionDelay = (Math.min(i, 6) * 80) + ‘ms’;
d.innerHTML = m.label ? ‘‘ + esc(m.label) + ‘‘ : ”;
msgsEl.appendChild(d);
return;
}

const row = document.createElement(‘div’);
row.className=”msg-row”;
row.style.transitionDelay = (Math.min(i, 6) * 80) + ‘ms’;
row.dataset.index = i;

const msgDiv = document.createElement(‘div’);
msgDiv.className=”msg ” + (m.role === ‘user’ ? ‘user’ : ‘assistant’);

const markerHtml = m._noteNum
? ‘‘ + m._noteNum + ‘‘
: ”;

if (m.image) {
const cap = m.caption ? ‘

‘ + esc(m.caption) + ‘

‘ : ”;
if (m.role === ‘user’) {
msgDiv.innerHTML =
‘

‘ +
‘' + esc(m.alt || '') + '‘ +
cap +
‘

‘ + markerHtml;
} else {
msgDiv.innerHTML =
markerHtml +
‘

‘ +
‘' + esc(m.alt || '') + '‘ +
cap +
‘

‘;
}
} else {
const bodyHtml = renderText(m.text || ”);
if (m.role === ‘user’) {
msgDiv.innerHTML = ‘

‘ + bodyHtml + ‘

‘ + markerHtml;
} else {
msgDiv.innerHTML = markerHtml + ‘

‘ + bodyHtml + ‘

‘;
}
}

row.appendChild(msgDiv);

// Inline note for mobile — placed before the annotated message
if (m.note) {
const inlineNote = document.createElement(‘div’);
inlineNote.className=”note-inline msg-row”;
inlineNote.style.transitionDelay = (Math.min(i, 6) * 80) + ‘ms’;
inlineNote.innerHTML = esc(m.note);
msgsEl.appendChild(inlineNote);
}

msgsEl.appendChild(row);
});

// Animate in
const items = msgsEl.querySelectorAll(‘.msg-row, .divider’);
const sideNotes = document.querySelectorAll(‘.note-sidebar’);
if (‘IntersectionObserver’ in window) {
const io = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.classList.add(‘in’);
// Also reveal matching sidebar note
const idx = e.target.dataset && e.target.dataset.index;
if (idx !== undefined) {
const sn = document.querySelector(‘.note-sidebar[data-for=”‘ + idx + ‘”]’);
if (sn) sn.classList.add(‘in’);
}
io.unobserve(e.target);
}
});
}, { root: msgsEl, threshold: 0.15, rootMargin: ‘0px 0px -20px 0px’ });
items.forEach(el => io.observe(el));
requestAnimationFrame(() => {
const cr = msgsEl.getBoundingClientRect();
items.forEach(el => {
const r = el.getBoundingClientRect();
if (r.top < cr.bottom && r.bottom > cr.top) {
el.classList.add(‘in’);
const idx = el.dataset && el.dataset.index;
if (idx !== undefined) {
const sn = document.querySelector(‘.note-sidebar[data-for=”‘ + idx + ‘”]’);
if (sn) sn.classList.add(‘in’);
}
io.unobserve(el);
}
});
});
} else {
items.forEach(el => el.classList.add(‘in’));
sideNotes.forEach(el => el.classList.add(‘in’));
}

// Show sidebar notes after a short delay
setTimeout(() => {
document.querySelectorAll(‘.note-sidebar’).forEach(el => el.classList.add(‘in’));
}, 600);

function esc(s) {
return String(s).replace(/[&<>”‘]/g, c => ({
‘&’:’&’,'<‘:'<‘,’>’:’>’,'”‘:'”‘,”‘”:”’
}[c]));
}

// Render text with hanging indent on bulleted lines
function renderText(s) {
const lines = String(s).split(‘n’);
return lines.map(line => {
if (line.trim() === ”) {
return ‘ ‘;
}
// Detect leading whitespace and bullet character
const m = line.match(/^(s*)([•◦●○-*])s+(.*)$/);
if (m) {
const ws = m[1].length;
const depth = ws >= 8 ? 2 : 1;
return ‘‘ + esc(m[2] + ‘ ‘ + m[3]) + ‘‘;
}
// Indented non-bullet line
const indentMatch = line.match(/^(s+)(.*)$/);
if (indentMatch && indentMatch[2]) {
return ‘‘ + esc(indentMatch[2]) + ‘‘;
}
return ‘‘ + esc(line) + ‘‘;
}).join(”);
}
})();

All Lin wanted was an app that would “tell me what I should do today,” she said.

“I’m huge on nutrition,” Lin said. “I want to make sure I’m doing this right because, honestly, my pediatrician didn’t tell me anything. They just handed me a paper.”

So, she got out Lovable, an AI app builder, and started tinkering. She joined the growing class of “vibe coders” who construct apps and sites with little-to-no engineering knowledge. All they need is an AI tool, some good prompts, a vision of what could help make their lives better, and a willingness to experiment.

Lin gathered data on which 50-100 foods to first introduce to your baby. Her information came primarily from the Department of Agriculture’s database, with assistance from ChatGPT and some online articles. She then built a daily checklist with the goal of making sure her baby was eating the right foods at the right time — and named it Nutribabe.

This is the fourth story in a new Business Insider series, “Vibe Code Your Life,” about regular, non-techie people using AI tools to solve life’s little problems, like a firefighter making grocery shopping less miserable. Have a story to share? Reach out to this reporter at hchandonnet@insider.com.

For many vibe coders, the thrill of prompting leads to hours and hours of work. Lin couldn’t do that with a five-month-old; she rarely got an hour uninterrupted.

“I don’t get to sit down at the computer for three hours and vibe code everything,” Lin said. “I don’t have the luxury to do that.”

Lin would often spend thirty minutes with Lovable before returning to her baby when he cried or needed feeding. Her peak hours were in the morning, and it took about one month to build the first iteration.


Lin wanted a way to manage her baby’s nutrition. “My pediatrician didn’t tell me anything,” she said. 

Jacob Kepler for BI

The most challenging task was building the app’s internal infrastructure. Nutribabe includes a recommendation engine based on the baby’s age and preferences.

Having a techie husband helps. Lin met her partner in San Francisco, where she moved after living in China and Singapore. They matched on Coffee Meets Bagel and stayed in San Francisco before moving to Las Vegas.

Her husband is a machine learning engineer. “He’s an expert on everything AI,” Lin said. “Sometimes, I get tips.”

That also helped inform her biggest piece of advice.

“When it comes to building as a non-technical person, the most important thing is getting tips,” Lin said. She could easily vibe code a shoddy app, she said, but wouldn’t know whether there were bugs or security concerns without asking for help from someone in the know.

Once the app was built, Lin started using it every day.

“I definitely felt more organized,” she said. “I felt more confident and more calm.”

Lin’s next challenge: converting the web app into a mobile platform. She wants to open it to the public, but is planning to get in a bit more user testing first.

“I still want to validate some specific product features with my mom friend,” she said.



Read the full article here

Share. Facebook Twitter LinkedIn Telegram WhatsApp Email

Keep Reading

I spent 2 nights at Lisa Vanderpump’s brand-new Las Vegas hotel. See inside the only new hotel opening on the Strip this year.

I spent 2 nights at Lisa Vanderpump’s brand-new Las Vegas hotel. See inside the only new hotel opening on the Strip this year.

At 38, I didn’t want to waste time trying to get pregnant. Our employers’ fertility benefits let us skip straight to IVF.

At 38, I didn’t want to waste time trying to get pregnant. Our employers’ fertility benefits let us skip straight to IVF.

New York enacts nation’s first statewide moratorium on AI data centers

New York enacts nation’s first statewide moratorium on AI data centers

What Jay-Z has in his watch collection, from one of the most complicated designs ever made to a  million timepiece

What Jay-Z has in his watch collection, from one of the most complicated designs ever made to a $6 million timepiece

The most iconic ice cream shop in every state

The most iconic ice cream shop in every state

I visited DC’s oldest restaurant, located just steps from the White House. I saw why it has endured for generations.

I visited DC’s oldest restaurant, located just steps from the White House. I saw why it has endured for generations.

IBM gets sucked into the AI-powered memory chip vortex

IBM gets sucked into the AI-powered memory chip vortex

Live Q&A: How vibe coding is transforming tech — and tech jobs

Live Q&A: How vibe coding is transforming tech — and tech jobs

I moved to Los Angeles after a layoff. Relocating to a high-cost city was risky, but I’m glad I listened to my gut.

I moved to Los Angeles after a layoff. Relocating to a high-cost city was risky, but I’m glad I listened to my gut.

Add A Comment
Leave A Reply Cancel Reply

Editors Picks

I spent 2 nights at Lisa Vanderpump’s brand-new Las Vegas hotel. See inside the only new hotel opening on the Strip this year.

I spent 2 nights at Lisa Vanderpump’s brand-new Las Vegas hotel. See inside the only new hotel opening on the Strip this year.

July 14, 2026
Taco Bell takes extra cyclospora precautions while CDC investigates outbreak

Taco Bell takes extra cyclospora precautions while CDC investigates outbreak

July 14, 2026
At 38, I didn’t want to waste time trying to get pregnant. Our employers’ fertility benefits let us skip straight to IVF.

At 38, I didn’t want to waste time trying to get pregnant. Our employers’ fertility benefits let us skip straight to IVF.

July 14, 2026
New Rivian Buyers Can Save ,500 on New EVs in California. Here’s Why

New Rivian Buyers Can Save $3,500 on New EVs in California. Here’s Why

July 14, 2026
Chamath Palihapitiya says CFOs could be in for a tokenmaxxing shock during company earnings

Chamath Palihapitiya says CFOs could be in for a tokenmaxxing shock during company earnings

July 14, 2026

Latest News

New York enacts nation’s first statewide moratorium on AI data centers

New York enacts nation’s first statewide moratorium on AI data centers

July 14, 2026
10 Legit Ways to Pocket Extra Cash in Under 60 Minutes

10 Legit Ways to Pocket Extra Cash in Under 60 Minutes

July 14, 2026
Affordability Is A Big Problem. Lower Rates Won’t Solve It

Affordability Is A Big Problem. Lower Rates Won’t Solve It

July 14, 2026

Subscribe to News

Get the latest finance and business news and updates directly to your inbox.

Advertisement
Demo
Facebook X (Twitter) Pinterest TikTok Instagram
2026 © Prices.com LLC. All Rights Reserved.
  • Privacy Policy
  • Terms
  • For Advertisers
  • Contact

Type above and press Enter to search. Press Esc to cancel.