Add Linux CLI

This commit is contained in:
Charles-Axel Dein 2022-09-26 10:27:39 +02:00
parent e03c2e7f0e
commit e9e30108a0
No known key found for this signature in database
GPG Key ID: 64C00027F3375D70
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,7 @@
- [Interviewing](#interviewing)
- [Kubernetes](#kubernetes)
- [Learning & memorizing](#learning--memorizing)
- [Linux (system management)](#linux-system-management)
- [Low-level, assembly](#low-level-assembly)
- [Math](#math)
- [Network](#network)
@ -245,6 +246,7 @@ Let's be honest: algorithms can be a pretty dry topic. [This quora question](htt
- [Grokking Algorithms](https://www.amazon.com/dp/1617292230/ref=cm_sw_su_dp)
- [Essential Algorithms](https://www.amazon.com/Essential-Algorithms-Practical-Approach-Computer/dp/1118612108?ie=UTF8&*Version*=1&*entries*=0)
- [Data Structure Visualization](https://www.cs.usfca.edu/~galles/visualization/Algorithms.html)
- 🎞 [15 Sorting Algorithms in 6 Minutes](https://www.youtube.com/watch?v=kPRA0W1kECg&ab_channel=TimoBingmann)
Example implementations:
@ -995,6 +997,10 @@ Richard Feynman's Learning Strategy:
> Fools learn from experience. I prefer to learn from the experience of others.
> — Bismark
### Linux (system management)
- [Welcome to Linux command line for you and me!](https://lym.readthedocs.io/en/latest/index.html)
### Low-level, assembly
- [Back to Basics](https://www.joelonsoftware.com/2001/12/11/back-to-basics/), Joel Spolsky. Explains why learning low level programming is important.