Skip to content

Commit 85c3298

Browse files
committed
feat: update CV
1 parent 9833cda commit 85c3298

File tree

3 files changed

+39
-12
lines changed

3 files changed

+39
-12
lines changed

src/data.ts

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ const SkillsData = {
8888
}, {
8989
name: "Kubernetes",
9090
link: "https://kubernetes.io"
91-
}, {
9291
}, {
9392
name: "Helm",
9493
link: "https://helm.sh/"
@@ -133,7 +132,6 @@ const SkillsData = {
133132
}, {
134133
name: "PlayFab",
135134
link: "https://playfab.com/"
136-
}, {
137135
}, {
138136
name: "Velero",
139137
link: "https://velero.io/"
@@ -309,14 +307,45 @@ const CvIntro = [
309307
"As a Python DevOps Specialist, I bring a unique blend of programming prowess and infrastructure management expertise to the table.",
310308
"With a proven track record of optimizing software development and deployment processes, I am dedicated to streamlining operations, enhancing collaboration, and ensuring the reliability and scalability of complex systems.",
311309
]
310+
/**
311+
* name: "Others",
312+
items: [{
313+
name: "ReactJS",
314+
link: "https://www.heroku.com/"
315+
}, {
316+
name: "SpringBoot",
317+
link: "https://spring.io/projects/spring-boot"
318+
}, {
319+
name: "AzureFunction",
320+
link: "https://azure.microsoft.com/en-us/products/functions/"
321+
}, {
322+
name: "PlayFab",
323+
link: "https://playfab.com/"
324+
}, {
325+
}, {
326+
name: "Velero",
327+
link: "https://velero.io/"
328+
}, {
329+
name: "NextJs",
330+
link: "https://nextjs.org/"
331+
}, {
332+
name: "MicrosoftBotFramework",
333+
link: "https://dev.botframework.com/"
334+
}, {
335+
name: "Android",
336+
link: "https://www.android.com/"
337+
}, {
338+
name: "IOS",
339+
link: ""
340+
}],
341+
*/
312342
const CvSkill = {
313-
main: ["Python-ecosystem", "DevOps", "AWS", "Kubernetes", "Terraform"],
314-
others: ["ReactJs", "ReduxJs", "CI-CD", "Scrapy", "GitActions", "EKS", "ECR", "Microservices", "Shellscript", "Linux"]
343+
main: ["Python-ecosystem", "DevOps", "AWS", "Kubernetes", "Terraform", "FastAPI", "Crawling", "Airflow", "Linux", "Docker",],
344+
others: ["ReactJs", "SpringBoot", "Azure", "Microsoft Bot Framework", "Android", "IOS app"]
315345
}
316346
const CvEdu = [
317347
"Danang University of Science and Technology",
318348
"Time period: 2017-2022",
319-
"(not graduated)",
320349
]
321350
const CvCert = [
322351
]

src/pages/Portfolio/features/PortfolioContent/Skill/Skill.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ function Skill(props) {
2525
<div className='portfolio-skill'>
2626
<div className="label-rotate">Skills</div>
2727
<SkillItem id={osElementId} label={SkillsData.os.name} skills={SkillsData.os.items} />
28-
<SkillItem id={databaseElementId} label={SkillsData.database.name} skills={SkillsData.database.items} />
29-
<SkillItem id={webElementId} label={SkillsData.web.name} skills={SkillsData.web.items} />
28+
<SkillItem id={databaseElementId} label={SkillsData.web.name} skills={SkillsData.web.items} />
3029
<SkillItem id={devopsElementId} label={SkillsData.devops.name} skills={SkillsData.devops.items} />
31-
<SkillItem id={toolElementId} label={SkillsData.tools.name} skills={SkillsData.tools.items} />
30+
<SkillItem id={webElementId} label={SkillsData.python.name} skills={SkillsData.python.items} />
3231
<SkillItem id={otherElementId} label={SkillsData.others.name} skills={SkillsData.others.items} />
3332
</div>
3433
)

src/pages/Portfolio/features/components/CV/PersonalOverviewCv/PersonalOverviewCv.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react'
22
import LabelLineDecor from '../components/LabelLineDecor/LabelLineDecor'
33
import { CvIntro,
4-
CvProsCons,
54
CvSkill,
65
CvEdu,
76
CvCert } from '../../../../../../data';
@@ -17,16 +16,16 @@ function PersonalOverviewCv() {
1716
<p key={i}>{x}</p>
1817
)}
1918
</div>
20-
<div className="personal-overview-cv__proscons">
19+
{/* <div className="personal-overview-cv__proscons">
2120
<LabelLineDecor name="Pros & Cons" />
2221
<p>{CvProsCons.pros}</p>
2322
<p>{CvProsCons.cons.map(x => (<>
2423
{x} <br/>
2524
</>))}</p>
26-
</div>
25+
</div> */}
2726
<div className="personal-overview-cv__skill">
2827
<LabelLineDecor name="Skills" />
29-
<p><b>Main skills: </b>{CvSkill.main.join(", ")}</p>
28+
<p><b>Main: </b>{CvSkill.main.join(", ")}</p>
3029
<p><b>Others: </b>{CvSkill.others.join(", ")}</p>
3130
</div>
3231
<div className="personal-overview-cv__edu">

0 commit comments

Comments
 (0)