Kenan Schaefkofer is a software engineer with passions for games, music, math, and open-source software. This page highlights several personal projects built by Kenan over the years, most of which can still be enjoyed today. You can find his professional experience in his resume.
<script> function play() { var audio = document.getElementById("pronunciation-audio"); audio.play(); } </script>{% assign sorted = site.data.projects | sort %} {% for project_hash in sorted %} {% assign project = project_hash[1] %} {% unless project.id == "hide" %}
{% endunless %} {% endfor %} <script> var cards = document.querySelectorAll(".project-card"); cards.forEach(function(card) { card.addEventListener("mouseenter", function() { data_id = event.target.getAttribute('data-id'); if (!data_id) return; vid = document.querySelector('.project-vid[data-id="'+data_id+'"]'); vid.play(); }); card.addEventListener("mouseleave", function() { data_id = event.target.getAttribute('data-id'); if (!data_id) return; vid = document.querySelector('.project-vid[data-id="'+data_id+'"]'); vid.pause(); }); }); </script>