Tag: Web development
-
Angular signal forms part 4: Metadata and accessibility handling
Posted on January 10, 2026, Level intermediate Resource Length medium
Enhance your Angular forms with metadata and ARIA attributes for improved user experience, inclusivity and accessibility. By Danny Koppenhagen.
Tags ux web-development angular app-development frontend miscellaneous
-
The £20 billion handshake: Backend deals reshaping your search bar
Posted on December 26, 2025, Level beginner Resource Length medium
This article explores how massive backend licensing agreements between tech giants and AI providers are transforming digital search and assistants, highlighting their impact on competition, innovation, and developer opportunities. By SmarterArticles.
Tags web-development management app-development search cio
-
Bridging the open source gap: from funding paradoxes to digital sovereignty
Posted on December 22, 2025, Level beginner Resource Length medium
Europe boasts a strong grassroots open-source community, yet struggles to translate that activity into commercial value. This article, based on Linux Foundation research, explores the disconnect between European developer contributions and funding, highlighting the need for greater C-level recognition of open-source's value and a more robust ecosystem to foster commercial ventures. It argues that bridging this gap is crucial for Europe's digital sovereignty in an increasingly geopolitically charged landscape. By Olimpiu Pop.
Tags web-development app-development open-source cio
-
CI/CD pipeline architecture: Complete guide to building robust CI and CD Pipelines
Posted on December 19, 2025, Level advanced Resource Length long
The article details a two-part CI/CD Pipeline Architecture Framework designed to guide teams from basic automation to a mature development platform. The first part, the "Golden Path," is a linear, six-stage workflow that forms the essential, reliable backbone: Code Commit (with branching strategy), Automated Build (ensuring environment parity), Automated Testing (using a test pyramid), Staging Deployment (mirroring production via IaC), Production Deployment (with health checks and rollback), and Monitoring & Feedback (closing the loop with observability). By Kamil Chmielewski.
Tags web-development app-development cicd devops how-to
-
How to find and remove unused Azure Data Factory Pipelines
Posted on December 17, 2025, Level intermediate Resource Length long
A 20-line PowerShell snippet scans every subscription, flags ADF factories that haven't executed a pipeline in 30 days, and hands you a clean-up hit-list in seconds. By Dieter Gobeyn.
Tags web-development app-development devops azure big-data
-
Deploy Hugo site to AWS S3 with AWS CLI
Posted on December 15, 2025, Level intermediate Resource Length long
Deploying a Hugo static site to AWS S3 using the AWS CLI provides a robust, scalable solution for hosting your website. This guide covers the complete deployment process, from initial setup to advanced automation and cache management strategies. By About Rost Glukhov.
Tags web-development aws devops how-to
-
Deep dive in Java vs C++ performance
Posted on December 9, 2025, Level intermediate Resource Length long
This article compares Java and C++ performance, debunking myths and revealing Java's strengths in memory management, execution speed, and optimizations. Find out why Java might be the unsung hero of high-frequency trading and server applications. By Johnny’s Software Lab LLC.
Tags programming performance app-development web-development
-
Scaling real-time video on AWS
Posted on December 7, 2025, Level intermediate Resource Length medium
Dive into the core protocols powering WebRTC, exploring how SDP, ICE, and DTLS work together to enable secure, real-time communication in production environments. Author works with the engineering team of a global live-streaming platform, and recently, we built a planet-scale WebRTC Selective Forwarding Unit (SFU) on AWS using Kubernetes to keep end-to-end latency below 150 ms (P95 = 140 ms) even across continents. By Oleksii Bondar.
Tags aws devops cicd app-development web-development
-
Laravel optimization: The complete performance guide for faster application
Posted on November 28, 2025, Level intermediate Resource Length medium
This article provides a comprehensive guide to optimizing Laravel applications for speed and performance. It covers caching strategies, database query optimization, server-level configurations, and hosting considerations. By implementing these techniques, developers can reduce load times, enhance scalability, and improve user experience. By Carrie Smaha.
Tags performance php web-development app-development
-
How I solved a distributed queue problem after 15 years
Posted on November 26, 2025, Level intermediate Resource Length medium
Reddit's early use of RabbitMQ highlighted the critical need for robust, durable task queues to handle high-volume, asynchronous operations – a lesson that continues to resonate in modern distributed systems. By DBOS.
Tags messaging queues software-architecture distributed web-development app-development
-
Practical use cases writing, refactoring, and testing code with GitHub Copilot
Posted on November 18, 2025, Level beginner Resource Length medium
In today's fast-paced software development environment, efficiency and code quality are paramount. Developers are constantly seeking tools that can accelerate coding tasks without compromising quality. One tool that has rapidly gained popularity among programmers is GitHub Copilot. By John Edward.
Tags programming app-development code-refactoring teams career web-development
-
Optimizing angular signals with smart equality checks
Posted on November 12, 2025, Level intermediate Resource Length medium
Signals are a powerful tool in Angular to handle reactivity, but they can easily cause unnecessary updates, wasted requests, and performance issues if not carefully managed. In this article, we’ll explore how Signals emit updates, why equality checks (equal) matter, and how to implement efficient deep comparison strategies to keep your applications smooth and reliable. By Romain Geffrault.
Tags programming web-development angular css frontend