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
Daeron Targaryen finally made his debut in ‘House of the Dragon.’ Here’s what to know about Alicent’s youngest son.

Daeron Targaryen finally made his debut in ‘House of the Dragon.’ Here’s what to know about Alicent’s youngest son.

July 5, 2026
His parkour class isn’t about flips. It’s about getting back up.

His parkour class isn’t about flips. It’s about getting back up.

July 5, 2026
I left Google and spent a year traveling. 6 months on a Thai island led me to a career I never expected.

I left Google and spent a year traveling. 6 months on a Thai island led me to a career I never expected.

July 5, 2026
After decades in Silicon Valley, a former Apple and Amazon engineer started an AI chip company in his mid-50s

After decades in Silicon Valley, a former Apple and Amazon engineer started an AI chip company in his mid-50s

July 5, 2026
I’m a 75-year-old retiree in Newark. My partner and I spend 0 a week on groceries and save money by skipping meat.

I’m a 75-year-old retiree in Newark. My partner and I spend $150 a week on groceries and save money by skipping meat.

July 5, 2026
Facebook X (Twitter) Instagram
  • Privacy Policy
  • Terms of use
  • Press Release
  • Advertise
  • Contact
July 5, 2026 10:33 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

Daeron Targaryen finally made his debut in ‘House of the Dragon.’ Here’s what to know about Alicent’s youngest son.

Daeron Targaryen finally made his debut in ‘House of the Dragon.’ Here’s what to know about Alicent’s youngest son.

His parkour class isn’t about flips. It’s about getting back up.

His parkour class isn’t about flips. It’s about getting back up.

After decades in Silicon Valley, a former Apple and Amazon engineer started an AI chip company in his mid-50s

After decades in Silicon Valley, a former Apple and Amazon engineer started an AI chip company in his mid-50s

Waymo says some of its robotaxis ran out of power during San Francisco’s July 4 gridlock and had to be towed

Waymo says some of its robotaxis ran out of power during San Francisco’s July 4 gridlock and had to be towed

BMW CEO touts US manufacturing push with .7B South Carolina EV expansion

BMW CEO touts US manufacturing push with $1.7B South Carolina EV expansion

Read the pitch deck these Stanford grads used to raise .6 million for a wearable device to track women’s hormones

Read the pitch deck these Stanford grads used to raise $11.6 million for a wearable device to track women’s hormones

I’m the organizer in my friend group. Someone has to be, or we’d never see each other.

I’m the organizer in my friend group. Someone has to be, or we’d never see each other.

AI-native startups are hiring fewer entry-level workers, Harvard study finds

AI-native startups are hiring fewer entry-level workers, Harvard study finds

AI got this lawyer away from his desk: ‘Dramatically more efficient’

AI got this lawyer away from his desk: ‘Dramatically more efficient’

Add A Comment
Leave A Reply Cancel Reply

Editors Picks

His parkour class isn’t about flips. It’s about getting back up.

His parkour class isn’t about flips. It’s about getting back up.

July 5, 2026
I left Google and spent a year traveling. 6 months on a Thai island led me to a career I never expected.

I left Google and spent a year traveling. 6 months on a Thai island led me to a career I never expected.

July 5, 2026
After decades in Silicon Valley, a former Apple and Amazon engineer started an AI chip company in his mid-50s

After decades in Silicon Valley, a former Apple and Amazon engineer started an AI chip company in his mid-50s

July 5, 2026
I’m a 75-year-old retiree in Newark. My partner and I spend 0 a week on groceries and save money by skipping meat.

I’m a 75-year-old retiree in Newark. My partner and I spend $150 a week on groceries and save money by skipping meat.

July 5, 2026
Waymo says some of its robotaxis ran out of power during San Francisco’s July 4 gridlock and had to be towed

Waymo says some of its robotaxis ran out of power during San Francisco’s July 4 gridlock and had to be towed

July 5, 2026

Latest News

BMW CEO touts US manufacturing push with .7B South Carolina EV expansion

BMW CEO touts US manufacturing push with $1.7B South Carolina EV expansion

July 5, 2026
Read the pitch deck these Stanford grads used to raise .6 million for a wearable device to track women’s hormones

Read the pitch deck these Stanford grads used to raise $11.6 million for a wearable device to track women’s hormones

July 5, 2026
I’m the organizer in my friend group. Someone has to be, or we’d never see each other.

I’m the organizer in my friend group. Someone has to be, or we’d never see each other.

July 5, 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.