Hosted Feature Branches: Building a CI Pipeline for Effortless Deployment

Understanding the Cost of Delayed Deployment with Hosted Feature Branches After years of watching development teams tackle manual or semi-automated deployments, one lesson stands out: the hidden cost of a non-optimized pipeline isn’t always apparent upfront. With hosted feature branches, you can significantly reduce this gradual time drain. Each delay and incremental fix subtly chips […]

How Continuous Integration, Feature Branches, and Previewable Environments Accelerate Fintech Product Development

In the fast-paced world of fintech, speed, security, and innovation are essential. If your development process feels bogged down or error-prone, it’s time to adopt practices that accelerate fintech product development. Continuous integration, feature branches, and previewable environments are powerful methodologies that enable your team to deliver faster, maintain stability, and respond to changing market […]

Navigating the Complex World of Medical Records in Health Insurance

In the rapidly evolving landscape of health insurance, access to accurate and comprehensive medical records is crucial for assessing risk, determining coverage, and setting premiums. For health insurers, understanding the regulatory landscapes in different regions is key to developing effective solutions. In the United States, the process of obtaining medical records in health insurance is […]

A Memorable Summer – CQUELLE Chess Tournament

CQUELLE Chess Tournament

Summertime often brings to mind images of sandy beaches, sun-drenched picnics, and ice-cold lemonades. But this year, our boutique software development company added another bright highlight to our summer memories: a grand chess tournament! Yes, the game of kings and queens, rooks and pawns, found its way to the heart of our team. We traded […]

How Technology is Redefining the Education Landscape

Impact of Technology on Education

Digital Revolution: The Emergence of EdTech Welcome to the dawn of the Digital Age in Education! Let’s explore how the Impact of Technology on Education is reshaping and enriching learning experiences! Unlocking New Dimensions in Learning If you’ve ever been curious about how technology and education interplay, EdTech is where you find the magic happening. […]

Implementing Swipe To Delete in React Native

Implementing Swipe To Delete in React Native

Dear friends, this post is about a fundamental functionality you can see in nearly every app – swipe to delete. Searching on the internet gives you dozens of links describing how to do it, referencing some existing NPM packages. Still, many of them are too heavy, requiring many dependencies for such a simple thing, overcomplicated, […]

Docker Push Error With Private Registry – Retrying In N Seconds

Docker Push Error With Private Registry – Retrying In N Seconds

Hello everyone, today I’d like to share some other gotcha about a private docker registry solution hidden behind nginx reverse proxy. This information may be helpful to you if you have direct access to the server and administer private docker registry yourself. Issue After system updates once working system suddenly has stopped functioning properly on any attempt of doing docker push. […]

Record Data Type And Collections In C# 9.0

Record data type and Collections in C#

Hello everyone, this time, I came up with a small topic related to using Record data types in C# 9.0 together with collections.What we realized, C# 9.0 gives us a data structure perfectly suitable for Immutable Objects.Immutable Objects are not new; they exist in Java, C#, Python, TypeScript, React.JS, and many other languages and frameworks.Why […]

Repository Pattern in DDD – Joining Tables Query

Repository Pattern in DDD – Joining Tables Query

In this post I want to share some thoughts about Domain-Driven Design (DDD) and retrieving the data aggregated from multiple tables or documents while using a Repository pattern in your project. Sometimes the data structure needed does not fit any of the entities your Repository can return. How to deal with this and what possible solutions apply is the focus […]