📜 Updated CV
All checks were successful
Deploy website / build-and-deploy (push) Successful in 6m20s

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2025-06-08 12:25:43 +02:00
parent 5c022eb53a
commit 922283d62c
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
2 changed files with 44 additions and 5 deletions

View file

@ -4,7 +4,7 @@
"email": "jobb@kjelsrud.dev", "email": "jobb@kjelsrud.dev",
"url": "kjelsrud.dev", "url": "kjelsrud.dev",
"linkedin": "https://www.linkedin.com/in/sindrekjelsrud/", "linkedin": "https://www.linkedin.com/in/sindrekjelsrud/",
"summary": "Currently in the Ignite program @ Capgemini. Passionate about software development, open source, and the dynamics of collaborative teamwork." "summary": "Currently working as a Software Engineer at Capgemini. Passionate about software development, open source, and the dynamics of collaborative teamwork."
}, },
"work": [ "work": [
{ {
@ -15,8 +15,8 @@
"startDate": "Sep 2024", "startDate": "Sep 2024",
"endDate": "present", "endDate": "present",
"highlights": [ "highlights": [
"Served as fullstack developer on multiple client projects.", "Client 1: Development and maintenance of Altinn 3.0 form, as well as custom plugins for the open-source LMS Moodle. Facilitated workshops with users to map their needs, as well as system testing a set of applications.",
"Developed solutions using technologies like Altinn Studio, C#/.NET, Enonic etc." "Client 2: Development of website based on the CMS Enonic XP, which additionally underwent universal design improvements. Migration of Altinn 2.0 form to 3.0, which included fixing issues with REST and SOAP APIs. Improved developer experience as well by fixing issues with Git-repo, upgrading older dependencies, and transfer of project location."
] ]
}, },
{ {
@ -108,6 +108,16 @@
"highlights": [] "highlights": []
} }
], ],
"certifications": [
{
"name": "AZ-900: Microsoft Azure Fundamentals, Microsoft",
"date": "01.2025"
},
{
"name": "AI-900: Azure AI Fundamentals, Microsoft",
"date": "04.2025"
}
],
"skills": [ "skills": [
{ {
"name": "Programming Languages", "name": "Programming Languages",
@ -119,6 +129,7 @@
"Java", "Java",
"JavaScript", "JavaScript",
"Kotlin", "Kotlin",
"PHP",
"Python", "Python",
"SQL", "SQL",
"TypeScript" "TypeScript"
@ -135,6 +146,7 @@
"Spring", "Spring",
"Svelte", "Svelte",
"TailwindCSS", "TailwindCSS",
"Thymeleaf",
"Vue", "Vue",
"Zola" "Zola"
] ]
@ -143,7 +155,9 @@
"name": "Tools", "name": "Tools",
"keywords": [ "keywords": [
"Altinn Studio", "Altinn Studio",
"Atlassian Jira",
"Caddy", "Caddy",
"Cypress",
"Docker/Podman", "Docker/Podman",
"Enonic", "Enonic",
"Figma", "Figma",
@ -153,11 +167,21 @@
"MariaDB/MySQL", "MariaDB/MySQL",
"PostgreSQL", "PostgreSQL",
"Proxmox", "Proxmox",
"sops",
"WordPress" "WordPress"
] ]
},
{
"name": "Methods",
"keywords": [
"Kanban",
"OKR",
"Scrum",
"Iterative waterfall method"
]
} }
], ],
"meta": { "meta": {
"lastModified": "02. January 2025" "lastModified": "08. June 2025"
} }
} }

View file

@ -100,6 +100,21 @@ import resume from "../data/resume.json";
</div> </div>
</div> </div>
<!-- CERTIFICATIONS -->
<div>
<h2>Certifications</h2>
<div class="flex flex-col gap-2">
{
resume.certifications.map((certification) => (
<div class="flex gap-2 flex-wrap items-center justify-between">
<h4>{certification.name}</h4>
<p class="cv-date">{certification.date}</p>
</div>
))
}
</div>
</div>
<!-- SKILLS --> <!-- SKILLS -->
<div> <div>
<h2>Skills</h2> <h2>Skills</h2>