


What is the essence of programmers learning projects and code?
Easy to learn. It is difficult to become oneself.
Newbie programmers find themselves stealing ideas from other projects on several recent projects. Of course, it's not really "stealing", but browsing and learning about projects and developers you admire, and stealing ideas from them. Such as design patterns, refactoring methods, etc. How does Chris handle command line parameters in the hub? How does Wayne conversion work with Ruby on shell scripts and rvm?
When you encounter a problem that is a bit difficult and requires you to use your brain, you have to ask "Hey, how can I achieve this?" This is a good starting point.
Once you encounter this kind of problem, of course, you can search for an article on Google and find a solution. But if you "steal" it from someone else, you will gain two things:
An intellectual connection is established between your understanding and that special project.
You “own” that thought.
"Owning" what you stole is a subtle process, but you can imagine: you spend a lot of time understanding these ideas, and you apply it to solve your own problems. This ideological process is very satisfying. Suddenly, you start to understand why the author refactored this method and why they needed a helper class.
Don’t get me wrong; being able to create things yourself is of course the best. This is a completely different level of learning, and most situations require us to do this. But sometimes, learning from the best experiences of others is the fastest way to enlightenment - not to solve the problem at hand, but to essentially understand the essence of it.
Observe how others solve your problems, be able to understand the ideas reflected in them, reshape it according to your own point of view, let this idea become "your" idea, put it in your own head, and Prepare for use in the next project. That’s another way of saying “learning,” but just when I thought about this imaginary, exotic way of saying it — oh, this is exactly what I stole from Homebrew on another project a few months ago. Inherit the strategy - My ability to receive knowledge has improved.
Once your absorption and digestion of knowledge reaches this level, these external thoughts will become your own thoughts in your mind.
Receive LAMP Brothers’ original PHP video tutorial CD/"Explanation of PHP" essential version for free. For details, please contact the official website customer service:
http://www.lampbrother.net
http: //yun.itxdl.cn/online/cto/index.php?u=5 This, is a great courseXCTO
http://yun.itxdl.cn/online/server/index.php?u=5
Mobile Internet Server-side Development Course
http://yun.itxdl .cn/online/weixin/index.php?u=5
WeChat Development Course
http://yun.itxdl.cn/online/yingxiao/index.php?u=5
Micro marketing course
http://yun.itxdl.cn/online/phpcms/index.php?u=5phpcms
Secondary development course
|

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
