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