-
Notifications
You must be signed in to change notification settings - Fork 161
/
experience.ts
53 lines (51 loc) · 1.83 KB
/
experience.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
import { IExperience } from '../component/experience/IExperience';
const experience: IExperience.Payload = {
disable: false,
disableTotalPeriod: false,
list: [
{
title: 'Linux Foundation',
positions: [
{
title: 'System Engineer',
startedAt: '1996-05',
descriptions: [
'Steering Kernel patching and updates for various distributions',
'Automating deployment and integration processes for Linux servers',
'Spearheading initiatives to enhance Linux kernel security',
'Collaborating with global developers to coordinate code contributions',
],
skillKeywords: ['C', 'Linux', 'Kernel', 'Security', 'Automation'],
},
{
title: 'System Engineer Intern',
startedAt: '1996-02',
endedAt: '1996-05',
descriptions: [
'Assisted senior engineers in maintaining and updating kernel patches for Linux distributions',
'Supported deployment and integration tasks for Linux server environments',
'Conducted research on Linux kernel security practices and presented findings to the team',
],
skillKeywords: ['C', 'Linux', 'Kernel', 'Support', 'Research'],
},
],
},
{
title: 'Open Source Community',
positions: [
{
title: 'System Advocate and Developer',
startedAt: '2010-06',
endedAt: '2018-01',
descriptions: [
'Promoted the use and development of Linux globally.',
'Developed automated scripts to streamline system configuration.',
'Facilitated live patching systems, reducing downtime.',
],
skillKeywords: ['Open Source', 'Linux', 'AWS', 'RDBMS'],
},
],
},
],
};
export default experience;