👋
Hello, I'm

Tomáš Wróbel

Web Developer
I create web applications and websites. I can work in any framework or without one, full-stack!
Photo of Tomáš Wróbel with a laptop in his hand
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

I'm a young programmer from Czechia who is up for anything. Despite my high intelligence, I'm totally an extrovert and, no matter how knowledgeable, I often make mistakes out of haste. I like to do things my own way, but good advice is always more valuable to me than my stubbornness.

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.

  • HTML5 + CSS3
  • TypeScript + React
  • Design
  • Flutter + Dart

Blog

Certificates

Skills

Curriculum Vitae

I started programming back in elementary school, when I was fascinated by the possibility of creating my own worlds through code. This passion led me to a special class for gifted children and eventually to high school. Even then, I knew I wanted to become a web developer.

My path wasn’t always straightforward, but that’s exactly what taught me independence and responsibility. At age 15, I began passing on my knowledge as a tutor in the Doučse project, where I learned what it’s like to explain complex technical concepts in an understandable way.

To fully dedicate myself to development and gain real-world commercial experience, I decided at age 18 to prioritize a professional career over an academic path. I joined Fastest, where I now work as a full-stack developer on a variety of projects ranging from web applications to mobile development in Flutter.