forked from Snailclimb/JavaGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhigh-quality-technical-articles.ts
69 lines (68 loc) · 2 KB
/
high-quality-technical-articles.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { arraySidebar } from "vuepress-theme-hope";
export const highQualityTechnicalArticles = arraySidebar([
{
text: "练级攻略",
icon: "et-performance",
prefix: "advanced-programmer/",
collapsible: false,
children: [
"programmer-quickly-learn-new-technology",
"the-growth-strategy-of-the-technological-giant",
"ten-years-of-dachang-growth-road",
"meituan-three-year-summary-lesson-10",
"seven-tips-for-becoming-an-advanced-programmer",
"20-bad-habits-of-bad-programmers",
"thinking-about-technology-and-business-after-five-years-of-work",
],
},
{
text: "个人经历",
icon: "experience",
prefix: "personal-experience/",
collapsible: false,
children: [
"four-year-work-in-tencent-summary",
"two-years-of-back-end-develop--experience-in-didi-and-toutiao",
"8-years-programmer-work-summary",
"huawei-od-275-days",
],
},
{
text: "程序员",
icon: "code",
prefix: "programmer/",
collapsible: false,
children: [
"high-value-certifications-for-programmers",
"how-do-programmers-publish-a-technical-book",
"efficient-book-publishing-and-practice-guide",
],
},
{
text: "面试",
icon: "interview",
prefix: "interview/",
collapsible: true,
children: [
"the-experience-of-get-offer-from-over-20-big-companies",
"the-experience-and-thinking-of-an-interview-experienced-by-an-older-programmer",
"technical-preliminary-preparation",
"screen-candidates-for-packaging",
"summary-of-spring-recruitment",
"my-personal-experience-in-2021",
"how-to-examine-the-technical-ability-of-programmers-in-the-first-test-of-technology",
"some-secrets-about-alibaba-interview",
],
},
{
text: "工作",
icon: "work",
prefix: "work/",
collapsible: true,
children: [
"get-into-work-mode-quickly-when-you-join-a-company",
"32-tips-improving-career",
"employee-performance",
],
},
]);