Omkar Lolagespringboot-intoduction.hashnode.dev·Dec 20, 2024Introduction to Spring Boot: Your Zeroth Step to MasterySpring is a popular Java based framework for developing various applications. It has become the the backbone of countless enterprise applications, offering a robust eco-system for solving complex challenges. Spring boot overcomes the difficulties ass...36 likesintroduction to spring boot
Lokesh Kumar Jhajhalokesh.hashnode.dev·Dec 20, 2024How to Build a Secure Authentication ServiceAuthentication is a cornerstone of modern applications, ensuring that user data and actions remain secure. In this blog, we dive into the authentication microservice for a real-time pizza ordering application. We will explore its design, functionalit...Node.js
Sumaya J.tech-chunks.hashnode.dev·Dec 17, 2024Dependency Injection in AngularWhat does “resolving a dependency“ or “dependency resolution“ mean? It means finding and providing the requested object or service when it is needed in your application. What are the parts of Dependency Injection process? DI Injector Providerdependency injection
Chandan kumardeveloperchandan.hashnode.dev·Dec 11, 2024Mastering Angular: Top 10 Topics for Building Scalable Web ApplicationsDiscover the essential Angular topics every developer must know, including components, modules, routing, forms, RxJS, and more. Learn with detailed explanations and diagrams to build scalable and dynamic web applications. 1. Angular Architecture Key ...Angular
Omkar Lolageangular-beginners-guide.hashnode.dev·Dec 8, 2024Mastering Angular: A Deep Dive into Core Essentials for BeginnersIntroduction The world of front-end web development is continuously evolving, choice of framework or library is crucial. Angular is a powerful framework used by developers worldwide to build dynamic and scalable web applications. In this blog, we'll ...10 likes·59 readsbasics of angular
kalyan dahakeaekshant.hashnode.dev·Dec 4, 2024Building a Modular and Testable n-Tier Architecture in GoLang Using the Consumer Interface PatternIn this blog post, we'll explore an n-tier architecture implemented in GoLang with a consumer interface pattern that promotes modularity, decoupling, and unit testability. This approach is particularly useful for projects requiring clean separation o...1 like·41 readsDesign PatternGo Language
Javier Reyesdevconacento.hashnode.dev·Nov 27, 2024Inyección de dependencias con Microsoft.Extensions.DependencyInjection - Conceptos básicosPara mi primer post, he decidido compartir algunos conceptos básicos sobre Dependency Injection en .NET. No entraré en una definición teórica, ya que existen numerosos recursos explicándolo. En su lugar, me centraré en demostrarlo directamente con có...77 readsdotnet
Akash Desardaimportidea.dev·Nov 19, 2024How I leveraged FastAPI's dependency injection to reduce code by more than 30%This article expects that you know what is Dependency Injection in the FastAPI world & basic syntax. If you haven't yet explored or used it, I recommend following this guide by the original author of FastAPI. They are incredibly useful when you need ...36 readsData EngneeringFastAPI
Jyotiprakash Mishrablog.jyotiprakash.org·Nov 18, 2024Dynamic Plugin Loading in Java: From Configuration to Annotation-Based Dependency InjectionIn modern software development, dynamically loading and managing plugins at runtime allows for high flexibility, extensibility, and modularity in applications. This blog will walk through creating a dynamic plugin architecture using Dependency Inject...27 readsJava
Harendra Barotharrybdevops.hashnode.dev·Nov 11, 2024Troubleshooting Dependency Errors in Linux: A Guide to Resolving Package IssuesSteps to Fix Unmet Dependencies 1. Attempt to Fix Broken Packages Run the following command to let the package manager attempt to fix broken dependencies automatically: sudo apt --fix-broken install 2. Update Package Lists Ensure your package lists ...1 liketroubleshooting