diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-03-27 17:47:45 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-03-27 17:47:45 +0800 |
commit | f8cdfc5f065c30e7d15d399d22dd49f78fd80e84 (patch) | |
tree | 6ed523ee249c13044b7c1761c935b8d800852b2d /www/content/posts/pattern-in-cpp.md | |
parent | 1a9e227917248d449b7dee394c1cba081bc249be (diff) | |
download | crupest-f8cdfc5f065c30e7d15d399d22dd49f78fd80e84.tar.gz crupest-f8cdfc5f065c30e7d15d399d22dd49f78fd80e84.tar.bz2 crupest-f8cdfc5f065c30e7d15d399d22dd49f78fd80e84.zip |
feat(www): update nspawn.md.
Diffstat (limited to 'www/content/posts/pattern-in-cpp.md')
-rw-r--r-- | www/content/posts/pattern-in-cpp.md | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/www/content/posts/pattern-in-cpp.md b/www/content/posts/pattern-in-cpp.md deleted file mode 100644 index 1709ad4..0000000 --- a/www/content/posts/pattern-in-cpp.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "Pattern in C++" -date: 2022-01-24T15:57:34+08:00 -categories: coding -tags: - - c++ -description: The secret ingredient of secret ingredient soup is ... ---- - -> The secret ingredient of secret ingredient soup is ... -> Nothing! - -This is a script from Kung Fu Panda, which is one of my favorite film. - -People have been struggling for days to find a pattern in which they can code better. Especially those who use Java. They even wrote a book called "Programming Pattern" (or another name since I might forget the name) to show the common patterns. - -<!--more--> - -I don't mean patterns are bad. However there exists many people who strive to the patterns, stick to the patterns or even get stubborn to patterns. Maybe there exists a way to achieve their goals with some not that patterned code but they don't want to use them at all just because the code is not patterned. - -I love C++. And the pattern of C++ is exactly *NO PATTERN*. You write code in the way that they do the task most effectively and neatly. You don't need to apply a pattern to achieve your goal. You just write your code naturally with the way you are most comfortable with. - -Tools including programming language serve for people but not vice versa. Don't let tools constrain your hands. And when you find tools not convenient, just fix them or make a new one. Just like C++ is evolving all the time. So are all languages. - -The best is code is those that express meanings most clearly and achieve goals most effectively and do nothing with patterns. |