Skip to content

Commit f720d9b

Browse files
committed
new post
1 parent 6c2c424 commit f720d9b

File tree

5 files changed

+1515
-24
lines changed

5 files changed

+1515
-24
lines changed

README.md

Lines changed: 54 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,57 @@
33

44
----------
55

6-
这里收录自己积累的计算机相关技术,可以在短期之内入门的简单实用教程。
7-
8-
1. [55分钟学会正则表达式](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/30-minutes-to-learn-regex.md)
9-
2. [sed教程](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/sed.md)
10-
3. [awk教程](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/awk.md)
11-
4. [8种Nosql数据库系统对比](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/nosql.md)
12-
5. [C语言全局变量那些事儿](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c-globle-variable.md)
13-
6. [十步完全理解SQL](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/sql.md)
14-
7. [学习gdb调试技巧](https://github.com/hellogcc/100-gdb-tips)
15-
8. [如何实现一个malloc](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/malloc.md)
16-
9. [JVM必备指南](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/jvm.md)
17-
10. [java-string-tutorial-and-examples-beginnersprogramming](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/java-string.md)
18-
11. [Developing Single Page Web Applications using Java 8, Spark, MongoDB, and AngularJS](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/Developing-Single-Page-Web-Applications.md)
19-
12. [C进阶指南(1)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c1.md)
20-
13. [C进阶指南(2)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c2.md)
21-
14. [C进阶指南(3)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c3.md)
22-
15. [简明VIM练级攻略](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/vim.md)
23-
16. [每个Linux用户都应该知道的命令行技巧](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/use-linux.md)
24-
17. [25 台服务器是怎样支撑 StackOverflow 的?](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/how-stackoverflow-works.md)
25-
18. [图片服务架构演进(孔凡勇)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/picture-server.md)
26-
19. [最佳日志实践(王健)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/logging.md)
27-
20. [每个程序员都应该了解的内存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/memory.md)
28-
21. [每个程序员都应该了解的CPU缓存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/cpu-cache.md)
29-
22. [每个程序员都应该了解的虚拟内存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/virtual-memory.md)
6+
这里收录自己积累的计算机相关技术,可以在短期之内入门的简单实用教程以及一些写的比较好的博文。
7+
8+
**操作系统**
9+
*. [55分钟学会正则表达式](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/30-minutes-to-learn-regex.md)
10+
*. [sed教程](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/sed.md)
11+
*. [awk教程](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/awk.md)
12+
*. [简明VIM练级攻略](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/vim.md)
13+
*. [每个Linux用户都应该知道的命令行技巧](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/use-linux.md)
14+
*. [每个程序员都应该了解的内存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/memory.md)
15+
*. [每个程序员都应该了解的CPU缓存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/cpu-cache.md)
16+
*. [每个程序员都应该了解的虚拟内存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/virtual-memory.md)
17+
----------------------------------
18+
19+
20+
**C/C++**
21+
22+
*. [C进阶指南(1)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c1.md)
23+
*. [C进阶指南(2)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c2.md)
24+
*. [C进阶指南(3)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c3.md)
25+
26+
*. [C语言全局变量那些事儿](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c-globle-variable.md)
27+
28+
*. [学习gdb调试技巧](https://github.com/hellogcc/100-gdb-tips)
29+
*. [如何实现一个malloc](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/malloc.md)
30+
------------------------------------
31+
32+
**Java/Android**
33+
34+
*. [JVM必备指南](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/jvm.md)
35+
*. [java-string-tutorial-and-examples-beginnersprogramming](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/java-string.md)
36+
*. [Developing Single Page Web Applications using Java 8, Spark, MongoDB, and AngularJS](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/Developing-Single-Page-Web-Applications.md)
37+
38+
*. [Android内存优化(上)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/android-memory-prof1.md)
39+
40+
*.[Android内存优化(中)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/android-memory-prof2.md)
41+
42+
*.[Android内存优化(全)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/android-memory-prof3.md)
43+
44+
-----------------------------------
45+
46+
**Web/架构**
47+
48+
*. [25 台服务器是怎样支撑 StackOverflow 的?](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/how-stackoverflow-works.md)
49+
*. [图片服务架构演进(孔凡勇)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/picture-server.md)
50+
*. [最佳日志实践(王健)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/logging.md)
51+
52+
53+
**SQL/NOSql**
54+
*. [8种Nosql数据库系统对比](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/nosql.md)
55+
56+
*. [十步完全理解SQL](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/sql.md)
57+
58+
----------------------------------
59+

README.md~

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
2+
# 可以短期之内学会的计算机相关技术 #
3+
4+
----------
5+
6+
这里收录自己积累的计算机相关技术,可以在短期之内入门的简单实用教程以及一些写的比较好的博文。
7+
8+
**操作系统**
9+
*. [55分钟学会正则表达式](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/30-minutes-to-learn-regex.md)
10+
*. [sed教程](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/sed.md)
11+
*. [awk教程](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/awk.md)
12+
*. [简明VIM练级攻略](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/vim.md)
13+
*. [每个Linux用户都应该知道的命令行技巧](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/use-linux.md)
14+
*. [每个程序员都应该了解的内存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/memory.md)
15+
*. [每个程序员都应该了解的CPU缓存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/cpu-cache.md)
16+
*. [每个程序员都应该了解的虚拟内存知识](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/virtual-memory.md)
17+
----------------------------------
18+
19+
20+
**C/C++**
21+
22+
*. [C进阶指南(1)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c1.md)
23+
*. [C进阶指南(2)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c2.md)
24+
*. [C进阶指南(3)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c3.md)
25+
26+
*. [C语言全局变量那些事儿](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/c-globle-variable.md)
27+
28+
*. [学习gdb调试技巧](https://github.com/hellogcc/100-gdb-tips)
29+
*. [如何实现一个malloc](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/malloc.md)
30+
------------------------------------
31+
32+
**Java/Android**
33+
34+
*. [JVM必备指南](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/jvm.md)
35+
*. [java-string-tutorial-and-examples-beginnersprogramming](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/java-string.md)
36+
*. [Developing Single Page Web Applications using Java 8, Spark, MongoDB, and AngularJS](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/Developing-Single-Page-Web-Applications.md)
37+
38+
*. [Android内存优化(上)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/android-memory-prof1.md)
39+
40+
*.[Android内存优化(中)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/android-memory-prof2.md)
41+
42+
*.[Android内存优化(全)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/android-memory-prof3.md)
43+
44+
-----------------------------------
45+
46+
**Web/架构**
47+
48+
*. [25 台服务器是怎样支撑 StackOverflow 的?](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/how-stackoverflow-works.md)
49+
*. [图片服务架构演进(孔凡勇)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/picture-server.md)
50+
*. [最佳日志实践(王健)](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/logging.md)
51+
52+
53+
**SQL/NOSql**
54+
*. [8种Nosql数据库系统对比](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/nosql.md)
55+
56+
*. [十步完全理解SQL](https://github.com/LippiOuYang/practical-computer-skills/blob/master/src/sql.md)
57+
58+
----------------------------------
59+

0 commit comments

Comments
 (0)