generated from chueh0000/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume-data.tsx
133 lines (132 loc) · 4.51 KB
/
resume-data.tsx
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
70
71
72
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import {
} from "@/images/logos";
import { GitHubIcon } from "@/components/icons";
export const RESUME_DATA = {
name: "闕中豪 Chueh Chung Hao",
// initials: "CCH",
location: "Taiwan",
locationLink: "https://maps.app.goo.gl/hvh9kTr7z278B9Ae7",
about:
"Student at National Taiwan University major in Computer Science and Information Engineering",
summary:
"",
avatarUrl: "https://drive.google.com/a/g.ntu.edu.tw/thumbnail?id=1VbKRC073t_dflOUn22imdybCLDtJYK3E",
// personalWebsiteUrl: "",
contact: {
email: "[email protected]",
tel: "0971612015",
social: [
{
name: "GitHub",
url: "https://github.com/chueh0000",
icon: GitHubIcon,
},
],
},
education: [
{
school: "National Taiwan University",
degree: "4th Year, Computer Science and Information Engineering",
start: "2021",
end: "Now",
},
{
school: "Taichung Municipal Taichung First Senior High School",
degree: "General Subjects",
start: "2018",
end: "2021",
},
],
work: [
{
company: "Microsoft Engage — Training Program for University Students with Disabilities",
link: "https://github.com/chueh0000/Realtime-Speech-Summary",
badges: [],
title: "",
// logo: ,
start: "2024.07",
end: "2024.08",
description:
"Starting with the idea of creating an accessibility tool, our team collaborated to develop a real-time speech summary software in less than one month\n\
Using OpenAI Whisper for speech-to-text conversion, Google Gemini for summarization, and create the prototype with Streamlit while keeping the modularity (the summary and speech-to-text modules can be replaced or upgraded with better services in the future)\n\
Our source code is public on GitHub, where we will continue to build more function on top of the prototype, utilizing the collaboration and version control features",
},
{
company: "NTU Disabled Students' Rights Association",
link: "https://www.facebook.com/NTUDSRA/",
badges: [],
title: "Treasurer → President",
// logo: ,
start: "2022",
end: "2024",
description:
"Provide a platform for students with disabilities to interact with each other\n\
Hold seminars on disability issues to raise public awareness\n\
Actively collaborate with external partners and the NTNU Disability Students’ Rights Association to jointly organize the first Youth Disability Rights Empowerment Camp\n\
Plan to establish the Taiwan Youth Disability Association to unite the voices of the younger generation of people with disabilities, promote interaction and connections, and form a community with a shared identity",
},
{
company: "Special Education Promotion Committee",
link: "https://intriguing-product-094.notion.site/2629b4df7459473a8b3734fc3becd73b?v=3ce71c9085134bc8b424ce622d8526d3&pvs=4",
badges: [],
title: "Committee Member (Student Representative)",
// logo: ,
start: "2023",
end: "2024",
description:
"Assist the school in creating a friendly and accessible campus environment\n\
Ensure the openness and accessibility of information by publicly sharing the progress of meeting proposals through a Notion webpage",
},
{
company: "Student Grievance Review Committee",
link: "",
badges: [],
title: "Committee Member (Disabled Student Representative)",
// logo: ,
start: "2022",
end: "2024",
description:
"Review student grievance cases",
},
{
company: "NTU Cycling Club",
link: "https://www.instagram.com/ntu_cycling_club",
badges: [],
title: "General Affairs",
// logo: ,
start: "2022",
end: "2023",
description:
"Manage, repair, and maintain the club's bicycles\n\
Organize riding events, and lead members to complete \"Cycling around Taiwan\", \"Northern Approach to Wuling\", \"Suhua Highway\", and \"Hualien-Taitung Valley\" rides",
},
],
skills: [
"C",
"Python",
"Git",
"Unix",
],
languages: [
"TOEIC 915",
],
projects: [
// {
// title: "",
// techStack: [
// "",
// "",
// "",
// "",
// "",
// "",
// ],
// description: "",
// logo: ,
// link: {
// label: "",
// href: "",
// },
// },
],
} as const;