Tech News
All News AI & ML Architecture DevOps Open Source Programming Team Management Testing & QA Web

Latest News

⚑ Report a Problem

Tech news from the best sources

All topics - игры AI Gear News Tech agents ai api architecture automation beginners career database devops javascript llm machinelearning mcp opensource performance productivity programming python react security showdev testing tutorial typescript webdev
All EN RU
EN

Laravel & Design Patterns — Practice Series: Adapter

Welcome back. This is the next article in our practical use of patterns in Laravel, and in this guide, we are going to talk about one of the most po…

laravelphpwebdevdesignpatterns
Dev.to Aug 28, 2026, 16:30 UTC
EN

The State Pattern Trap: Why GoF Is Not Always the Best Choice

Have you ever tried to use the classic Gang of Four (GoF) State Pattern in real code? You might have hit a wall. You might have thought, "Wait, this…

llddesignpatternsstatemachine
Dev.to Aug 26, 2026, 09:20 UTC
EN

The Criteria pattern in NestJS: what a client may ask for is a file, not a signature

The Criteria pattern in NestJS One single way to filter, sort and paginate any list. Five parameters and a find() The example running through this a…

criteriadesignpatternstypescriptnestjs
Dev.to Aug 21, 2026, 03:10 UTC
EN

The Boundary Independence Principle (BIP)

The Boundary Independence Principle (BIP) I've been writing about the SOLID principles for over a decade. I built InversifyJS because of them, I wro…

architectureprogrammingdiscussdesignpatterns
Dev.to Aug 20, 2026, 08:20 UTC
EN

Design Patterns: Reusable Solutions to Recurring Problems

Design Patterns: Reusable Solutions to Recurring Problems A practical guide to classic design patterns in C#/.NET — Factory, Singleton, Repository,…

designpatternsdotnetprogramminglearning
Dev.to Aug 18, 2026, 15:47 UTC
EN

Full practical guide on creating production-grade webhook receivers

Throughout my career I have designed and implement tens of webhook handlers from Payments systems and delivery trackers to chat and real time commun…

backenddesignpatternswebdevpython
Dev.to Aug 13, 2026, 10:56 UTC
EN

Understanding CQRS: A Practical Guide to Command Query Responsibility Segregation

When you're building an application that needs to handle complex business logic, scale to millions of users, or maintain separation of concerns, you…

cqrsarchitecturedesignpatternssoftwaredevelopment
Dev.to Aug 12, 2026, 14:57 UTC
EN

Prototype & Factory Method Design Patterns in Java - ClauseGuard

Introduction When ClauseGuard processes an uploaded contract, two problems appear immediately at scale. First, it needs to pick the right document p…

designpatternsjavacleancodeclauseguard
Dev.to Aug 7, 2026, 06:00 UTC
EN

The Decorator Pattern in Java: Adding Behavior Without Breaking Everything

Decorator Design Pattern in Java: Add Features Without Changing Existing Code Introduction When developing Java applications, you may need to add ne…

javaprogrammingsoftwareengineeringdesignpatterns
Dev.to Aug 7, 2026, 05:58 UTC
EN

Why Your LLM Calls Need a Circuit Breaker: A Lesson from Last Party 🔌

Carnival time has begun. 🎉 We are organizing a house party, and if you are in and around Bangalore, you are invited. Just one condition: Don't be la…

distributedsystemsdesignpatternsbackendwebdev
Dev.to Jul 30, 2026, 21:02 UTC
EN

Important Design Patterns in a Nutshell

When building complex software systems, writing code that simply "works" is not enough. As systems scale and requirements evolve, poorly structured…

javaarchitecturedesignpatternsprogramming
Dev.to Jul 30, 2026, 05:46 UTC
EN

Simple Factory, Factory Method, Abstract Factory — Which One Do You Need?

The Problem You're building a system that supports multiple databases — MySQL, PostgreSQL, MongoDB. Different services in your application need to c…

designpatternssolidprinciplessoftwareengineeringshowdev
Dev.to Jul 22, 2026, 16:06 UTC
EN

Never Create an Invalid Object Again — The Builder Pattern

A real story from building a manuscript submission system at a scientific publishing company. We were building a system at a Publishing Company that…

designpatternssolidprinciplessoftwareengineeringshowdev
Dev.to Jul 22, 2026, 16:03 UTC
EN

The Ideal Cart: 5 Design Patterns That Earn Their Keep (and 2 Refused)

It all starts with a review question. I was reworking my notes on the Design Patterns book , the Gang of Four one, with examples that all came from…

designpatternsphpoopstrategy
Dev.to Jul 19, 2026, 09:00 UTC
EN

Stop Editing Working Code: Understanding the Open/Closed Principle in Python

Every time a new requirement arrives, do you find yourself opening the same function and adding another elif block? If yes, your code may be signali…

pythonsolidprinciplesoopdesignpatterns
Dev.to Jul 17, 2026, 05:52 UTC
EN

The Factory Pattern: Simplified

The Problem You're building a system that supports multiple databases — MySQL, PostgreSQL, MongoDB. Different services in your application need to c…

designpatternssoftwaredevelopmentsoftwareengineeringshowdev
Dev.to Jul 16, 2026, 15:24 UTC
EN

Making ServiceLoader usable: a provider factory

I keep coming back to java.util.ServiceLoader . I have used it to put a JSON layer behind a contract, so the core code carries no direct dependency…

javaserviceloaderspidesignpatterns
Dev.to Jul 14, 2026, 09:43 UTC
EN

Environments Are Not Features

I wanted a sandbox. Not the decorative kind. Not the one where production data wears a fake name tag and hopes nobody notices. A real sandbox. One w…

noteapidesignarchitecturedesignpatterns
Dev.to Jul 10, 2026, 11:34 UTC
EN

Design Patterns in Ruby #2: Observer Pattern

Applications often need to react when something changes. When a user signs up, you might want to: Send a welcome email Create a user profile Log the…

designpatternsprogrammingrubyrails
Dev.to Jul 8, 2026, 16:17 UTC
EN

Composition over Inheritance

C++ has a lot of double-edged swords. These features abstract the process of turning the sharp edge on yourself, so that you can destroy yourself wi…

cppoopdesignpatternsinheritance
Dev.to Jul 5, 2026, 11:11 UTC
EN

Builder Design Pattern - Simplified

A real story from building a manuscript submission system at a scientific publishing company. We were building a system at a Publishing Company that…

designpatternspythonprogrammingshowdev
Dev.to Jul 3, 2026, 15:31 UTC
EN

Flexible density for all the UI

In our UI system we dont use pixel values to define spacing, we use semantic variables, (t-shirt sizes: gap-sm , p-lg , my-2xl ) - so thats like you…

cssuidesignpatternswebdev
Dev.to Jun 25, 2026, 11:17 UTC
EN

Enterprise Design Patterns in Python: Repository & Unit of Work — Real-World E-Commerce Example

Enterprise Design Patterns in Python: Repository & Unit of Work 🐍🏗️ Series: Enterprise Application Architecture | Source: Fowler's EAA Catalog |…

pythondesignpatternsarchitecturebackend
Dev.to Jun 20, 2026, 06:10 UTC
EN

AI Added Caching to Your Code — And Quietly Polluted Your Business Logic

Originally published at recca0120.github.io Ask AI to add caching to your code, and it will. The result looks clean — cache logic extracted into a s…

designpatternscachetypescriptcleanarchitecture
Dev.to Jun 9, 2026, 09:00 UTC
EN

Introducing the ArchUnit Checker for the Clprolf Framework

One of the most interesting aspects of architectural frameworks is not the rules themselves, but the ability to verify that those rules are actually…

javaarchitectureoopdesignpatterns
Dev.to Jun 1, 2026, 07:34 UTC
EN

Benevolent Viruses — A Design Pattern for Ethical AI

Last month I ran an outreach campaign. I emailed 25 people — researchers, advocates, technologists — the kind of humans who think about how AI shoul…

aiethicsdesignpatternsopensource
Dev.to May 30, 2026, 14:11 UTC
EN

The Repository Pattern and AQC — Part 1 of 3: Cleaning Up the Internals

The Series This is the first article in a three-part series on migrating from a traditional Repository Pattern implementation toward Atomic Query Co…

webdevprogrammingdesignpatternsarchitecture
Dev.to May 29, 2026, 09:32 UTC
EN

Language-Agnostic Code Generation: The Driver Plugin Model

TestSmith generates test scaffolds for five languages: Go, Python, TypeScript, Java, and C#. Each language has its own project structure conventions…

goarchitecturedesignpatternsdevtools
Dev.to May 23, 2026, 16:29 UTC
EN

Singleton Design Pattern in Java — From Naive to Thread-Safe

What is the need for Singleton Pattern ? Let's say we need to connect to DB and for every request if we keep creating a new Instance of Db connectio…

javadesignpatternsbeginnerssingleton
Dev.to May 21, 2026, 07:40 UTC
EN

Swift Protocol Magic II: Designing a Reusable Location Tracking System

How to stop rewriting CLLocationManager boilerplate in every screen — and design something your future self will actually thank you for.* If you've…

programmingiosmobiledesignpatterns
Dev.to May 15, 2026, 20:24 UTC

© Tech News — Headline Aggregator

English Русский
Sitemap Legal Notice Privacy Terms Copyright / Removal DSA Contact

Leaving the site

You are about to open an external website:

Continue →