✕ Clear all filters
11 articles

📰 Dev.to · Moon sehwan

11 articles · Updated every 3 hours · View all reads

All Articles 97,400Blog Posts 113,521Tech Tutorials 24,566Research Papers 20,508News 15,581 ⚡ AI Lessons
I gave AI-generated code a score from 0–100. Most repos scored below 30.
Dev.to · Moon sehwan 💻 AI-Assisted Coding ⚡ AI Lesson 2d ago
I gave AI-generated code a score from 0–100. Most repos scored below 30.
What if your code got a grade — like a school report card — but brutally honest? I built exactly...
The vibe coding loop: scan paste into Cursor fixed in 5 seconds
Dev.to · Moon sehwan 💻 AI-Assisted Coding ⚡ AI Lesson 3d ago
The vibe coding loop: scan paste into Cursor fixed in 5 seconds
You write code with Cursor. It looks fine. You ship it. Three days later: "why does my app keep...
5 security patterns GitHub Copilot generates that no linter catches
Dev.to · Moon sehwan 3d ago
5 security patterns GitHub Copilot generates that no linter catches
I've been scanning AI-generated codebases for the past month. Here are 5 patterns that appear most...
The `save_user()` that saves nothing: MISSING_WRITE bug in AI code
Dev.to · Moon sehwan 3d ago
The `save_user()` that saves nothing: MISSING_WRITE bug in AI code
This function looks completely reasonable: def save_user(user_id: str, data: dict) -> dict: ...
I found a COMMAND_INJECTION in a 25k ⭐ AI coding assistant (in 3 seconds)
Dev.to · Moon sehwan 3d ago
I found a COMMAND_INJECTION in a 25k ⭐ AI coding assistant (in 3 seconds)
Last week I scanned serena — a popular AI coding assistant with 25k ⭐. [BLOCK] COMMAND_INJECTION ...
Why `async def` without `await` is the #1 vibe-coding bug (and how to catch it)
Dev.to · Moon sehwan 3d ago
Why `async def` without `await` is the #1 vibe-coding bug (and how to catch it)
Every week I see the same bug in AI-generated code: async def fetch_user_data(user_id: str): ...
Add Security Scanning to Any GitHub Repo in 3 Lines of YAML
Dev.to · Moon sehwan 3d ago
Add Security Scanning to Any GitHub Repo in 3 Lines of YAML
AI writes code fast. It also writes the same security bugs, over and over. We scanned 10 popular...