Home Backend Development PHP Tutorial What does 'I want to learn programming' really mean?

What does 'I want to learn programming' really mean?

Jul 25, 2016 am 08:54 AM

About programming education, there are two very important things to know first:
 1. Most people don’t really want to learn code
 2. Learning code does not just require writing code That’s it
what-people-really-mean-when-they-say-i-want-to-learn-to-code
If you don’t understand the above two things, then you are learning code wrong , and you'll never learn to code.
After I pondered this first point over and over, I think it means that if you don’t really want to learn code, then from the moment you step into this field, you will only find it boring and boring.
I call it the coding fallacy. People think they want to learn code because what they really need is to build a product.
If you think about it carefully, this is natural. If you can't do anything with it, then the knowledge of code itself has no value. Therefore, for most people, the biggest motivation for learning code is to be able to use code to build something (the second motivation is to be able to apply for a high-paying position.
This makes me think about the second point, learning code It does not mean that you only need to be able to write code.
In the past, we had to understand almost everything about computers before learning code (so it was called "computer science"). Later, with the development of things, It has evolved to the point where we don’t understand certain aspects of knowledge in depth unless we really need it. For example, as a web application developer, I know almost nothing about system management because I don’t need to use this knowledge at all
.
So, when someone says that he wants to learn programming, most teaching staff will teach according to their own teaching process, talking about data types, various structures of a certain programming language, and let students first have some knowledge of computers. An in-depth understanding.
The problem is, this is not what they really want to learn. Their purpose is to build an application. Therefore, we can no longer take it for granted that everything about computers is the same. Should learn.
For example, if someone already knows how to develop the back-end, it only makes sense for them to teach them the knowledge of front-end development. In this way, we reduce the burden on the students and get twice the result with half the effort. There is actually not a lot to learn when writing code, but you should also teach students according to their aptitude. I think the following points are the key points of distinction:
  1. Web development
2. Non-Web development
If you are developing web, then you need Processing:
  – HTML – CSS
  – Routing
– Database
– Server hosting / DNS
– App structure
There’s obviously a lot to learn, but most of it will be irrelevant to non-web developers (Except for the database and app structure).
But the current education methods I see are more like "playing monkeys"
Students: "I want to learn how to write code."
(What they really want is. I want to build a web and mobile app - but don’t know how to express it)
Teacher: “Okay, let’s learn data types first.”
Student: “…”
(2 weeks later)
Teacher: "Now we can design efficient algorithms."
Student: "I just want to make a cool website!"
Who would like such a way to learn code!
As a teacher, It’s important to understand that when people say they want to learn to code, what they really want to do is build a web or make a mobile app
That’s because, to them, that’s what coding means and that’s who they are. What they want to do with code. But the problem is that they don’t know how to express their ideas correctly. So we can’t just read the meaning of the words at the surface. It’s also part of our job as educators
. I remember a pastor saying this a few years ago that we should tell the truth even in difficult situations. Then someone asked: "What if telling the truth will hurt the other person?"
The pastor said categorically: "If someone asks you a question, then tell them what they really want to know, without looking forward or backward."
The same is true for the education industry. We need to find out between the lines of other people’s words their true intentions. If they ask specific questions that are beyond their capabilities, they can introduce others with more experience.
So, it’s up to educators and experts to guide people in the right direction rather than letting them stumble along on their own. If we can do this, then we will be worthy of the title of engineers of the human soul.
As a student: learn what you want to learn
In the learning process, one thing you can do is to dabble more in various aspects of content - so that you know which direction you should go in the future. develop.
Receive LAMP Brothers’ original PHP video tutorial CD/"Essential PHP in Details" for free. For details, please contact the official website customer service:
http://www.lampbrother.net
PHPCMSSecond Development http://yun.itxdl.cn/online/phpcms/index.php?u=5
WeChat development                                       index.php?u=5
Mobile Internet Server Side Development http://yun.itxdl.cn/online/server/index.php?u=5
JavascriptCourse http://yun.itxdl.cn/online/js/index.php?u=5
CTOTraining Camp /index.php?u=5

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? Apr 01, 2025 pm 03:09 PM

An official introduction to the non-blocking feature of ReactPHP in-depth interpretation of ReactPHP's non-blocking feature has aroused many developers' questions: "ReactPHPisnon-blockingbydefault...

See all articles