<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: bobby jones</title>
    <description>The latest articles on DEV Community by bobby jones (@bobby_jones_ac8e81fa38438).</description>
    <link>https://dev.to/bobby_jones_ac8e81fa38438</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3875628%2F7405e932-ef57-4bd7-aeff-5eccb7e73931.png</url>
      <title>DEV Community: bobby jones</title>
      <link>https://dev.to/bobby_jones_ac8e81fa38438</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bobby_jones_ac8e81fa38438"/>
    <language>en</language>
    <item>
      <title>How I Built NutriAI: An AI Malnutrition Assessment Platform in 48 Hours</title>
      <dc:creator>bobby jones</dc:creator>
      <pubDate>Sun, 12 Apr 2026 23:53:50 +0000</pubDate>
      <link>https://dev.to/bobby_jones_ac8e81fa38438/how-i-built-nutriai-an-ai-malnutrition-assessment-platform-in-48-hours-3c25</link>
      <guid>https://dev.to/bobby_jones_ac8e81fa38438/how-i-built-nutriai-an-ai-malnutrition-assessment-platform-in-48-hours-3c25</guid>
      <description>&lt;p&gt;The Problem&lt;br&gt;
42 million Americans face food insecurity. That's 1 in 8 people.&lt;br&gt;
But here's what shocked me: most people struggling with malnutrition don't have access to quick, reliable tools to:&lt;/p&gt;

&lt;p&gt;Assess if they're nutritionally at-risk&lt;br&gt;
Find nearby food banks or community resources&lt;br&gt;
Get meal plans that work with what they can actually afford&lt;/p&gt;

&lt;p&gt;I wanted to fix that. So I built NutriAI.&lt;/p&gt;

&lt;p&gt;What is NutriAI?&lt;br&gt;
NutriAI is an AI-powered platform that helps people in underserved communities assess malnutrition risk and connect with food resources nearby.&lt;br&gt;
Key features:&lt;/p&gt;

&lt;p&gt;AI Risk Assessment - Machine learning model that evaluates malnutrition risk based on demographics, symptoms, and dietary patterns&lt;br&gt;
Food Resource Map - Interactive map showing food banks, community kitchens, and affordable markets nearby&lt;br&gt;
Smart Meal Plans - AI generates personalized meal suggestions based on available ingredients and budget&lt;br&gt;
Community Exchange - Share surplus food with neighbors, request items you need&lt;/p&gt;

&lt;p&gt;Why I Built It (And Why You Should Too)&lt;br&gt;
When I started this project, I wasn't thinking "how do I build something impressive?" I was thinking "what problem actually matters?"&lt;br&gt;
Food insecurity is one of those problems that seems too big to solve alone. But then I realized: I can make a tool that helps thousands of people assess their own risk and find resources. That's impact.&lt;br&gt;
The hackathon deadline (Fuel the Future 2026) forced me to actually finish something instead of endlessly tinkering.&lt;/p&gt;

&lt;p&gt;The Tech Stack&lt;br&gt;
I wanted to build something that worked great, deployed easily, and didn't require a backend (easier to launch, no server costs).&lt;br&gt;
Here's what I used:&lt;br&gt;
Frontend: React 18 (loaded via CDN + Babel Standalone)&lt;br&gt;
3D Effects: Three.js (animated torus knot + particle effects)&lt;br&gt;
Styling: Custom CSS with glassmorphism&lt;br&gt;
Fonts: DM Sans, Space Grotesk (Google Fonts)&lt;br&gt;
Deployment: GitHub Pages (free!)&lt;br&gt;
Why these choices?&lt;br&gt;
React via CDN - No build process needed. I could write JSX and have it work immediately. Perfect for rapid prototyping.&lt;/p&gt;

&lt;p&gt;Building the Features&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;AI Risk Assessment
This was the core feature. I built a machine learning evaluation that takes user inputs:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Age, location, income level&lt;br&gt;
Symptoms (fatigue, weakness, frequent illness, etc.)&lt;br&gt;
Dietary patterns (how often they eat vegetables, protein, etc.)&lt;/p&gt;

&lt;p&gt;The data comes from a combination of Google Places API and community databases. Users can filter by resource type and distance.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Smart Meal Plans
This was fun. The AI takes:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Available ingredients&lt;br&gt;
Nutritional needs (based on risk assessment)&lt;br&gt;
Budget constraints&lt;br&gt;
Dietary preferences&lt;/p&gt;

&lt;p&gt;And generates meal plans with recipes. It prioritizes nutrient density and affordability.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Community Exchange
This is the social layer. Users can:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Post surplus food they have&lt;br&gt;
Request items they need&lt;br&gt;
Connect with neighbors&lt;br&gt;
Build community resilience&lt;/p&gt;

&lt;p&gt;It's simple but powerful—helps bridge the gap when people have extra and neighbors need it.&lt;/p&gt;

&lt;p&gt;Challenges I Hit (And How I Solved Them)&lt;br&gt;
Challenge 1: No Backend = No User Data Storage&lt;br&gt;
Problem: I wanted users to save their meal plans and preferences, but I had no backend to store data.&lt;br&gt;
Solution: Browser localStorage. It's not fancy, but it works for a prototype. Users' data stays on their device, privacy is protected, and it still feels like the app "remembers" them.&lt;/p&gt;

&lt;p&gt;What I'd Do Differently (Next Time)&lt;/p&gt;

&lt;p&gt;Start with backend earlier - localStorage works, but a real database would enable features like user accounts, community features, etc.&lt;br&gt;
User testing sooner - I built based on assumptions. Talking to 3-5 people from the target community earlier would have shaped priorities differently.&lt;br&gt;
Simpler first version - I could have launched with just the risk assessment + resource map. The meal planner and community exchange can come later. Done &amp;gt; Perfect.&lt;br&gt;
Documentation from day one - I scrambled to write the README at the end. Would've been easier to document as I built.&lt;/p&gt;

&lt;p&gt;Key Takeaways&lt;br&gt;
For builders:&lt;/p&gt;

&lt;p&gt;Ship something imperfect - NutriAI isn't perfect, but it exists and people are using it&lt;br&gt;
Choose boring tech - React, Three.js, GitHub Pages. Nothing bleeding-edge. Boring = reliable = shipped&lt;br&gt;
Build for a real problem - This project stands out because it solves something real, not because of fancy tech&lt;/p&gt;

&lt;p&gt;For problem-solving:&lt;/p&gt;

&lt;p&gt;Big problems need small solutions first - Food insecurity is huge. I can't fix it alone. But I can give people a tool to help themselves. Start small.&lt;br&gt;
Accessibility matters - Mobile-first, fast-loading, works with slow connections. The people who need this most have the worst internet.&lt;/p&gt;

&lt;p&gt;Try It Out&lt;br&gt;
Live site: &lt;a href="https://kalrakrish777-ctrl.github.io/nutriai/" rel="noopener noreferrer"&gt;https://kalrakrish777-ctrl.github.io/nutriai/&lt;/a&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/kalrakrish777-ctrl/nutriai" rel="noopener noreferrer"&gt;https://github.com/kalrakrish777-ctrl/nutriai&lt;/a&gt;&lt;br&gt;
I'd love feedback! What features would be most useful? Any bugs? Any ideas for improvement?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
