💬 update cv
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
7f81d51411
commit
87e25d6a7d
3 changed files with 19 additions and 15 deletions
|
@ -14,9 +14,10 @@
|
||||||
"startDate": "Aug 2023",
|
"startDate": "Aug 2023",
|
||||||
"endDate": "Dec 2023",
|
"endDate": "Dec 2023",
|
||||||
"highlights": [
|
"highlights": [
|
||||||
"Developed a movie database application as well as an api for it",
|
"Developed a movie database application and API",
|
||||||
"Pairprogrammed with another intern the whole internship",
|
"Collaborated in pair programming throughout the internship",
|
||||||
"Full-stack development with React.js, C# and PostgreSQL"
|
"Contributed to a large existing codebase",
|
||||||
|
"Utilized React.js, C# and PostgreSQL for full-stack development"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -27,9 +28,9 @@
|
||||||
"startDate": "Jun 2023",
|
"startDate": "Jun 2023",
|
||||||
"endDate": "Aug 2023",
|
"endDate": "Aug 2023",
|
||||||
"highlights": [
|
"highlights": [
|
||||||
"Developed an error reporting application for the new adoption solution for sick pay",
|
"Developed an error reporting application for the new sick pay adoption solution",
|
||||||
"Worked in a team consisting of our mentor and 2 other interns",
|
"Collaborated within a team comprising our mentrs and two other interns",
|
||||||
"Full-stack development with React.js, Kotlin and PostgreSQL"
|
"Engaged in full-stack development using React.js, Kotlin and PostgreSQL"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -38,6 +39,7 @@
|
||||||
"institution": "Western University of Applied Sciences",
|
"institution": "Western University of Applied Sciences",
|
||||||
"url": "https://www.hvl.no/",
|
"url": "https://www.hvl.no/",
|
||||||
"area": "Bachelor in Information Technology",
|
"area": "Bachelor in Information Technology",
|
||||||
|
"description": "Did an exchange semester @ UPV in Valencia, Spain during my 6th semester." ,
|
||||||
"startDate": "Aug 2021",
|
"startDate": "Aug 2021",
|
||||||
"endDate": "present"
|
"endDate": "present"
|
||||||
},
|
},
|
||||||
|
@ -66,7 +68,7 @@
|
||||||
"summary": "friByte is an undependent studentorganization that delivers secure and stable IT-solutions to other studentorganizations in Bergen.",
|
"summary": "friByte is an undependent studentorganization that delivers secure and stable IT-solutions to other studentorganizations in Bergen.",
|
||||||
"highlights": [
|
"highlights": [
|
||||||
"Collaborated in team environments to enhance project efficiency",
|
"Collaborated in team environments to enhance project efficiency",
|
||||||
"Managed and operated Linux servers in a multi-user setting",
|
"Managed and operated Linux servers",
|
||||||
"Deployed Docker images and containers for application virtualization",
|
"Deployed Docker images and containers for application virtualization",
|
||||||
"Utilized Git for version control and efficient code management",
|
"Utilized Git for version control and efficient code management",
|
||||||
"Implemented and maintained Wordpress websites for clients"
|
"Implemented and maintained Wordpress websites for clients"
|
||||||
|
@ -137,7 +139,6 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"meta": {
|
"meta": {
|
||||||
"version": "v1.0.0",
|
"lastModified": "March 12, 2024"
|
||||||
"lastModified": "January 06, 2024"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,12 +42,15 @@ import resume from '../data/resume.json';
|
||||||
<h2>Education</h2>
|
<h2>Education</h2>
|
||||||
<div class="flex flex-col gap-2">
|
<div class="flex flex-col gap-2">
|
||||||
{resume.education.map((education) => (
|
{resume.education.map((education) => (
|
||||||
<div class="flex gap-2 flex-wrap items-center justify-between">
|
<div class="flex md:gap-2 flex-wrap items-center justify-between">
|
||||||
<div class="flex gap-2 flex-wrap items-center">
|
<div class="flex md:gap-2 flex-wrap items-center">
|
||||||
<h3>{education.area}</h3>
|
<h3>{education.area}</h3>
|
||||||
<p><a href={education.url}>{education.institution}</a></p>
|
<p><a href={education.url}>{education.institution}</a></p>
|
||||||
</div>
|
</div>
|
||||||
<p class="cv-date">{education.startDate} - {education.endDate}</p>
|
<p class="cv-date">{education.startDate} - {education.endDate}</p>
|
||||||
|
{education.description ?
|
||||||
|
<ul><li class="text-s">{education.description}</pli></ul>
|
||||||
|
: null}
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
@ -92,4 +95,4 @@ import resume from '../data/resume.json';
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</SectionContainer>
|
</SectionContainer>
|
||||||
|
|
|
@ -74,13 +74,13 @@ p {
|
||||||
|
|
||||||
.blog h3 {
|
.blog h3 {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
margin-top: 18px;
|
margin-top: 8px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog h4 {
|
.blog h4 {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
margin-top: 18px;
|
margin-top: 8px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue