add key tech used to cv

This commit is contained in:
Wouter Groeneveld 2023-12-21 10:26:11 +01:00
parent a82c018106
commit d22ee1e2cf
2 changed files with 45 additions and 22 deletions

View File

@ -20,7 +20,7 @@
<p>
As a <em>Brain Baker</em>, my broad areas of interest facilitate baking diffuse thoughts into concrete new ideas. I love inspiring others to bake their brain (and bread) as well. <br/>
As a software development generalist, I am very skilled at static, dynamic, and functional languages. I approach problems test-first and value knowledge sharing. I took on various roles from agile coaching to technical lead. <br/>
As a software development generalist, I am fluent in a variety of languages and technologies. I approach problems test-first and value knowledge sharing. I took on various roles from agile coaching to technical lead. <br/>
As an academic researcher, I study how software engineers creatively discover and solve problems. I value science communication and summarize findings for broader audiences. I regularly teach both in industry and in academia.
</p>
@ -41,50 +41,54 @@
<li>
<span class="date">2023—now</span>
<span>
<span class="title">Postdoctoral Researcher, KU Leuven</span><br/>
<div class="title">Postdoctoral Researcher, KU Leuven</div>
I participate in European projects focused on increasing the quality of engineering education.
</span>
</li>
<li>
<span class="date">2018—2023</span>
<span>
<span class="title">PhD Researcher, KU Leuven</span><br/>
I divide my time between 50% research, studying creativity in computing education, and 50% teaching, building many courses from scratch, including software engineering, databases, software design in C/C++, and operating systems.
<div class="title">PhD Researcher, KU Leuven</div>
I divide my time between 50% research, studying creativity in computing education, and 50% teaching, building many courses from scratch, including fundamental software design and advanced engineering, databases, and operating systems.
<div class="tech">TeX, Node, Python, Android, C++, Kotlin/Java</div>
</span>
</li>
<li>
<span class="date">2016—2018</span>
<span>
<span class="title">Guest Lecturer, PXL Hasselt</span><br/>
<div class="title">Guest Lecturer, PXL Hasselt</div>
I teach clean code and test-driven development courses to both college students and their teachers to further support the informatics curriculum.
</span>
</li>
<li>
<span class="date">2014—2018</span>
<span>
<span class="title">Senior Software Developer, Prato</span><br/>
<div class="title">Senior Software Developer, Prato</div>
I coach and support colleagues within and across multiple software development teams. I help lay the foundations for a self-improvement culture and give multiple internal and external talks on motivation, inspiration, and productivity.
<div class="tech">C#/.NET, ExtJS, MSSQL, Azure, Octopus Deploy</div>
</span>
</li>
<li>
<span class="date">2012—2014</span>
<span>
<span class="title">Teamcoach, Cegeka</span><br/>
<div class="title">Teamcoach, Cegeka</div>
I develop software together with the rest of the team while also helping overcome technical and collaborative challenges. I coach junior developers and monitor and safeguard our internal agile values.
<div class="tech">Java, Spring, MongoDB, Vaadin, AngularJS, C#/.NET</div>
</span>
</li>
<li>
<span class="date">2011—2014</span>
<span>
<span class="title">Guest Lecturer, Thomas More, Geel</span><br/>
<div class="title">Guest Lecturer, Thomas More, Geel</div>
I taught multiple workshops and courses, such as: JavaScript as a dynamic and functional language, agile software engineering, and an introduction to self-improvement and getting things done.
</span>
</li>
<li>
<span class="date">2007—2012</span>
<span>
<span class="title">Agile Software Developer, Cegeka</span><br/>
<div class="title">Agile Software Developer, Cegeka</div>
I am part of the Cegeka Agile Software Factory that delivers enterprise software with co-located teams. I help facilitate lean software development principles such as pair programming and test-driven development.
<div class="tech">Java, Spring, Hibernate, JEE, JSF, JavaScript</div>
</span>
</li>
</ul>
@ -117,7 +121,14 @@
<li>
<span class="date">Certificates</span>
<span>
<span class="title"></span>Sun Certified Java Developer, Zend Certified PHP Engineer, SpringSource Certified Spring Professional, Certified Scrum Master.
Sun Certified Java Developer & Programmer, Zend Certified PHP Engineer, SpringSource Certified Spring Professional, Certified Scrum Master.
</span>
</li>
<li>
<span class="date">Programming Languages</span>
<span>
<em>Expert in:</em> JavaScript, Java, C#/.NET, PHP, HTML/CSS.<br/>
<em>Experience with:</em> Python, Kotlin, Go, C/C++, SQL, Bash/shells.
</span>
</li>
</ul>

View File

@ -31,18 +31,6 @@ a {
height: 25vh;
}
@media (prefers-color-scheme: light) {
html {
color: black;
background: white;
}
a {
color: var(--accent);
}
}
#header {
font-size: 125%;
width: 100%;
@ -54,6 +42,16 @@ a {
font-weight: bold;
}
.tech {
font-size: 85%;
margin-top: 0.5em;
color: var(--accentlight);
}
.tech::before {
content: "💾 ";
}
dl {
display: grid;
grid-template-columns: 8em auto;
@ -142,3 +140,17 @@ section.refs li {
}
}
@media (prefers-color-scheme: light) {
html {
color: black;
background: white;
}
a {
color: var(--accent);
}
.tech {
color: var(--accent);
}
}