Read, learn, develop.
Devote yourself.
Hot from the oven
Scaling Modern Software With Design Patterns: From Observer to ProxyTechnologyMarko M.6 min readFeb 4, 2026Design patterns help growing systems stay predictable by coordinating behavior and hiding complexity behind clean interfaces. This blog breaks down Observer, Command, Facade, Composite, and Proxy with practical examples that translate across mod...
Tomislav B.9 min readSep 11, 2023
How to Test Accessibility in HealthTech AppsIt’s common to unintentionally exclude a broad spectrum of potential users when creating applications or websites. To ensure we don’t miss the opportunity to help countless individuals, accessibility testing becomes imperative. In this blog post, we will delve into how to test accessibility in HealthTech apps, what the significance is for both web and mobile platforms, and see what the value is across all industries.
Hrvoje D.8 min readAug 28, 2023
What Are the Big Changes with Next.js 13?Next.js 13 introduces exciting features that reshape how developers build applications. Explore what the big changes are with Next.js 13 to gain insight into the transformation of routing and server-side components, and learn how to overcome migration hurdles for enhancing the user experience.
Leo C.4 min readApr 7, 2023
How to Start Automation Testing With Cucumber in Ruby on RailsTraditional testing approaches are typically code-based, making them more challenging to maintain and introduce change within them. Find out why you should use Cucumber tests and take all the necessary steps to start automation testing with Cucumber in Ruby on Rails.
Juraj S.6 min readMar 10, 2023
How to Create a GraphQL API With Ruby on RailsWhy learn to use GraphQL? This blog introduces widely used patterns and best practices while covering objects, queries, and mutations. Get an overview of the core concepts of GraphQL and learn how to create a working GraphQL API project using Ruby on Rails.
Krešimir Č.Martin M.9 min readFeb 10, 2023
Why Stick to Ruby Despite the Alleged Popularity Drop?Due to the drop in the popularity of Ruby on Rails, some developers are considering abandoning it. On the other hand, some young developers think it isn’t even worth learning. Find out why Ruby on Rails is still a good choice and why you should consider learning it.
Stefan M.5 min readJan 13, 2023
HTTP Status Codes Cheat SheetStumbling across certain errors containing a number can happen while browsing the web. Those numbers are HTTP status codes, indicating the type of HTTP error the user faces. This post helps developers understand which HTTP codes are standard responses on which endpoint type.
Max L.7 min readDec 16, 2022
How to Optimize Images for Web Without Losing Quality?Choosing the proper image format can significantly improve your website's performance and overall user experience. That's why it's important to understand image formats and how to use and optimize them to enhance your website performance.
Manuela T.8 min readNov 11, 2022
ADR - the Alternative to Mainstream ArchitecturesADR is based upon existing concepts of MVC, so we cannot say it’s an entirely new architecture. But, we can take it up as an improvement in some aspects when compared to MVC. Learn the difference between MVC and ADR architecture, as well as the benefits of using ADR and when to use it.
Juraj S.5 min readJul 15, 2022
How and Why to Host Your Sitemaps Inside an AWS S3 Bucket?Creating a nice website with interesting content is not enough to reach a wide audience. That’s where SEO comes into place, and having an up-to-date sitemap is the thing you should focus on. At Devōt, we host our sitemaps inside the AWS S3 bucket – so if you want to choose that route, here is what you need to know.
Karlo A.6 min readMay 13, 2022
How to Implement Sign In With Microsoft Using the Office 365 OmniAuth Strategy With Rails 7Learn how to create a fully working “Sign in with Microsoft” authorization button, which functions exactly the same way as the ones that we see everywhere online. After you learn this, you will have no issues implementing other OmniAuth strategies on your own. In just three steps, you will be able to make your life easier.

Marko M.4 min readApr 8, 2022
How to Install Unsupported Development Software on M1 MacsFrom the new release in November 2020, Apple released the first Mac with an ARM-based M1 chip. The M1 chip marks Apple's transition from Intel chips that have been used for the last 15 years. If you are worried about transitioning your existing project from your Intel-based Mac, this blog could make your transition easier.

Leo C.5 min readNov 26, 2021
Regression Test Coverage - Your Product’s Quality Depends on ItWe can all agree on one rule – the most important thing is that the bugs are detected and resolved before the project delivery. The best way to prevent problems with introducing new code is to perform regression tests. What exactly are they?