惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
C
Check Point Blog
B
Blog RSS Feed
G
Google Developers Blog
H
Help Net Security
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Recent Announcements
Recent Announcements
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
小众软件
小众软件
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
T
Tailwind CSS Blog
J
Java Code Geeks
MyScale Blog
MyScale Blog
雷峰网
雷峰网
有赞技术团队
有赞技术团队
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a Reddit posting bot. Account got banned in 2h. H...
isabelle dub · 2026-05-01 · via DEV Community

isabelle dubuis

I built a Reddit posting bot for my SEO agency. Here's the honest scorecard.

Built a Reddit posting bot for my SEO agency. Goal: stop spending 5h/week on social presence busywork.

Final stack after rewrites

  • Apify scans subs, scores threads on intent + age + engagement
  • OpenAI gpt-4o-mini drafts posts and comments (cheap, ~$0.002/draft)
  • Playwright on old.reddit.com submits (new Reddit UI fights you on every selector)
  • JSON files for state. No DB, no queue, no Docker.

What worked

  • Comments landed from day 1. Posted on r/SEO, got real replies.
  • Cooldown logic (7d/sub) stopped me from spamming the same place twice.
  • Found 13 safe subs by scraping each sub's about.json + rules.json. Filter out karma minimums and anything over 1M subs (heavy automod).

What broke

  • First 3 self-posts got nuked silently by AutoModerator. Account was 3 months old, 1 karma, email unverified. Reddit's spam classifier reads account age x karma x verified flags before it reads content.
  • My success detection looked at page URL after submit. Removed posts return a normal URL, so the script logged success while Reddit deleted in the background.
  • The LLM hallucinated tech terms not in the OP. Temperature 0.7 to 0.6 helped, stricter prompt helped more.

What killed the account

After ~2h of automated runs from a datacenter IP (OVH), Reddit shadowbanned the account. Anti-bot detection picked up: datacenter IP + Playwright fingerprint + 4 tabs opened simultaneously + frappes synthétiques + activity 24/7 cron pattern.

Total cost

  • 14 days, ~30 hours coding, 4 restarts
  • $4 OpenAI, $7 Apify
  • Zero hours saved (account got banned before karma built)

The real lesson

You cannot automate past Reddit's reputation system. CQS (Contributor Quality Score) is the hidden gate. Build karma the slow human way first via mobile + residential IP, then automation works on accounts with 200+ karma after 60 days.

Anyone else hit the wall where automation works perfectly but the platform silently shadowbans the output?


I built vocalis.pro — an AI-powered SEO content automation tool. The bot from this story is one of its modules. If you want to skip the 30 hours of pain, check it out.