All Posts
Discover all our published articles and insights.
JavaScript Interop in Blazor Explained
Blazor allows developers to build interactive web applications using C# instead of JavaScript, but there are still situations where browser APIs or JavaScript libraries are required. JavaScript Interop provides the bridge between Blazor and JavaScript, enabling developers to call JavaScript functions from C# and vice versa while keeping applications modern, flexible, and efficient.

Dark Mode Done Right
Dark mode has become a standard feature across websites and applications, but implementing it properly takes more than simply swapping white backgrounds for black ones. A well-designed dark theme improves readability, reduces eye strain and creates a polished user experience while remaining accessible and consistent across devices.

Recreating a Classic Amiga Demo Effect in Modern C#
The demoscene on the Commodore Amiga pushed hardware to its limits with clever tricks and tight optimisation. In this article, we revisit one of those iconic visual effects and recreate it using modern C#. By combining mathematical principles with today’s frameworks, we can bring retro visuals to life while appreciating the ingenuity of early developers.

Tailwind CSS: Love It or Hate It?
Tailwind CSS has sparked strong opinions across the web development community. Some praise its utility-first approach for speed and flexibility, while others criticise it for cluttering HTML and breaking traditional styling practices. But is it genuinely a step forward, or just another trend? Let’s take a balanced look.

Creating a Terminal-Style UI in Blazor
Retro-inspired interfaces are making a comeback, and one of the most enjoyable designs to recreate is the classic terminal screen. With Blazor, you can build an interactive terminal-style UI using modern web technologies while keeping the nostalgic look and feel. In this article, we will create a reusable terminal component with typing effects, command input and custom styling using C# and CSS.

Building a 90s-Inspired Layout with Modern CSS
The web design of the 1990s had a bold and unmistakable style. Bright colours, chunky borders, tiled backgrounds and table-based layouts were everywhere. While design standards have evolved, there is still something fun and nostalgic about those early web pages. In this article, we will recreate that retro look using clean, responsive, modern CSS techniques without sacrificing usability.

Blazor Server vs WebAssembly in 2026: Which Hosting Model Should You Choose?
Blazor has matured into a serious option for modern .NET web development, but one question still comes up in 2026: should you choose Blazor Server or Blazor WebAssembly? Both let you build interactive web apps using C#, yet they solve problems differently. In this guide, we compare performance, scalability, offline support, security, and real-world use cases to help you choose the right model.

Designing a Blog Database Properly
When building a blog, many developers focus on the frontend experience and forget that everything relies on a solid database design. A poorly structured database can quickly become difficult to maintain, inefficient to query, and hard to extend. Let’s break down how to design a proper blog database from the ground up.

