
Marcel-Brian
Full-Stack Softwareentwickler
Allgäu, BW, Deutschland
Leidenschaftlicher Web- und Softwareentwickler, der sich auf die Erstellung sauberer, effizienter und skalierbarer Webanwendungen mit einem modernen Tech-Stack konzentriert. Spezialisiert auf React, TypeScript, Python und WordPress.
interface Developer {
name: string;
skills: string[];
interests: string[];
};
interface TechStack {
devOps: string[];
backend: string[];
frontend: string[];
};
type ContactType = 'phone' | 'github' | 'linkedIn' | 'email';
const techStack: TechStack = {
devOps: [
'GitLab',
'GitHub',
'Docker/Podman'
],
frontend: [
'Angular',
'JavaScript',
'TypeScript',
'TailwindCSS',
'Astro',
'Capacitor',
'Markdown',
'WordPress'
],
backend: [
'Python',
'PHP',
'Node.js',
'MySQL',
'SQLite',
'PostgreSQL',
'MongoDB',
]
};
// Developer profile
const me: Developer = {
name: 'Marcel',
skills: [
...techStack.devOps,
...techStack.backend,
...techStack.frontend
],
interests: [
'Open Source',
'Security',
'Privacy',
'Performance',
'Self-hosting',
'Networking'
]
};
// Contact function
const contact = (type: ContactType): string => {
switch (type) {
case 'phone':
return '+4917663875033';
case 'github':
return 'https://github.com/mawigh';
case 'linkedIn':
return 'https://www.linkedin.com/in/marcel-brian-wilkowsky-67b0a518b';
case 'email':
return 'kontakt@mawidev.de';
default:
return 'https://www.rfc-editor.org/rfc/rfc1149';
}
};
Aktulle Projekte
VentoyU
ventoyu ist ein Werkzeug, mit dem man Ventoy ISO Files auf einem USB-Stick verwalten kann
Open Project WebsiteJupyter tools
Verschiendenste Tools für die Jupyter bzw. JupyterHub Welt wie Jupyter kernel mit Slurm HPC I/O
Open Project Website