<?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: Mohammed Ghabban</title>
    <description>The latest articles on DEV Community by Mohammed Ghabban (@mhmda1998).</description>
    <link>https://dev.to/mhmda1998</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4040768%2Ff376586d-da77-4f6d-a2a9-81cc38565aba.jpg</url>
      <title>DEV Community: Mohammed Ghabban</title>
      <link>https://dev.to/mhmda1998</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mhmda1998"/>
    <language>en</language>
    <item>
      <title>AI Code Reviewer: Built with Google AI Studio</title>
      <dc:creator>Mohammed Ghabban</dc:creator>
      <pubDate>Tue, 28 Jul 2026 22:47:32 +0000</pubDate>
      <link>https://dev.to/mhmda1998/ai-code-reviewer-built-with-google-ai-studio-4dgk</link>
      <guid>https://dev.to/mhmda1998/ai-code-reviewer-built-with-google-ai-studio-4dgk</guid>
      <description>&lt;h2&gt;
  
  
  &lt;em&gt;This post is my submission for &lt;a href="https://dev.to/deved/build-apps-with-google-ai-studio"&gt;DEV Education Track: Build Apps with Google AI Studio&lt;/a&gt;.&lt;/em&gt;
&lt;/h2&gt;




&lt;p&gt;title: AI Code Reviewer: Built with Google AI Studio&lt;br&gt;
published: true&lt;/p&gt;

&lt;h2&gt;
  
  
  tags: GoogleAIStudio, AI, Python, DeveloperTools
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;This post is my submission for &lt;a href="https://dev.to/deved/build-apps-with-google-ai-studio"&gt;DEV Education Track: Build Apps with Google AI Studio&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;AI Code Reviewer&lt;/strong&gt;, an intelligent web application generated with Google AI Studio. It automates code quality reviews for developers, analyzing code snippets for performance bottlenecks, unhandled exceptions, and logical issues while outputting structured feedback.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Here is the application in action analyzing code for potential KeyErrors and performance optimization:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Live App URL:&lt;/strong&gt; &lt;a href="https://aistudio.google.com/apps/065abcf0-af2f-4de7-bf38-ef0e13a0b719?project=hook-b750a&amp;amp;showPreview=true" rel="noopener noreferrer"&gt;https://aistudio.google.com/apps/065abcf0-af2f-4de7-bf38-ef0e13a0b719?project=hook-b750a&amp;amp;showPreview=true&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  My Experience
&lt;/h2&gt;

&lt;p&gt;Building this app through Google AI Studio's Build interface was smooth and efficient.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Key Takeaways:&lt;/strong&gt; Generative tools make structuring system prompts and building complex functional micro-apps extremely rapid.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;What Surprised Me:&lt;/strong&gt; The precision with which the model identifies edge-case code bugs (like quadratic string concatenation and unhandled KeyErrors) out of the box.&lt;/li&gt;
&lt;/ul&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbjh45kccvgdozmrystki.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbjh45kccvgdozmrystki.png" alt=" " width="800" height="1732"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>deved</category>
      <category>learngoogleaistudio</category>
      <category>ai</category>
      <category>gemini</category>
    </item>
    <item>
      <title>Tracing and Resolving a Critical Security Bug in Smart Contract Analysis</title>
      <dc:creator>Mohammed Ghabban</dc:creator>
      <pubDate>Tue, 21 Jul 2026 21:52:10 +0000</pubDate>
      <link>https://dev.to/mhmda1998/tracing-and-resolving-a-critical-security-bug-in-smart-contract-analysis-3g66</link>
      <guid>https://dev.to/mhmda1998/tracing-and-resolving-a-critical-security-bug-in-smart-contract-analysis-3g66</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for &lt;a href="https://dev.to/bugsmash"&gt;DEV's Summer Bug Smash: Smash Stories&lt;/a&gt; powered by &lt;a href="https://sentry.io/" rel="noopener noreferrer"&gt;Sentry&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;During a recent security review, I identified a critical flaw where specific edge-case input vectors could bypass automated vulnerability scanners during contract inspection. This created a potential risk of missing hidden security vulnerabilities in smart contract deployments.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Deep Dive &amp;amp; Solution
&lt;/h2&gt;

&lt;p&gt;To address this issue, I analyzed the parser logic and restructured the code evaluation flow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Root Cause Analysis:&lt;/strong&gt; Identified that improper state handling caused validation checks to skip on complex multi-transaction scenarios.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Implementation:&lt;/strong&gt; Added rigorous assertion checks, updated input sanitization pipelines, and optimized error reporting logs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Verification:&lt;/strong&gt; Ran automated tests against edge cases to ensure 100% coverage without affecting performance.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;Securing smart contracts and AI monitoring tools requires proactive boundary-testing. Ensuring that unexpected payloads fail safely is just as vital as optimizing the main execution logic.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>bugsmash</category>
    </item>
    <item>
      <title>How to Build an AI Agent for Code Monitoring and Security Analysis</title>
      <dc:creator>Mohammed Ghabban</dc:creator>
      <pubDate>Tue, 21 Jul 2026 21:44:21 +0000</pubDate>
      <link>https://dev.to/mhmda1998/how-to-build-an-ai-agent-for-code-monitoring-and-security-analysis-29bc</link>
      <guid>https://dev.to/mhmda1998/how-to-build-an-ai-agent-for-code-monitoring-and-security-analysis-29bc</guid>
      <description>&lt;p&gt;Monitoring code quality and detecting security vulnerabilities early in the development lifecycle is essential for building robust software.&lt;/p&gt;

&lt;p&gt;In this post, I want to highlight the core ideas behind building an &lt;strong&gt;AI Agent&lt;/strong&gt; designed to continuously monitor source code and ensure a more secure development environment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Objectives of the AI Agent:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Automated Scanning:&lt;/strong&gt; Analyzing codebase changes to detect potential security risks and code smells.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Proactive Defense:&lt;/strong&gt; Alerting developers about vulnerabilities before code gets deployed to production.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developer Productivity:&lt;/strong&gt; Assisting team members with faster, automated code reviews.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have you built or integrated AI agents into your development workflow? I'd love to hear your thoughts and experiences in the comments below!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>security</category>
      <category>python</category>
    </item>
  </channel>
</rss>
