I'm a Full Stack Junior Developer from Switzerland with 1 year of professional experience.
Here are some of the projects I worked on in the past.
My own Saas: A universal log parser/ visiualizer for developers. It's a desktop application for both Windows and MacOS.
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.
Here are some of the events I attended recently.
Deeplink Authentication with Electron and Supabase • May 13, 2026
In this article, you’ll learn how to implement deep link authentication using Electron and Supabase Auth.
Prerequisites Before starting, you should have:
A basic Electron application
A Supabase project
A web application for handling authentication
You can use the official Supabase Next.js starter:
Use Supabase with Next.js | Supabase Docs
Step 1: Open External Authentication Pages First, we need a way to open external websites from inside the Electron application. We can achieve this using shell.openExternal. In the same step we can add onDeepLink as a hook for later.
create a preload.js file:
const { contextBridge, ipcRenderer } = require("electron");
contextBridge.exposeInMainWorld("electron", { openExternal: (url) => ipcRenderer.send("open-external", url), onDeepLink: (callback) => ipcRenderer.on("deep-link", (_event, url) => callback(url)), }); and update your main.js
import { app, BrowserWindow, ipcMain, shell } from "electron"; import path from "node:path"; import { fileURLToPath } from "node:url";
// add this alongside your other ipcMain/app listeners: ipcMain.on("open-external", (_event, url) => { shell.openExternal(url); });
const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename);
let mainWindow;
function createWindow() { mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { preload: path.join(__dirname, "preload.js"), }, });
// DEV
...
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.