💬 edit cv-text

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-04-26 14:58:16 +02:00
parent 0d92a8b010
commit 1cd5bf49a2
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6
2 changed files with 23 additions and 10 deletions

View file

@ -35,11 +35,17 @@
} }
], ],
"education": [ "education": [
{
"institution": "Universitat Politècnica de València",
"url": "https://www.upv.es/",
"area": "Exchange semester",
"startDate": "Jan 2024",
"endDate": "present"
},
{ {
"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"
}, },
@ -70,10 +76,20 @@
"Collaborated in team environments to enhance project efficiency", "Collaborated in team environments to enhance project efficiency",
"Managed and operated Linux servers", "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",
"Implemented and maintained Wordpress websites for clients" "Implemented and maintained Wordpress websites for clients"
] ]
}, },
{
"organization": "Bergen Open Source conference",
"position": "Leader",
"url": "https://boskonf.no/en",
"startDate": "2023",
"endDate": "2023",
"summary": "Bergen Open Source is an annual tech conference in Bergen driven by students and other volunteers. The conference focuses on open source code and open data.",
"highlights": [
"Initiated and led the first-ever Bergen Open Source conference in 2023, overseeing all planning phases and successfully hosting over 70 participants & 5 speakers"
]
},
{ {
"organization": "friByte", "organization": "friByte",
"position": "PR-manager", "position": "PR-manager",
@ -85,8 +101,7 @@
"Led member recruitment initiatives, expanding team talent and capabilities", "Led member recruitment initiatives, expanding team talent and capabilities",
"Significantly increased social media presence, effectively enhancing brand visibility", "Significantly increased social media presence, effectively enhancing brand visibility",
"Achieved a 250% increase in social media followers, adding 65 new followers", "Achieved a 250% increase in social media followers, adding 65 new followers",
"Lead the planning phase of the Bergen Open Source conference, successfully hosting ~90 participants & 5 speakers" "Coordinated PR-efforts for the Bergen Open Source conference, contributing to its successful first year"]
]
}, },
{ {
"organization": "friByte", "organization": "friByte",
@ -108,8 +123,6 @@
"name": "Programming languages", "name": "Programming languages",
"keywords": [ "keywords": [
"C#", "C#",
"HTML",
"CSS",
"Java", "Java",
"JavaScript", "JavaScript",
"Kotlin", "Kotlin",
@ -139,6 +152,6 @@
} }
], ],
"meta": { "meta": {
"lastModified": "March 12, 2024" "lastModified": "April 26, 2024"
} }
} }

View file

@ -22,7 +22,7 @@ import resume from '../data/resume.json';
<div class="flex gap-2 flex-wrap items-center justify-between"> <div class="flex gap-2 flex-wrap items-center justify-between">
<div class="flex gap-2 flex-wrap items-center"> <div class="flex gap-2 flex-wrap items-center">
<h3>{work.position}</h3> <h3>{work.position}</h3>
<p><a href={work.url}>{work.name}</a></p> <p class="font-bold"><a href={work.url}>{work.name}</a></p>
</div> </div>
<p class="cv-date">{work.startDate} - {work.endDate}</p> <p class="cv-date">{work.startDate} - {work.endDate}</p>
</div> </div>
@ -45,7 +45,7 @@ import resume from '../data/resume.json';
<div class="flex md:gap-2 flex-wrap items-center justify-between"> <div class="flex md:gap-2 flex-wrap items-center justify-between">
<div class="flex md: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 class="font-bold"><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 ? {education.description ?
@ -65,7 +65,7 @@ import resume from '../data/resume.json';
<div class="flex gap-2 flex-wrap items-center justify-between"> <div class="flex gap-2 flex-wrap items-center justify-between">
<div class="flex gap-2 flex-wrap items-center"> <div class="flex gap-2 flex-wrap items-center">
<h3>{volunteer.position}</h3> <h3>{volunteer.position}</h3>
<p><a href={volunteer.url}>{volunteer.organization}</a></p> <p class="font-bold"><a href={volunteer.url}>{volunteer.organization}</a></p>
</div> </div>
<p class="cv-date">{volunteer.startDate} - {volunteer.endDate}</p> <p class="cv-date">{volunteer.startDate} - {volunteer.endDate}</p>
</div> </div>