I'm a Junior Full Stack Developer from Switzerland with 3 years of experience.
Here are some of the projects I worked on in the past.
My own Saas: A developer-friendly platform for embedding lightweight analytics, SEO, speed insights, and revenue tracking into your applications.
2sxc is revolutionizing content management on DNN and Oqtane with the 1-second-paradigm. Every interaction takes less than 1 second. As part of an internship, I contributed to the development of this CMS.
SchoolSys is a system designed to help daycares in Arusha (Tanzania) and Cape Town (South Africa) teach children using modern methods to empower young children. For my final exam project, I developed material management system for the App.
Here are some of the main technologies I work with.
Setup Karma with Jasmine • Jun 08, 2025
<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*SyioucsvtknGGz2hqY0sSQ.png"></figure><h3>Introduction</h3> <p>Karma and Jasmine are popular tools for testing JavaScript and TypeScript applications. Jasmine provides the testing syntax, while Karma runs your tests in real browsers and reports the results. This guide walks you through setting up Karma with Jasmine in your project.</p> <h4>Step 1: Install Jasmine</h4> <p>First, install Jasmine as a development dependency:</p> <pre>npm install jasmine jasmine-core --save-dev</pre> <pre>npx jasmine init</pre> <pre>npm test</pre> <p>This sets up Jasmine in your project and adds a basic test structure.</p> <h4>Step 2: Install and Configure Karma</h4> <p>Install Karma and the necessary plugins:</p> <pre>npm install karma karma-jasmine karma-chrome-launcher karma-jasmine-html-reporter karma-typescript --save-dev</pre> <p>Install the Karma CLI globally:</p> <pre>npm install -g karma-cli</pre> <p>Generate a fresh Karma configuration file:</p> <pre>karma init</pre> <p>During the setup, select Jasmine as the testing framework and Chrome as the browser. Modify the generated karma.conf.js to suit TypeScript projects and your file structure.</p> <p><a href="https://karma-runner.github.io/1.0/config/configuration-file.html">Configuration File</a></p> <p>When your using TypeScript you will need to configure Karma accordingly</p> <p><a href="https://karma-runner.github.io/6.4/config/configuration-file.html#customized-typescr...
Here are some stats about my contributions on GitHub.
0
Total Commits
0
Total Reviews
0
Total Issues
0
Total PRs
0
Contributed To
Here is a chart showing my commit history over the last year.