XMoravec

Blog

I love writing. Read about my thoughts, technical deep-dives and adventures.

Blog

Published 02/15/2026 · 5 min read

What My University Projects Still Teach Me Today

notes.ts

1bignum *bignum_fromstring(char *str) {
2  bignum* num = bignum_new();
3  bignum_enlarge(num, strlen(str));
4  for (unsigned int i = 0; i < strlen(str); i++) {
5    num->tab[i] = str[i] - '0';
6  }
7  return num;
8}

A readable reflection on three university repositories that still influence how I build software: BigNumbers, Proximity Messenger, and PB161 C++ assignments.

UniversityEngineeringReflectionCryptographyAndroid
Read article

notes.ts

1const notes = {
2  title: "From Baseline to Milestone: Where the Portfolio Stands Now",
3  publishedAt: "02/15/2026",
4  tags: ["Milestone","Product","UX","Dev Log"],
5};

One day after the initial snapshot, the portfolio moved into a much more stable late-stage shape: cleaner mobile UX, working contact delivery, bilingual-ready UI text, and tighter component structure.

MilestoneProductUXDev Log
Read article
Blog

Published 02/14/2026 · 2 min read

Portfolio Engineering Log: Current Technical Snapshot

notes.ts

1type BlogBlock =
2  | { type: 'heading'; text: string }
3  | { type: 'paragraph'; text: string }
4  | { type: 'quote'; text: string }
5  | { type: 'list'; items: string[] }
6  | { type: 'code'; language: string; code: string };

A technical snapshot of the current Next.js portfolio: architecture, content model, shipped routes, and concrete gaps still in progress.

Next.jsTailwindArchitectureDev Log
Read article