"Hello World!";
Web developer and programmer
I create websites, web applications and software. Full stack? I go far beyond JavaScript. If a mobile or web application is supposed to do something, it should be fast, reliable, and secure — just like my work.
Skills What I can do
Accessibility
The websites I create meet WCAG 2.1 AA standards and are usable by everyone.
Fast
The websites and apps I build are optimized and fast — a Lighthouse score above 90 is my standard.
Framework of Your Choice
Whether you prefer React, Vue, Svelte, or any other framework, I can work with all of them.
export class Problem {
public A: number;
public B: number;
public k: -1 | 1;
public getDescription() {
let B = this.B.toString();
if (B[0] === "-") {
B = `(${B})`;
}
return `${this.A} ${this.k === -1 ? "-" : "+"} ${B} = ?`;
}
public solve() {
return this.A + this.B * this.k;
}
protected constructor() {
this.A = Math.floor(Math.random() * 201) - 100;
this.B = Math.floor(Math.random() * 201) - 100;
this.k = Math.random() < 0.5 ? 1 : -1;
}
} About me Who isTomáš Wróbel?
I am a web developer from Czechia with a hobby for problem-solving. I’m a social coder who enjoys the bridge between complex logic and human connection.
I wrote Hello World in Java when I was 11. At 12, I got a taste for the web. In my free time, I still develop open-source web applications, mostly for my own use.