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

推荐订阅源

有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
博客园 - 【当耐特】
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
B
Blog RSS Feed
腾讯CDC
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
DataBreaches.Net
The Cloudflare Blog
V
V2EX
S
SegmentFault 最新的问题

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
How to Actually Become a Programmer: The Hard Part Nobody...
Alex Vakulov · 2026-05-23 · via DEV Community

There is a comfortable myth around becoming a programmer. It says you can watch a few courses, copy a few tutorials, build a portfolio app, learn a modern framework, and become employable in a few months. Sometimes that happens. More often, it creates people who know how to repeat steps, but do not yet understand what they are doing.

Programming is not mainly about knowing syntax. It is not about collecting certificates. It is not even about choosing the perfect first language. A programmer solves problems by turning unclear ideas into working systems. That requires a very specific skill: the ability to think in code.

That skill is built through long, focused practice. There is no polite shortcut around it.

Programming Is Not Watching Someone Else Program

Many beginners spend too much time preparing to learn. They watch videos about roadmaps. They compare languages. They join communities. They read debates about whether Java, Python, Go, C#, JavaScript, Rust, or C++ is the best first language.

Some of that research is useful. Too much of it becomes procrastination.

At some point, you have to write code. Then you have to break it, fix it, extend it, read other people’s code, get confused, search for answers, rebuild the project, and repeat the process until the confusion becomes more structured.

That is the part that many beginner programs hide. Real programming skill appears when your brain starts connecting three things:

  1. What does the task mean
  2. How the program should behave
  3. How to express that behavior in code

Until that connection becomes natural, every problem feels like a wall. After enough practice, the wall does not disappear, but you start seeing cracks in it.

Focus Matters More Than Motivation

One brutal but useful truth is that becoming a programmer requires a serious period of focus. Not a year in isolation, and not ten hours every day, but enough uninterrupted time to let your brain adapt.

Programming is cognitively expensive. You hold state in your head. You trace logic. You remember assumptions. You compare what the program should do with what it actually does. Constant interruption destroys that process.

A beginner who studies for eight distracted hours may learn less than someone who spends two focused hours every day writing and debugging code. The real requirement is not suffering. It is continuity.

You need enough regular practice to keep the work warm in your mind. If you return to the same project only once a week, you spend most of your time remembering what you were doing. If you work every day, even briefly, the project starts living in your head. That is when learning accelerates.

But remember, mental exhaustion is not the same as discipline. If you burn out, stop sleeping, stop moving, and turn learning into punishment, your code will not improve for long. Programming requires concentration, memory, patience, and emotional stability. Destroying those things is not heroic.

A better rule is this: Create an environment where deep work is possible, but protect the body and mind that have to do that work. Take walks. Sleep. Exercise. Step away when stuck. Many programming problems are solved after your brain gets distance from them.

Choose a First Language, but Do Not Worship It

Some strongly argue for Java as a first language. Others push back, with fair reasons.

Java is a reasonable first language because it has mature tooling, strong typing, many books, many examples, and a large ecosystem. It also forces beginners to deal with structure. You learn classes, methods, types, compilation, packages, build tools, and errors that are often explicit enough to teach you something.

But Java is not the only valid path.

  • C# is no longer simply “Windows only.” Modern .NET works well on Linux and is widely used for backend development.
  • Go is mature enough for real production systems and is simpler than many languages.
  • Python is excellent for learning basics and building useful scripts, though it can hide some concepts.
  • JavaScript is unavoidable if you are interested in web development.
  • C teaches valuable lessons about memory and machines, but it can be punishing as a first language.

The better advice is this: Choose a language that lets you build things you care about while still teaching you real programming concepts.

If you want backend systems, Java, C#, Go, or Python can all work. If you want web interfaces, JavaScript or TypeScript will become necessary. If you want systems work, C, C++, or Rust may eventually matter. If you want mobile, Swift or Kotlin may be more relevant. The first language is not a life sentence. It is a training environment. What matters is that you do not jump between languages every two weeks because the next one looks easier.

Start With Exercises, but Do Not Stay There

Textbook exercises are useful because they isolate concepts. You should write small programs that teach variables, loops, functions, collections, files, errors, data structures, and basic algorithms.

But exercises alone are not enough. A person can complete 100 small tasks and still freeze when faced with a real codebase. Real projects are messy. They have naming conventions, build files, dependencies, old decisions, strange abstractions, and code written by people who are no longer around.

That is why one of the best learning methods is modifying existing open source software. Not contributing immediately and not trying to impress maintainers. Just learning to work with a real project.

Clone something. Build it locally. Change a label. Remove a button. Add logging. Disable one branch of logic. Find where a configuration value is read. Break the build and fix it. Trace a request from the entry point to the output.

This teaches skills tutorials rarely teach:

  • How projects are structured
  • How build systems work
  • How errors appear in real code
  • How abstractions are used and abused
  • How to read code written by someone else

That last skill is critical. Professional developers spend a huge amount of time reading and changing existing code. Greenfield work is the exception, not the norm.

Build Something Personally Useful

One of the best insights is simple: write programs that are useful to you. A textbook task may teach a concept, but a personally useful project keeps you emotionally involved. That matters. Curiosity makes difficult work survivable.

Build a small tool for yourself. A notes app. A file organizer. A text parser. A personal dashboard. A tiny game. A command-line utility. A script that automates something boring. A small editor. A local search tool. A budget tracker. Anything you would actually use.

The point is not originality. The point is friction. A useful project forces real questions:

  • Where should data be stored?
  • What happens when the input is wrong?
  • How should errors be shown?
  • How do I package and run this again tomorrow?
  • What part became painful to change?
  • Why did this simple feature make the code ugly?

Those questions are where programming starts becoming engineering.

Use Search and AI, but Do Not Outsource Your Brain

There is a strong debate about whether a programmer should rely on search engines or AI. The sensible answer is somewhere in the middle. A developer who cannot search is ineffective. Documentation, examples, issue trackers, source code, specifications, and community discussions are part of the job. But a beginner who searches every basic step without understanding the answer is also in trouble.

There is a big difference between searching:

“How do I parse command line arguments in Go?”

and searching:

“How do I write a program?”

The first is normal. The second means the foundation is missing.

AI assistants make this distinction even more important. They can help generate examples, explain errors, create small scripts, and suggest approaches. They can also hallucinate APIs, produce insecure code, and hide the learning process behind confident output.

Use AI like a junior assistant, not like a replacement brain. Ask it to explain. Ask it for alternatives. Ask it to review your code. Ask why a solution works. Then verify the answer against documentation and run the code yourself. The goal is to keep responsibility for understanding.

Courses and Mentors Help, but They Cannot Do the Work

Courses can give structure. Mentors can save you from wasting weeks on the wrong path. A good teacher can explain concepts that documentation makes needlessly painful.

But no mentor can install programming skills into your head. You still need the hours. You still need the frustration. You still need to debug your own misunderstanding.

The best use of a mentor is not asking them to solve everything. It is asking better questions:

  • “I tried this approach, but the state becomes inconsistent here. What am I missing?”
  • “I solved it this way. Is there a simpler design?”
  • “This code works, but it feels hard to change. Why?”

Passive watching does not build the judgment that comes from real conversation.

What “Ready for Work” Really Means

You do not need to know everything to get your first developer job. Nobody does. But you should be able to do certain things without panic:

  • Set up a development environment
  • Build and run a project
  • Read errors and investigate them
  • Use Git for basic workflows
  • Write simple features
  • Write basic tests
  • Read unfamiliar code
  • Ask precise technical questions
  • Search documentation effectively
  • Explain what you changed and why
  • Accept code review without collapsing emotionally

That is already far beyond “I watched a course.” The gap between what candidates expect and what employers actually look for is wider than most beginners realize — and closing it requires exactly the practical work described above.

Final Thoughts

Becoming a programmer is not about entering the IT industry. It is about learning to think clearly enough that a machine can execute your idea. That takes time. It takes repetition. It takes curiosity. It takes humility to be wrong 20 times before the program finally works.

The good news is that the path is not mysterious. Write code. Read code. Change code. Break code. Debug code. Build things you care about. Study the concepts behind the tools. Use search and AI carefully, but do not let them replace your understanding.

At some point, you will notice that you are no longer merely copying solutions. You are thinking in code. That is when you start becoming a programmer.