my blog. for you.

Reden wir über Digitales.

Ich bin selbständiger IT Berater und Unternehmer in der Internet und Software Branche. Ich beschäftige mich mit Design, Enterprise Applikationen, Web Apps und SaaS Produkten. Ich entwerfe und entwickle Business Lösungen und Anwendungen. Ich helfe Unternehmen in Sachen Software Qualität und Wissenstransfer, z.B. mit Angular und Spring Boot.

Ruby on Rails: The Documentary

Leider ist der Eintrag nur auf English verfügbar. Ruby on Rails has one of the most faithful communities online, it also has one of the most controversial, rabble-rousing creators out there, Danish programmer, David Heinemeier Hansson. Widely known as DHH, David tells us how Rails went from a crazy idea to one of the most talked-about full-stack frameworks over the course of 20 years. Given that Ruby on Rails has been hugely influential and seminal in the software development industry for the ... Read more

Modern Web App Design Patterns: Patterns.dev

Leider ist der Eintrag nur auf English verfügbar.After last week's post on The Modern JavaScript Tutorial, a comprehensive guide to modern JavaScript, as something of a follow-up, today I'd like to introduce you to Patterns.dev (previously known as "Modern Web App Design Patterns"), an ebook on "design patterns and component patterns for building powerful web apps with vanilla JavaScript and React". The authors of Patterns.dev provide design patterns and tips on how to improve the architecture of your web apps. Patterns.dev follows ... Read more

The Modern JavaScript Tutorial

Leider ist der Eintrag nur auf English verfügbar.The Modern JavaScript Tutorial is a comprehensive guide to - well - modern JavaScript. Regularly updated and available both for free online (under a CC-BY-NC licence) and as an ebook, this tutorial introduces the reader to JavaScript as it is (or should be) written today. From JavaScript basics to object orientation, data types, functional programming and asynchronous behaviour, it covers everything the prospective JavaScript developer needs to know about writing high-quality, maintainable JavaScript code according to ... Read more

JSON Visualization With JSON Crack

Leider ist der Eintrag nur auf English verfügbar.JSON Crack is a JSON visualization solution that allows to generated ad-hoc graph visualizations for your JSON data. While one of the huge advantages of JSON over other data formats certainly is that it's human-readable, more complex JSON documents containing linked data structures can become unwieldy and difficult to understand - at a cursory glimpse, at least. Such situations is where a tool like JSON Crack for visualizing data can come handy. Read more

Rendering on the Web

How to Optimize Your Web Rendering PerformanceWeb rendering performance is an important factor in providing a good user experience. Poor performance can lead to slow page loading times, which can cause users to abandon a website. Optimizing web rendering performance can help ensure that users have a positive experience when visiting a website. The first step in optimizing web rendering performance is to reduce the size of the page. This can be done by compressing images, minifying HTML, CSS, and JavaScript, and ... Read more

The Layers Of The Web – Jeremy Keith @ beyond tellerrand Berlin 2019

Leider ist der Eintrag nur auf English verfügbar.Earlier this week - after a hiatus of almost two years on account of having been postponed due to the pandemic - this year's beyond tellerrand conference, an event about design, creativity, and the web, went ahead again. Even though Marc Thiele, the mastermind, organiser, and genuinely awesome person behind beyond tellerrand, ran a terrific series of online events under the Stay Curious moniker while on-site events weren't allowed to take place, it was amazing ... Read more

Debugging for Mobile Browsers

Leider ist der Eintrag nur auf English verfügbar.Occasionally, web developers need to debug a web app's behaviour in a specific browser on a specific device or class of devices. For desktop devices this usually isn't a problem because every modern browser nowadays provides a console, where application errors and custom console.log statements pile up. However, on mobile browsers there's usually no browser console, or browser development tools, for that matter. Analysing browser logs is still possible via vendors' development tools like Apple's ... Read more

“Paging with Spring Boot” by Tom Hombergs: A Guide to Paging and Pagination in Spring-based Web Applications

Leider ist der Eintrag nur auf English verfügbar.In his article Paging with Spring Boot software engineer Tom Hombergs (a former fellow student) provides an in-depth explanation of paging and pagination concepts and how to implement those in web applications with Spring Data and its Pageable interface. The article covers aspects such as sorting, usage with Spring Data repositories and testing. It's a useful reference for iteratively retrieving and displaying a larger amount of items from a database in a Spring Boot and ... Read more