Skip to content

Commit 9f63d10

Browse files
committed
[docs improve]在线网站代码优化
1 parent 9a7a603 commit 9f63d10

File tree

9 files changed

+426
-98
lines changed

9 files changed

+426
-98
lines changed

docs/.vuepress/sidebar.ts

Lines changed: 8 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,17 @@
11
import { defineSidebarConfig } from "vuepress-theme-hope";
2+
import { highQualityTechnicalArticles } from "./sidebar/high-quality-technical-articles";
3+
import { aboutTheAuthor } from "./sidebar/about-the-author";
4+
import { books } from "./sidebar/books";
5+
import { openSourceProject } from "./sidebar/open-source-project";
26

37
export const sidebarConfig = defineSidebarConfig({
48
// 应该把更精确的路径放置在前边
9+
"/open-source-project/": openSourceProject,
10+
"/books/": books,
11+
"/about-the-author/": aboutTheAuthor,
12+
"/high-quality-technical-articles/": highQualityTechnicalArticles,
513
"/javaguide/": ["intro", "history", "contribution-guideline", "faq", "todo"],
614
"/zhuanlan/": ["java-mian-shi-zhi-bei", "handwritten-rpc-framework"],
7-
"/open-source-project/": [
8-
"tutorial",
9-
"practical-project",
10-
"system-design",
11-
"tool-library",
12-
"tools",
13-
"machine-learning",
14-
"big-data",
15-
],
16-
"/books/": [
17-
"cs-basics",
18-
"database",
19-
"search-engine",
20-
"java",
21-
"software-quality",
22-
],
23-
"/about-the-author/": [
24-
{
25-
text: "个人经历",
26-
icon: "zuozhe",
27-
collapsable: false,
28-
children: [
29-
"internet-addiction-teenager",
30-
"my-college-life",
31-
"javaguide-100k-star",
32-
"feelings-after-one-month-of-induction-training",
33-
"feelings-of-half-a-year-from-graduation-to-entry",
34-
],
35-
},
36-
{
37-
text: "杂谈",
38-
icon: "chat",
39-
collapsable: false,
40-
children: [
41-
"my-article-was-stolen-and-made-into-video-and-it-became-popular",
42-
"dog-that-copies-other-people-essay",
43-
"zhishixingqiu-two-years",
44-
],
45-
},
46-
],
47-
"/high-quality-technical-articles/": [
48-
{
49-
text: "练级攻略",
50-
icon: "et-performance",
51-
prefix: "advanced-programmer/",
52-
collapsable: false,
53-
children: [
54-
"seven-tips-for-becoming-an-advanced-programmer",
55-
"20-bad-habits-of-bad-programmers",
56-
],
57-
},
58-
{
59-
text: "个人经历",
60-
icon: "experience",
61-
prefix: "personal-experience/",
62-
collapsable: false,
63-
children: [
64-
"two-years-of-back-end-develop--experience-in-didi&toutiao",
65-
"8-years-programmer-work-summary",
66-
],
67-
},
68-
{
69-
text: "程序员",
70-
icon: "code",
71-
prefix: "programmer/",
72-
collapsable: false,
73-
children: [
74-
"how-do-programmers-publish-a-technical-book",
75-
"efficient-book-publishing-and-practice-guide",
76-
],
77-
},
78-
{
79-
text: "面试",
80-
icon: "interview",
81-
prefix: "interview/",
82-
collapsable: false,
83-
children: [
84-
"the-experience-and-thinking-of-an-interview-experienced-by-an-older-programmer",
85-
"technical-preliminary-preparation",
86-
"screen-candidates-for-packaging",
87-
"summary-of-spring-recruitment",
88-
"how-to-examine-the-technical-ability-of-programmers-in-the-first-test-of-technology",
89-
],
90-
},
91-
{
92-
text: "工作",
93-
icon: "work",
94-
prefix: "work/",
95-
collapsable: false,
96-
children: [
97-
"get-into-work-mode-quickly-when-you-join-a-company",
98-
"employee-performance",
99-
],
100-
},
101-
],
10215
// 必须放在最后面
10316
"/": [
10417
{
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
export const aboutTheAuthor = [
2+
{
3+
text: "个人经历",
4+
icon: "zuozhe",
5+
collapsable: false,
6+
children: [
7+
"internet-addiction-teenager",
8+
"my-college-life",
9+
"javaguide-100k-star",
10+
"feelings-after-one-month-of-induction-training",
11+
"feelings-of-half-a-year-from-graduation-to-entry",
12+
],
13+
},
14+
{
15+
text: "杂谈",
16+
icon: "chat",
17+
collapsable: false,
18+
children: [
19+
"my-article-was-stolen-and-made-into-video-and-it-became-popular",
20+
"dog-that-copies-other-people-essay",
21+
"zhishixingqiu-two-years",
22+
],
23+
},
24+
];

docs/.vuepress/sidebar/books.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export const books = [
2+
"cs-basics",
3+
"database",
4+
"search-engine",
5+
"java",
6+
"software-quality",
7+
];
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
export const highQualityTechnicalArticles = [
2+
{
3+
text: "练级攻略",
4+
icon: "et-performance",
5+
prefix: "advanced-programmer/",
6+
collapsable: false,
7+
children: [
8+
"seven-tips-for-becoming-an-advanced-programmer",
9+
"20-bad-habits-of-bad-programmers",
10+
],
11+
},
12+
{
13+
text: "个人经历",
14+
icon: "experience",
15+
prefix: "personal-experience/",
16+
collapsable: false,
17+
children: [
18+
"two-years-of-back-end-develop--experience-in-didi&toutiao",
19+
"8-years-programmer-work-summary",
20+
],
21+
},
22+
{
23+
text: "程序员",
24+
icon: "code",
25+
prefix: "programmer/",
26+
collapsable: false,
27+
children: [
28+
"how-do-programmers-publish-a-technical-book",
29+
"efficient-book-publishing-and-practice-guide",
30+
],
31+
},
32+
{
33+
text: "面试",
34+
icon: "interview",
35+
prefix: "interview/",
36+
collapsable: false,
37+
children: [
38+
"the-experience-of-get-offer-from-over-20-big-companies",
39+
"the-experience-and-thinking-of-an-interview-experienced-by-an-older-programmer",
40+
"technical-preliminary-preparation",
41+
"screen-candidates-for-packaging",
42+
"summary-of-spring-recruitment",
43+
"how-to-examine-the-technical-ability-of-programmers-in-the-first-test-of-technology",
44+
"some-secrets-about-alibaba-interview",
45+
],
46+
},
47+
{
48+
text: "工作",
49+
icon: "work",
50+
prefix: "work/",
51+
collapsable: false,
52+
children: [
53+
"get-into-work-mode-quickly-when-you-join-a-company",
54+
"employee-performance",
55+
],
56+
},
57+
];
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export const openSourceProject = [
2+
"tutorial",
3+
"practical-project",
4+
"system-design",
5+
"tool-library",
6+
"tools",
7+
"machine-learning",
8+
"big-data",
9+
];

docs/high-quality-technical-articles/interview/screen-candidates-for-packaging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 包装严重的IT行业,作为面试官,我是如何甄别应聘者的包装程度
2+
title: 如何甄别应聘者的包装程度
33
category: 技术文章精选集
44
author: Coody
55
tag:
@@ -14,7 +14,7 @@ tag:
1414
1515
## 前言
1616

17-
上到职场干将下到职场萌新,都会接触到包装简历这个词语。当你简历投到心仪的公司,公司内负责求职的工作人员是如何甄别简历的包装程度的?Coody 老师根据自己的经验写下了这篇文章,谁都不是天才,包装无可厚非,切勿对号入座!
17+
上到职场干将下到职场萌新,都会接触到包装简历这个词语。当你简历投到心仪的公司,公司内负责求职的工作人员是如何甄别简历的包装程度的?我根据自己的经验写下了这篇文章,谁都不是天才,包装无可厚非,切勿对号入座!
1818

1919
## 正文
2020

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
---
2+
title: 阿里技术面试的一些秘密
3+
category: 技术文章精选集
4+
author: 龙叔
5+
tag:
6+
- 面试
7+
---
8+
9+
> **推荐语** : 详细介绍了求职者在面试中应该具备哪些能力才会有更大概率脱颖而出。
10+
>
11+
> <br/>
12+
>
13+
> **原文地址:** https://mp.weixin.qq.com/s/M2M808PwQ2JcMqfLQfXQMw
14+
15+
最近我的工作稍微轻松些,就被安排去校招面试了
16+
17+
当时还是有些**激动**的,以前都是被面试的,现在我自己也成为一个面试别人的面试官
18+
19+
接下来就谈谈我的面试心得(谈谈阿里面试的秘籍)
20+
21+
## 我是怎么筛选简历的?
22+
23+
面试之前都是要筛选简历,这个大家应该知道
24+
25+
阿里对待招聘非常负责任,面试官必须对每位同学的简历进行查看和筛选,如果不合适还需要写清楚理由
26+
27+
对于校招生来说,第一份工作非常重要,而且校招的面试机会也只有一次,一旦收到大家的简历意味着大家非常认可和喜爱阿里这家公司
28+
29+
所以我们对每份简历都会认真看,大家可以非常放心,不会无缘无故挂掉大家的简历
30+
31+
尽管我们报以非常负责任的态度,但有些同学们的简历实在是难以下看
32+
33+
关于如何写简历,我之前写过类似的文章,这里就把之前的文章放这里让大家看看 [一份好的简历应该有哪些内容](https://mp.weixin.qq.com/s?__biz=MzI4MDYzNDc1Mg==&mid=2247484010&idx=1&sn=afbe90c8446f5f21631cae750431d3ee&scene=21#wechat_redirect)
34+
35+
在筛选简历的时候会有以下信息非常重要,大家一定要认真写
36+
37+
- **项目经历**,具体写法可以看上面提到的文章
38+
- **个人含金量比较高的奖项**,比如 ACM 奖牌、计算机竞赛等
39+
- **个人技能** 这块会看,但是大多数简历写法都差不多,尽量写得**言简意赅**
40+
- **重要期刊论文发表、开源项目** 加分项
41+
42+
这些信息非常重要,我筛选简历的时候这些信息占整份简历的比重 4/5 左右
43+
44+
## 面试的时候我会注重哪些方面?
45+
46+
### **表达要清楚**
47+
48+
这点是硬伤,在面试的时候有些同学半天说不清楚自己做的项目,我都在替你着急
49+
50+
描述项目有个简单的方法论,我自己总结的 大家看看适不适合自己
51+
52+
- 最好言简意赅的描述一下你的项目背景,让面试官很快知道项目干了啥(让面试官很快对项目感兴趣)
53+
- 说下项目用了哪些技术,做技术的用了哪些技术得说清楚,面试官会对你的技术比较感兴趣
54+
- 解决了什么问题,做项目肯定是为了解决问题,总不能为了做项目而做项目吧(解决问题的能力非常重要)
55+
- 遇到哪些难题,如何突破这些难题,项目遇到困难问题很正常,突破困难才是一次好的成长
56+
- 项目还有哪些完善的地方,不可能设计出完美的执行方案,有待改进说明你对项目认识深刻,思考深入
57+
58+
一场面试时间一般 60—80 分钟,好的表达有助于彼此之间了解更多的问题
59+
60+
### **基础知识要扎实**
61+
62+
校招非常注重基础知识,所以这块问的问题比较多,我一般会结合你项目去问,看看同学对技术是停留在用的阶段还是有自己的深入思考
63+
64+
每个方向对基础知识要求不同,但有些基础知识是通用的
65+
66+
比如**数据结构与算法****操作系统****计算机网络**
67+
68+
这些基础技术知识一定要掌握扎实,技术岗位都会或多或少去问这些基础
69+
70+
### **动手能力很重要**
71+
72+
action,action,action ,重要的事情说三遍,做技术的不可能光靠一张嘴,能落地才是最重要的
73+
74+
面试官除了问你基础知识和项目还会去考考你的动手能力,面试时间一般不会太长,根据岗位的不同一般会让同学们写一些算法题目
75+
76+
阿里面试,不会给你出非常变态的算法题目
77+
78+
主要还是考察大家的动手能力、思考问题的能力、数据结构的应用能力
79+
80+
在写代码的过程中,我也总结了自己的方法论:
81+
82+
- 上来不要先写,审题、问清楚题目意图,不要自以为是的去理解思路,工作中 沟通需求、明确需求、提出质疑和建议是非常好的习惯
83+
- 接下来说思路 思路错了写到一半再去改会非常浪费时间
84+
- 描述清楚之后,先写代码思路的步骤注释,一边写注释,脑子里迭代一遍自己的思路是否正确,是否是最优解
85+
- 最后,代码规范
86+
87+
## 除了上面这些常规的方面
88+
89+
其实,现在面试已经非常****了,上面说的这些很多都是 **八股文**
90+
91+
有些学生会拿到很多面试题目和答案,反复的去记忆,面试官问问题他就开始在脑子里面检索答案
92+
93+
我一般问几个问题就知道该学生是不是在背八股文了。
94+
95+
对于背八股文的同学,我真的非常难过。
96+
97+
尽管你背的很好,但不能给你过啊,得对得起自己职责,得对公司负责啊!
98+
99+
背的在好,不如理解一个知识点,理解一个知识点会有助于你去理解很多其他的知识点,很多知识点连起来就是一个知识体系。
100+
101+
当面试官问你体系中的任何一个问题,都可以把这个体系讲给他听,不是**背诵**
102+
103+
深入理解问题,我会比较关注。
104+
105+
我在面试过程中,会通过一个问题去问一串问题,慢慢就把整体体系串起来。
106+
107+
你的**比赛****论文**是你的亮点,这些东西是非常重要的加分项。
108+
109+
我也会在面试中穿插一些**开放性题目**,都是思考题 考验一个同学思考问题的方式。
110+
111+
## 最后
112+
113+
作为一个面试官,我很想对大家说,每个企业都非常渴望人才,都希望找到最适合企业发展的人
114+
115+
面试的时候面试官会尽量去挖掘你的价值。
116+
117+
但是,面试时间有限,同学们一定要在有限的时间里展现出自己的**能力****无限的潜力**
118+
119+
最后,祝愿优秀的你能找到自己理想的工作!

0 commit comments

Comments
 (0)