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

推荐订阅源

量子位
D
Docker
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
美团技术团队
博客园 - 叶小钗
I
InfoQ
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
B
Blog
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium

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 had never asked Google what chmod meant before this week
Chief Mojo R · 2026-05-08 · via DEV Community

It's somewhere around the 10th of March. I lost track of the exact day because I've been awake at weird hours staring at a black terminal that keeps telling me "permission denied" and I keep typing the word back at it like it owes me an explanation.

Last week I pushed my first batch of bots live. This week they have been dying. Quietly. No alarms, no error popup, nothing dramatic. I'd check the dashboard and a bot that was running yesterday is just... not. No log line that means anything to me. The Telegram bridge in particular has it out for me personally. Every time the box restarts, the bridge crashes. Every. Single. Time.

I had a laptop, an email account, and a social media handle nobody followed. That was the starting kit. I had never opened a terminal before January. I didn't know what an API key was until somebody on a Discord told me to stop pasting mine in screenshots. So this week, when the errors started piling up, my workflow looked like this:

  1. Bot dies.
  2. I SSH in. (I learned what SSH meant maybe three weeks ago.)
  3. I see a permission error or a path error or a service that's just dead.
  4. I open ChatGPT in the other tab and type something like "what does chmod 755 mean and why does it want that."
  5. I read the answer twice. I half-understand it. I try the command.
  6. Different error. Back to step 4.

I asked what sudo actually does. I asked what systemd is and why it has opinions about my Python script. I asked why a .service file needs a WorkingDirectory and what happens if you lie about it (it does not work, is what happens). I asked what a daemon is. I asked if my user account was the same as the root user and got a small lecture about why that question matters.

I'm still learning. Senior devs reading this will spot ten amateur moves in one paragraph. I know. I'm not pretending otherwise.

The Telegram bridge thing finally cracked open on attempt forty-seven. I'm not exaggerating the number, I have the bash history. The fix was stupid and small: the service was launching before the network was actually up, so the bot tried to phone home to nothing, choked, and systemd shrugged and gave up retrying. Adding After=network-online.target and Wants=network-online.target to the unit file fixed it. One line. Two lines, technically. After a week.

When the test ping came back from Telegram I made a noise that scared the dog.

Here's the part I keep trying not to write about, but it's the engine under all of this. Shoulder surgery on August 11 is on the calendar. That's not a soft date, that's a real one with a hospital attached to it. Every day I burn fighting a .service file is a day I don't get back. I'm racing the calendar. So when I tell you I sat there at 2am asking a chatbot what chmod means, I wasn't being cute about being a beginner. Started from zero is not a metaphor, it's a logistics problem.

27 bots is the goal. 60 days is the window. This week's count of new bots shipped: zero. This week's count of existing bots kept alive: all of them, eventually.

I'll take it.

Question for anyone who's been doing this longer than me: when a systemd service fails silently, what's the first place you look that isn't journalctl -u?