Skip to content

Commit fd8c924

Browse files
author
dvogt23
committed
Notes/tech/coding/basic.md
1 parent 8310b2a commit fd8c924

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Notes/tech/coding/basic.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Source: [Brad Frost](https://bradfrost.com/blog/post/atomic-web-design/)
2020

2121
At the linux kernel guideline are some good advices: [The linux kernel - coding style](https://www.kernel.org/doc/html/v4.10/process/coding-style.html#linux-kernel-coding-style)
2222
Google have some [guidelines](https://google.github.io/styleguide/) for some languages as well. Use positive booleans for better readability, like described [here | Google Code health](https://testing.googleblog.com/search/label/Code%20Health)
23-
2423
## Principles
2524

2625
- [YAGNI](https://en.m.wikipedia.org/wiki/You_aren%27t_gonna_need_it)
@@ -39,4 +38,10 @@ Google have some [guidelines](https://google.github.io/styleguide/) for some lan
3938

4039
- Consider [marking low priority comments with severity](https://google.github.io/eng-practices/review/reviewer/comments.html#label-comment-severity) like _Nit_, _Optional_, or _FYI_ to help the author prioritize the important ones.
4140

42-
Source: [Google testing blog](https://testing.googleblog.com/2023/08/testing-on-toilet-presents.html)
41+
Source: [Google testing blog](https://testing.googleblog.com/2023/08/testing-on-toilet-presents.html)
42+
43+
Review concerns:
44+
- Force you to think about scalability, not just functionality.
45+
- Push you to write code that’s maintainable, not just clever.
46+
- Teach you to plan for edge cases and failures, because they **_will_** happen.
47+
Source: [manager-i-hated](https://www.blog4ems.com/p/the-manager-i-hated)

0 commit comments

Comments
 (0)