Skip to content

Commit 9cea7dd

Browse files
committed
bump to v5.0.0
1 parent 465b8b0 commit 9cea7dd

File tree

204 files changed

+10259
-1827
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+10259
-1827
lines changed

.editorconfig

-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ end_of_line = lf
88
charset = utf-8
99
trim_trailing_whitespace = true
1010
insert_final_newline = true
11-

.github/workflows/push.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Generate leader.js.cool
2+
3+
on:
4+
push:
5+
branches: master
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out repo
13+
uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2-beta
15+
with:
16+
node-version: '14'
17+
- name: Fetch events
18+
run: |-
19+
sudo timedatectl set-timezone Asia/Shanghai
20+
npm install
21+
npm run generate
22+
npm run deploy

.gitignore

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
node_modules/
1+
node_modules
2+
*.iml
3+
.idea
4+
.nuxt
5+
.DS_Store
6+
coverage
7+
dist
8+
sw.*
29

310
demo*
4-
.DS_Store
511
*.log
612
*.log.*

.npmignore

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
node_modules/
1+
node_modules
2+
*.iml
3+
.idea
4+
.nuxt
5+
.DS_Store
6+
coverage
7+
dist
8+
sw.*
29

310
demo*
4-
.DS_Store
511
*.log
612
*.log.*

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
dist/
3+
.nyc_output/

.prettierrc.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tabWidth: 2
2+
semi: true
3+
singleQuote: true
4+
jsxSingleQuote: true
5+
trailingComma: none
6+
printWidth: 150

404.html

-1
This file was deleted.

README.md

-53
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,7 @@
11
# 《不可替代的团队领袖培养计划》
22

3-
# 前言
4-
5-
> 对于工作上应该做什么事,如果你没有自己的想法,而是完全听主管的,很危险。多数的主管不会在乎你的成长,也不会把公司的利益摆第一位,他们最在乎的是自己的工作绩效,而他们的工作绩效是要靠你们去达成的。完全听他们的任务布置去做,没有自己的主张,东一榔头,西一棒槌,几年下来就变打杂的了。
6-
> ——蔡学镛
7-
8-
本书由浅及深主要包括如下几个方面:
9-
10-
## 知识
11-
12-
介绍 OS X 上个人常用的效率、开发、设计工具及使用技巧。从基础常识讲起,推荐一些工具、资源,以及自动化测试、持续集成的一些概念入门。技术栈主要为:
13-
14-
- 前端: Vanilla JS / React / Vue 等
15-
- 后端: Node.js 为主, 包括: GraphQL / Koa / HAPI / Express 等
16-
- 数据库: MySQL / Redis / MongoDB 等
17-
18-
## 经验
19-
20-
从产品架构设计到项目实践,再到部署运维的各方面的技术、管理、流程小细节。
21-
22-
大部分涉及到的项目经验来自于实际项目中踩的坑, 部分提供示例的项目源码, 而更多的希望你们在这些过程中去理解遇到问题时的分析与解决思路.
23-
24-
## 思想
25-
26-
未来的世界不属于富人,更不属于穷人,只会属于有思想的人。
27-
28-
总结个人在工作中积累的思想原则,和看重的一些能力及培养方法。
29-
30-
---
31-
32-
2016.8.3 晚写下了本书的第一行话,当时想的名字为《可替代的团队领袖培养计划》,其寓意是希望这些知识经验在团队内部分享,能够培养出更优秀的人才,每个人都能够替代我做得更好。如果能够因此有所建树,则将会成为不可替代的团队领袖。
33-
34-
源码: <https://github.com/willin/leader.js.cool>
35-
36-
欢迎进行反馈交流。同时非常期待您在 Github 上 Follow 我 ([@willin](https://github.com/willin)).
37-
38-
iOS 用户可以使用 `Safari` 将本书添加到主屏幕:
39-
40-
![homescreen](https://user-images.githubusercontent.com/1890238/27512999-4c20f87e-591b-11e7-8682-a5fb52635d00.jpg)
41-
42-
&copy; Willin Wang
43-
44-
## CHANGELOG
45-
46-
- TBD: //TODO: 文章越来越多, 得将文章整理整理, 把一些老旧的删除或者归档. 再更新一些内容, 完善原有章节使其更加详尽. 另外打算再换回 Gitbook, 一方面是利于SEO优化,另一方面是方便电子书导出。
47-
- 2018.2.28: 开设 GraphQL 专栏
48-
- 2017.06.26: 优化阅读体验,下一次回来的时候会自动跳转到上一次的位置继续阅读。欢迎 iOS 用户将本书添加到主屏幕
49-
- 2017.06.20: 将本书的网站从 `GitBook` 转移到了 `Docsify`
50-
- 2016.08.03: 该项目创建
51-
52-
---
53-
543
你离技术经理,只差这本书: <https://leader.js.cool>
554

56-
如果还想看视频类的,可以到我的斗鱼直播间来一波正义的订阅: <https://www.douyu.com/200058>
57-
585
p.s.
596

607
最近经常收到未备注昵称或网址的捐赠,请留下你的代号,以便于鸣谢。谢谢~

_sidebar.md

-127
This file was deleted.

_static/main.js

-31
This file was deleted.

basic/README.md

-13
This file was deleted.

basic/algorithm/README.md

-5
This file was deleted.

cmd

-6
This file was deleted.

0 commit comments

Comments
 (0)