<?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: Md. Shakhawat Hossain</title>
    <description>The latest articles on DEV Community by Md. Shakhawat Hossain (@md_shakhawathossain_b5c).</description>
    <link>https://dev.to/md_shakhawathossain_b5c</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%2F3273211%2F4c6985bf-8c77-4e75-9bed-d3ff095ed473.gif</url>
      <title>DEV Community: Md. Shakhawat Hossain</title>
      <link>https://dev.to/md_shakhawathossain_b5c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/md_shakhawathossain_b5c"/>
    <language>en</language>
    <item>
      <title>STRATYX is a data-driven assistant coach for esports teams</title>
      <dc:creator>Md. Shakhawat Hossain</dc:creator>
      <pubDate>Thu, 29 Jan 2026 17:11:21 +0000</pubDate>
      <link>https://dev.to/md_shakhawathossain_b5c/stratyx-is-a-data-driven-assistant-coach-for-esports-teams-4bdc</link>
      <guid>https://dev.to/md_shakhawathossain_b5c/stratyx-is-a-data-driven-assistant-coach-for-esports-teams-4bdc</guid>
      <description>&lt;p&gt;Inspiration&lt;br&gt;
Esports has exploded into a multi-billion dollar industry, yet coaching tools remain surprisingly primitive. While traditional sports have embraced data analytics for decades—think Moneyball revolutionizing baseball—esports coaches still rely heavily on intuition, manual VOD reviews, and scattered spreadsheets. We asked ourselves: What if an assistant coach could process thousands of in-game events in real-time, identify causal patterns invisible to the human eye, and deliver statistically-validated insights during live matches?&lt;/p&gt;

&lt;p&gt;We were inspired by the untapped potential of GRID's official esports data APIs and the transformative power of AI to democratize elite-level coaching. Our mission was clear: build the Moneyball of esports—a data-driven assistant coach that empowers teams at every level to compete like world champions.&lt;/p&gt;

&lt;p&gt;What it does&lt;br&gt;
STRATYX is an AI-powered assistant coach that transforms raw match data into actionable coaching intelligence in under 500ms.&lt;/p&gt;

&lt;p&gt;Core Features:&lt;br&gt;
🎯 Real-Time Win Probability Engine — Bayesian estimation with Monte Carlo simulations (1000+ iterations) providing live win probability with confidence intervals and factor decomposition (economy, objectives, man-advantage, strategy debt)&lt;/p&gt;

&lt;p&gt;🔬 Causal Inference System — Connects micro-actions (missed shots, poor positioning) to macro-outcomes (round losses, map defeats) through temporal graph analysis with statistically-validated causal weights&lt;/p&gt;

&lt;p&gt;📊 Strategy Debt™ Metric — Our proprietary quantification of accumulated tactical disadvantages across game phases, helping coaches identify which bad habits are actually costing wins&lt;/p&gt;

&lt;p&gt;🧠 ARIA - AI Assistant Coach — Powered by Gemini AI, provides natural language coaching advice, real-time tactical suggestions, and personalized improvement plans contextual to the live match&lt;/p&gt;

&lt;p&gt;📈 Pattern Recognition — Detects recurring mistakes, success sequences, and phase-specific vulnerabilities using sliding-window analysis with minimum confidence thresholds&lt;/p&gt;

&lt;p&gt;🎮 Multi-Game Support — Valorant, League of Legends, CS2, and Dota2 support via GRID's official APIs&lt;/p&gt;

&lt;p&gt;Views:&lt;br&gt;
Live Dashboard — Real-time match intelligence with win probability charts, causal graphs, and priority alerts&lt;br&gt;
Coach Insights — Deep-dive analysis with AI-generated recommendations&lt;br&gt;
Player Analysis — Individual performance cards with impact scores, risk levels, and improvement plans&lt;br&gt;
How we built it&lt;br&gt;
Architecture&lt;/p&gt;

&lt;p&gt;GRID Live Events (WebSocket) → Event Ingestion → Statistical Validation → Causal Engine → React UI                                    ↓ &amp;lt;500ms total latency&lt;br&gt;
Tech Stack:&lt;br&gt;
Frontend: React 18, TypeScript, Vite, Tailwind CSS&lt;br&gt;
Visualization: Recharts for data viz, Three.js for 3D AI assistant panel&lt;br&gt;
Data Layer: Apollo Client for GraphQL, WebSocket for real-time events&lt;br&gt;
AI: Google Gemini API for conversational coaching&lt;br&gt;
Statistics: Custom implementations of Chi-Square, Mann-Whitney U, Pearson correlation, and 95% confidence intervals&lt;br&gt;
Data Sources:&lt;br&gt;
GRID Central Data GraphQL API (historical match data)&lt;br&gt;
GRID Series State GraphQL API (live match state)&lt;br&gt;
GRID File Download API (event logs and end-state data)&lt;br&gt;
Key Technical Implementations:&lt;br&gt;
Temporal Feature Store — Time-series storage with player-specific indexing for sub-100ms feature retrieval&lt;br&gt;
Real-Time Sync Service — WebSocket primary with GraphQL polling fallback, auto-reconnect, and backpressure handling&lt;br&gt;
Statistical Validation Layer — Every insight requires p &amp;lt; 0.05 significance and includes effect size calculations&lt;br&gt;
Counterfactual Simulator — "What-if" scenario analysis for strategic planning&lt;br&gt;
Challenges we ran into&lt;br&gt;
🔄 Real-Time Processing at Scale — Achieving &amp;lt;500ms end-to-end latency while running statistical validation on every insight was incredibly challenging. We implemented aggressive event batching, priority queues, and sliding-window pattern analysis to meet our performance targets.&lt;/p&gt;

&lt;p&gt;📊 Statistical Rigor vs. Speed — Running Chi-Square tests and calculating confidence intervals in real-time seemed contradictory. We solved this by pre-computing statistical thresholds and using incremental update algorithms.&lt;/p&gt;

&lt;p&gt;🔗 Causal Inference in Non-Deterministic Games — Esports have high variance. A "bad" play can still work, and vice versa. We addressed this by building confidence-weighted causal graphs that accumulate evidence over time rather than making snap judgments.&lt;/p&gt;

&lt;p&gt;🎮 Multi-Game Normalization — Valorant's agent abilities, LoL's lanes, and CS2's economy are fundamentally different. Creating a unified data model that preserves game-specific nuances while enabling cross-game patterns was a significant engineering challenge.&lt;/p&gt;

&lt;p&gt;🔐 API Authentication &amp;amp; Rate Limiting — Managing WebSocket connections with proper authentication while gracefully falling back to polling during disconnects required careful state management.&lt;/p&gt;

&lt;p&gt;Accomplishments that we're proud of&lt;br&gt;
✅ &amp;lt;500ms Processing Latency — From raw event to validated insight in under half a second, guaranteed&lt;/p&gt;

&lt;p&gt;✅ Statistical Rigor — Every single insight includes p-values, confidence intervals, and effect sizes. No more "gut feel" recommendations&lt;/p&gt;

&lt;p&gt;✅ Strategy Debt™ — We invented a novel metric that quantifies accumulated tactical mistakes across game phases, something no existing tool provides&lt;/p&gt;

&lt;p&gt;✅ Production-Ready Architecture — Auto-reconnecting WebSockets, fallback polling, data quality scoring, and comprehensive error handling&lt;/p&gt;

&lt;p&gt;✅ ARIA AI Coach — A contextually-aware conversational AI that understands the current match state and provides personalized coaching&lt;/p&gt;

&lt;p&gt;✅ Full GRID Integration — Successfully integrated all three GRID APIs (Central Data, Series State, File Download) with proper authentication&lt;/p&gt;

&lt;p&gt;✅ Beautiful UX — Clean, responsive dashboard with real-time updates, 3D visualizations, and intuitive navigation&lt;/p&gt;

&lt;p&gt;What we learned&lt;br&gt;
📈 Statistics Matter — Early prototypes generated insights that "felt" right but couldn't withstand scrutiny. Adding statistical validation transformed the product from a toy to a tool professionals would trust.&lt;/p&gt;

&lt;p&gt;⚡ Real-Time is Hard — The gap between "fast" and "real-time" is enormous. Every millisecond matters when coaches need information before the next round starts.&lt;/p&gt;

&lt;p&gt;🎮 Domain Expertise is Critical — Building for esports required deep understanding of game mechanics, meta evolution, and what coaches actually need (not what we thought they needed).&lt;/p&gt;

&lt;p&gt;🔬 Causal ≠ Correlation — Showing that a player dies often near B site is useless. Showing why they die (positioning, timing, utility usage) and connecting it to round outcomes is actionable coaching.&lt;/p&gt;

&lt;p&gt;🤖 AI Augmentation &amp;gt; AI Replacement — Coaches don't want to be replaced by AI. They want tools that make them faster and more insightful. ARIA works with coaches, not instead of them.&lt;/p&gt;

&lt;p&gt;What's next for STRATYX: AI &amp;amp; data-driven assistant coach for esports&lt;br&gt;
Short-Term Roadmap:&lt;br&gt;
🎥 VOD Integration — Sync insights with match recordings for visual review sessions&lt;br&gt;
📱 Mobile Companion App — Coaching insights on the sidelines during LAN events&lt;br&gt;
🗣️ Voice Commands — "ARIA, what should we focus on next round?" during live matches&lt;br&gt;
Medium-Term:&lt;br&gt;
🏆 Tournament Mode — Track patterns across entire tournament brackets, identify meta shifts in real-time&lt;br&gt;
🧬 Opponent Scouting — Automated analysis of opponent tendencies from historical data&lt;br&gt;
📊 Custom Metrics Builder — Let coaches define their own KPIs and track them automatically&lt;br&gt;
Long-Term Vision:&lt;br&gt;
🌐 API Platform — Open STRATYX insights to third-party tools and team management systems&lt;br&gt;
🎓 Academy Integration — Connect amateur players with professional training methodologies&lt;br&gt;
🏅 League Partnerships — Direct integration with esports leagues for real-time broadcast analytics&lt;br&gt;
We believe STRATYX represents the future of esports coaching—where data science and AI work alongside human expertise to unlock performance that neither could achieve alone. The $1.8B esports industry deserves world-class coaching tools. STRATYX delivers.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F29td0ftf4hm16qkv4zb2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F29td0ftf4hm16qkv4zb2.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6dp1593o7lciwhhr3q75.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6dp1593o7lciwhhr3q75.png" alt=" " width="800" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Spooky AI Search: Where Magic Meets Machine Learning</title>
      <dc:creator>Md. Shakhawat Hossain</dc:creator>
      <pubDate>Wed, 03 Dec 2025 17:57:35 +0000</pubDate>
      <link>https://dev.to/md_shakhawathossain_b5c/spooky-ai-search-where-magic-meets-machine-learning-3d3p</link>
      <guid>https://dev.to/md_shakhawathossain_b5c/spooky-ai-search-where-magic-meets-machine-learning-3d3p</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;The Next Evolution in AI-Powered Search Has Arrived&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;The Problem With Search Today&lt;/strong&gt;&lt;br&gt;
We've all been there. You search for something important—a research topic, exam prep materials, or just trying to understand a complex concept—and you're bombarded with an endless list of blue links. No context. No guidance. Just overwhelming information overload.&lt;br&gt;
Traditional search engines treat you like a data miner, forcing you to dig through dozens of results, cross-reference sources, and piece together your own understanding. But what if search could be more than just retrieval? What if it could be intelligent, contextual, and even... enchanting?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Enter Spooky AI Search&lt;/strong&gt;&lt;br&gt;
Spooky AI Search isn't just another search engine. It's a reimagined experience that combines cutting-edge AI technology with thoughtful design to create something truly magical. Built with React, TypeScript, and powered by Google Gemini AI, this next-generation search platform transforms how you discover, understand, and interact with information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Makes It Revolutionary?&lt;/strong&gt;&lt;br&gt;
AI-Powered Intelligence at Your Fingertips&lt;br&gt;
Every search doesn't just return links—it returns understanding. Google Gemini 1.5 Flash analyzes your query in real-time, providing comprehensive summaries that synthesize information from multiple sources. It's like having a research assistant who reads everything for you and delivers the key insights.&lt;br&gt;
Related Questions That Think Ahead&lt;br&gt;
The AI doesn't just answer your question; it anticipates your next ones. After each search, you'll see AI-generated follow-up questions that guide you deeper into the topic, creating a natural path of exploration and discovery.&lt;br&gt;
Trust You Can Actually Trust&lt;br&gt;
In an age of misinformation, Spooky AI Search implements sophisticated credibility scoring algorithms. Every result comes with trust indicators—High, Medium, or Low—plus special badges for academic and government sources. You'll know at a glance which sources deserve your attention.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features That Transform Your Experience&lt;/strong&gt;&lt;br&gt;
📚 Study Mode: Your AI Study Partner&lt;br&gt;
Preparing for exams just got exponentially easier. Upload your lecture slides or course PDFs (up to 50 pages), and watch as the AI:&lt;/p&gt;

&lt;p&gt;Identifies 5-8 key topics from your materials&lt;br&gt;
Conducts automated research on each topic&lt;br&gt;
Generates comprehensive summaries&lt;br&gt;
Curates the top 3 resources per topic with direct links&lt;br&gt;
Handles batch research across all topics simultaneously&lt;/p&gt;

&lt;p&gt;It's like having a dedicated tutor who pre-studies everything and creates a personalized study guide just for you.&lt;br&gt;
🌳 Focus Timer: Gamification Meets Productivity&lt;br&gt;
The innovative Pomodoro-style focus timer takes concentration to the next level. Set your study duration, and watch a beautiful tree grow on your screen as you work. But here's the twist: if you switch tabs or lose focus, your tree dies.&lt;br&gt;
This isn't just a timer—it's a commitment device that tracks your progress, celebrates your achievements (with flowers when you complete sessions!), and maintains stats on your total focus time and trees grown. It's productivity gamified with a conscience.&lt;br&gt;
🎵 Ambient Music: The Soundtrack to Deep Work&lt;br&gt;
Sometimes you need the right atmosphere to focus. The integrated music player provides copyright-free meditation music with full volume control, animated visualizations, and a sleek glass-morphism design. Your preferences persist across sessions, creating your perfect study environment every time.&lt;br&gt;
🎨 A Visual Experience That Delights&lt;br&gt;
This isn't just functional—it's beautiful. The interface features:&lt;/p&gt;

&lt;p&gt;An animated night sky background with twinkling stars&lt;br&gt;
Five flying owls with realistic wing animations&lt;br&gt;
Forty glowing fireflies leaving light trails&lt;br&gt;
A detailed moon with visible craters&lt;br&gt;
Smooth gradient effects and glass-morphism throughout&lt;br&gt;
Staggered animations that feel organic and alive&lt;/p&gt;

&lt;p&gt;Every interaction is designed to feel smooth, responsive, and satisfying.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Built on Modern Technology&lt;/strong&gt;&lt;br&gt;
The technical foundation is as impressive as the features:&lt;br&gt;
Frontend Excellence: React 18 with TypeScript ensures type safety and robust component architecture, while TailwindCSS provides a utility-first styling approach for rapid, consistent design.&lt;br&gt;
Backend Power: Netlify Edge Functions offer serverless scalability, and Supabase provides a PostgreSQL database with pgvector for advanced vector operations.&lt;br&gt;
AI Integration: Google Gemini AI delivers state-of-the-art natural language understanding and generation, while Google Programmable Search Engine provides comprehensive web results.&lt;br&gt;
Performance Optimized: Every animation runs at 60 FPS, images load lazily, and React's efficient rendering ensures smooth interactions even with complex UI elements.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-World Impact&lt;/strong&gt;&lt;br&gt;
For Students&lt;br&gt;
Transform your study sessions with AI-powered material analysis, focused work sessions that keep you accountable, and curated research that saves hours of manual searching.&lt;br&gt;
For Researchers&lt;br&gt;
Get instant summaries of complex topics, discover credible sources with verified trust indicators, and explore related questions that expand your research scope organically.&lt;br&gt;
For Curious Minds&lt;br&gt;
Enjoy a search experience that's actually enjoyable. The beautiful interface, helpful AI assistance, and thoughtful features make learning and discovery feel less like work and more like exploration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Getting Started Is Easy&lt;/strong&gt;&lt;br&gt;
The platform is open-source and straightforward to deploy:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Clone the repository&lt;/strong&gt;&lt;br&gt;
Install dependencies with npm&lt;br&gt;
Set up your API keys for Google Gemini and Search&lt;br&gt;
Initialize Supabase for database functionality&lt;br&gt;
Deploy to Netlify with a single command&lt;/p&gt;

&lt;p&gt;Comprehensive documentation guides you through local setup scripts for both Windows and Unix systems, ensuring anyone can get up and running quickly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Future of Search&lt;/strong&gt;&lt;br&gt;
Spooky AI Search represents a fundamental shift in how we think about information retrieval. It's not about finding links—it's about gaining understanding. It's not about endless scrolling—it's about guided exploration. It's not about cold functionality—it's about delightful experiences.&lt;br&gt;
This is search reimagined for the AI age, where technology doesn't just serve us information but helps us think, learn, and grow. The owls aren't just flying across your screen for aesthetics—they're symbols of wisdom, reminding us that great tools should inspire us to seek knowledge with curiosity and wonder.&lt;/p&gt;

&lt;p&gt;**Try It Today&lt;br&gt;
&lt;a href="https://github.com/shakhawathossain07/Spooky-AI-Search" rel="noopener noreferrer"&gt;https://github.com/shakhawathossain07/Spooky-AI-Search&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7e1avdqd1e27fddq91rm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7e1avdqd1e27fddq91rm.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
**Whether you're a student cramming for finals, a researcher diving into new topics, or simply someone who appreciates when technology is done thoughtfully, Spooky AI Search offers something special.&lt;br&gt;
The code is open. The experience is magical. The future of search is here.&lt;br&gt;
Ready to experience search differently?&lt;br&gt;
Visit the repository, deploy your instance, and discover why the next generation of AI-powered search doesn't just find information—it illuminates understanding.&lt;/p&gt;

&lt;p&gt;Built with React, TypeScript, Google Gemini AI, and a touch of magic. Licensed under MIT.&lt;/p&gt;

</description>
      <category>kiro</category>
    </item>
    <item>
      <title>AI EXAM EVALUATOR With Intelligent Feedback</title>
      <dc:creator>Md. Shakhawat Hossain</dc:creator>
      <pubDate>Thu, 11 Sep 2025 14:17:30 +0000</pubDate>
      <link>https://dev.to/md_shakhawathossain_b5c/ai-exam-evaluator-with-intelligent-feedback-3n00</link>
      <guid>https://dev.to/md_shakhawathossain_b5c/ai-exam-evaluator-with-intelligent-feedback-3n00</guid>
      <description>&lt;p&gt;Over the past decades, the &lt;strong&gt;education system&lt;/strong&gt; has remained identical, and this sector &lt;strong&gt;lacks innovation&lt;/strong&gt;. One of the main problems in today's education system is that the manual evaluation of exam answer scripts and &lt;strong&gt;grading is biased&lt;/strong&gt;, resulting in &lt;strong&gt;unfair marks&lt;/strong&gt; for students. On the other hand, manually checking every exam paper for faculty members is time-consuming and inconsistent, and it lacks transparent feedback. That's why we figured out a solution—&lt;strong&gt;AI Exam Evaluator, your AI-powered grading assistance&lt;/strong&gt;. From &lt;strong&gt;IELTS to A-Level&lt;/strong&gt;, our system can evaluate &lt;strong&gt;handwritten exam answer scripts&lt;/strong&gt; with &lt;strong&gt;the highest precision&lt;/strong&gt;. Divide different questions and answers into cells, give marks and overall grades with transparent feedback, and include &lt;strong&gt;Human-on-the-loop&lt;/strong&gt; approach so faculty members can work alongside AI. This makes our exam script evaluation system more reliable and trustworthy. Ready to transform the exam evaluation system? Try the AI Exam Evaluator now. &lt;/p&gt;

&lt;p&gt;AI Exam Evaluator &lt;strong&gt;built with Kiro's intelligent assistance&lt;/strong&gt;. Our development started with vibe coding with Kiro. First, we told Kiro what we wanted to create. Kiro gave me some ideas based on our requirements. We refined that through expressing our opinions and back-and-forth conversations. What followed was pure magic. Kiro completed the job instantly, a task that typically takes developers months to accomplish. The breakthrough came with &lt;strong&gt;Kiro's specification-driven approach&lt;/strong&gt; and agent steering documents. Instead of an unplanned conversation, we created structured documentation divided into &lt;strong&gt;requirements, design, and small task lists (just like divide and conquer)&lt;/strong&gt;, which Kiro transformed into production-ready code. We also used prompt engineering techniques in the Vibe coding conversation with Kiro, and Kiro completed those better than expected. The most impressive moment was when Kiro generated thousands of lines of production-ready code in just minutes. Kiro didn't just write the code; they also set up automatic testing and a code quality analyzer, security vulnerability scanner, and documentation updater. But here's where it gets revolutionary. Kiro's agent has automated my entire development workflow. Every time we change something, &lt;strong&gt;Agent Hooks&lt;/strong&gt; automatically updates the document, testing, and vulnerability checking. We also &lt;strong&gt;configured the MCP Server functionality&lt;/strong&gt; to turn draft code into working software without bugs. The result—a production-ready AI exam evaluator ready to serve thousands of faculty members &amp;amp; students, built in record time with enterprise-grade security and performance. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is the future of development. This is building with Kiro.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Try it out:&lt;/strong&gt; &lt;a href="https://aiexamevaluator.me/" rel="noopener noreferrer"&gt;AI Exam Evaluator&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/shakhawathossain07/AI-Exam-Evaluator-" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;&lt;/p&gt;

</description>
      <category>kiro</category>
    </item>
  </channel>
</rss>
