Web
Dynamics
Click on the tag item
REST
React
UI/UX
Entity Framework
Windows Server
ASP.NET
CI/CD
.NET Core
PowerShell
LINQ
WCF
WPF
PHP
KISS
Scrum
MySQL
Redis
SOLID
Windows Forms
DRY
TFS
Design Patterns
Confluence
Jira
XML
PostgreSQL
MariaDB
Active Directory
Reverse Engineering
Azure
Elasticsearch
Performance Optimization
jQuery
Blazor
Progressive Web Apps
TypeScript
Web API
Dapper
Agile
JSON
Favorites
History
Tags
Donate
Translate
Statistics
Ads
RU
EN
Books
Articles
Video
News
Developer
Repositories
Portfolio
Application
Messages
Studio
Forum
Site search
Looking for a job
Exact match
articles
books
video
news
notes
title
text
description
author
year
tags
Search results
Found:
436
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
Sep 5, 2024 •
articles
Optimizing data operations with OData in .NET 8
https://sd.blackball.lv/en/articles/read/19676-optimizing-data-operations-with-odata-in-net8
Introduction According to the people who designed it, OData (the Open Data Protocol) is “the best way to Rest”. OData is essential, a way to try and standardize REST. It’s an open protocol that allows the creation and consumption of queryable and interoperable RESTful APIs in a simple and standard way. It describes...
#net8
#webapi
#odata
#guide
Sep 1, 2024 •
articles
➤
.NET
WPF vs WinForms – Making the right decision in 2024
https://sd.blackball.lv/en/articles/read/19821-wpf-vs-winforms-making-the-right-decision-in-2024
If you’re a developer faced with the decision of selecting between Windows Presentation Foundation (WPF) and Windows Forms (WinForms) commonly referred to as WPF vs WinForms, you may be eager to understand the distinctions between these two UI frameworks. In this comprehensive guide, we will offer an in-depth comparison of...
#winforms
#wpf
#desktop applications
#avalon
#maui
#comparison
#guide
Aug 27, 2024 •
articles
Minimal APIs in .NET 8: A simplified approach to build services
https://sd.blackball.lv/en/articles/read/19794-minimal-api-in-net-8-simplified-approach-to-build-services
Introduction Minimal APIs in .NET 8 make a grand entrance, redefining the way we build web services. If you’re curious about what makes Minimal APIs tick and how they can streamline your development process, let’s dive in with some engaging examples. The birth of minimalism in .NET Think of a time when we...
#net8
#api
#webservices
#minimal api
➤ Ads
Aug 27, 2024 •
articles
➤
.NET
How to implement multitenancy in ASP.NET Core with EF Core
https://sd.blackball.lv/en/articles/read/19792-how-to-implement-multitenancy-in-aspnet-core-with-ef-core
Multitenancy is a software architecture that allows a single instance of a software application to serve multiple customers, called tenants. Each tenant's data is isolated and remains invisible to other tenants for security reasons. This architecture is commonly used in Software as a Service (SaaS) applications, where multiple organizations or...
#aspnetcore
#entityframeworkcore
#multitenancy
#software architecture
Aug 26, 2024 •
articles
➤
.NET
Scheduling tasks with Cronos in .NET
https://sd.blackball.lv/en/articles/read/19670-scheduling-tasks-with-cronos-in-dotnet
Mastering Scheduled Tasks in .NET with Cronos Cronos is a task scheduling library for .NET that allows scheduling and executing tasks at specific times or intervals using the CRON pattern. In this article, I will present how to set up and use task scheduling in the background in a .NET 8 application. Prerequisites ...
#net8
#taskscheduling
#cronos
Aug 19, 2024 •
articles
Building real-time notifications in .NET Core 8 Minimal APIs using SignalR
https://sd.blackball.lv/en/articles/read/19787-building-real-time-notifications-in-net-core-8-minimal-apis-using-signalr
Introduction Building real-time applications has become essential in modern web development, especially for features like notifications, chat systems, and live updates. SignalR, a powerful library for ASP.NET, enables seamless real-time communication between server-side code and client-side web applications. In this guide, we’ll walk through creating real-time notifications in .NET Core 8...
#net8
#minimal api
#real time app
#real time notification
#signalr
Aug 19, 2024 •
articles
7 reasons why developers leave their jobs
https://sd.blackball.lv/en/articles/read/19786-7-reasons-why-developers-leave-their-jobs
Introduction In the ever-changing field of tech, it has become increasingly difficult for companies to hold on to their skilled developers. The high demand for proficient software engineers and programmers highlights the need to understand the reasons behind developer turnover. This article explores the common factors that lead developers to leave...
#job
#career
#leave job
#thought
Aug 19, 2024 •
articles
How to implement pagination in ASP.NET Core Web API? - Ultimate guide
https://sd.blackball.lv/en/articles/read/19662-how-to-implement-pagination-in-aspnet-core-web-api-ultimate-guide
In this guide, we will learn how to implement Advanced Pagination in ASP.NET Core WebApi with ease. Pagination is one of the most important concepts while building RESTful APIs. You would have seen several public APIs implementing this feature for better user experience and security. We will go in detail...
#netcore3
#aspnetcore
#webapi
#pagination
#guide
Aug 16, 2024 •
articles
The cost of ghosting: Why tech recruiters can't afford to ignore candidates
https://sd.blackball.lv/en/articles/read/19785-the-cost-of-ghosting-why-tech-recruiters-cannot-afford-to-ignore-candidates
Everyone hates being ghosted, but in the tech world, when we're talking recruiters and candidates, some of whom maybe some of the best in the world at what they do, it's next-level frustrating. For them, they spend days crafting the perfect application, researching your company, planning their approach, getting excited about...
#job
#career
#recruiting
#ghosting
#guide
Aug 15, 2024 •
articles
➤
PHP
How to build a simple REST API in PHP?
https://sd.blackball.lv/en/articles/read/19782-how-to-build-a-simple-rest-api-in-php
In this comprehensive tutorial, you’ll discover the step-by-step process to build a simple REST API using PHP and MySQL. In the modern-day web landscape, REST APIs are extensively utilized for accessing and manipulating data. By incorporating REST APIs into the web application, it will be easy for you to integrate with...
#php
#webapi
#restful
#tutorial
Aug 15, 2024 •
articles
➤
JavaScript
Fetch API in JavaScript with examples
https://sd.blackball.lv/en/articles/read/19649-fetch-api-in-javascript-with-examples
The JavaScript fetch() method is used to fetch resources from a server. It returns a Promise that resolves to the Response object representing the response to the request. The fetch method can also make HTTP requests - GET request (to get data) and POST request (to post data). Fetch also integrates...
#frontend
#javascript
#fetch
#guide
Aug 12, 2024 •
articles
Dockerizing ASP.NET Core applications: A comprehensive guide
https://sd.blackball.lv/en/articles/read/19400-dockerizing-aspnet-core-applications-a-comprehensive-guide
Containerizing and deploying ASP.NET Core applications Containerization has transformed the way applications are developed, deployed, and managed in the modern software industry. Docker, in particular, has become a pivotal tool, simplifying the packaging and deployment of applications, including ASP.NET Core applications. In this guide, we’ll dive into the world of containerization...
#aspnetcore
#docker
#dockercompose
#containerization
#guide
Aug 8, 2024 •
articles
ASP.NET Core integration testing best practices
https://sd.blackball.lv/en/articles/read/19777-aspnet-core-integration-testing-best-practices
Integration testing is a type of software testing essential for validating the interactions between different components of an application, ensuring they work together as expected. The main goal of integration testing is to identify any issues that may arise when these components interact with each other. What are these components? For example:...
#aspnetcore
#testing
#integration testing
#bestpractices
Aug 6, 2024 •
books
Web API Development with ASP.NET Core 8
https://sd.blackball.lv/en/books/19730-web-api-development-with-aspnet-core-8-2024
Develop web API applications using design patterns, advanced customization, and cutting-edge technologies, such as SignalR, gRPC, and GraphQL, while leveraging powerful cloud platforms and tools to accelerate development. Key features Gain proficiency in building modern ASP.NET Core web API applications. Develop the skills to effectively...
Year: 2024 • Author: Xiaodi Yan • Pages: 804 • Format: PDF • Size: 117,99 MB
#net8
#aspnetcore
#webapi
Aug 5, 2024 •
articles
The 5 C# PDF libraries every developer mostly use
https://sd.blackball.lv/en/articles/read/19660-the-5-csharp-pdf-libraries-every-developer-mostly-use
C# is a powerful programming language, widely used for software development across various domains. One crucial aspect of application development is dealing with PDFs, whether it's generating PDFs, extracting information from existing PDF documents, or manipulating PDF files. In this article, we'll explore five C# PDF generating libraries that every developer...
#csharp
#pdf
#libraries
#comparison
Aug 2, 2024 •
articles
Thinking like an Architect
https://sd.blackball.lv/en/articles/read/19763-thinking-like-an-architect
Key takeaways Architects aren't the smartest people on the team, they are the ones making everyone else smarter. An architect is an IQ amplifier. Riding the architect elevator means connecting the penthouse with the engine room. The value of a modern architect is measured...
#architecture
#software architect
Aug 2, 2024 •
articles
The Software Architect: Demystifying 18 Software Architecture patterns
https://sd.blackball.lv/en/articles/read/19740-the-software-architect-demystifying-18-software-architecture-patterns
In-depth overview of 18 essential Software Architecture design patterns. Table of contents What is Software Architecture? Why do we need software architecture? Software Architecture vs Software Design How to document architecture? 4C model 18 Software Architecture...
#software architecture
#designpatterns
#overview
Aug 1, 2024 •
articles
➤
Clean Architecture
How to structure .NET project with Clean Architecture?
https://sd.blackball.lv/en/articles/read/19659-how-to-structure-net-project-with-clean-architecture
Clean Architecture in practice. Clean Architecture is a popular approach to building software applications. A Clean Architecture defines clear boundaries between different application layers, resulting in improved maintainability. In addition, Clean Architecture approach aims to keep the business logic independent of any specific external frameworks or libraries, making it easier to migrate to...
#dotnet
#software architecture
#clean architecture
Jul 30, 2024 •
books
Web API Development for the Absolute Beginner
https://sd.blackball.lv/en/books/19732-web-api-development-for-the-absolute-beginner-2023
If you are a developer who wants to learn the basic skills of web and application programming interfaces (APIs) with .NET, this book is your complete introduction. The book takes a learn-by-experience approach. You will hit the ground running with a sample project that has everything you need to be...
Year: 2023 • Author: Irina Dominte • Pages: 423 • Format: PDF • Size: 11,61 MB
#net7
#webapi
Jul 26, 2024 •
articles
Compatibility of ASP.NET Web Forms and ASP.NET MVC
https://sd.blackball.lv/en/articles/read/19689-compatibility-of-aspnet-webforms-and-aspnet-mvc
As the pool of technology supporting Web Forms continues to shrink, you want to know if it’s a good idea to modernize your application by integrating ASP.NET Web Forms and ASP.NET MVC. Judging from our vast experience with clients making the same move, it is worth it. Done right, you can...
#aspnet
#webforms
#mvc
#compatibility
#migration
#legacy
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
Share page
If you liked this website and want to support me, you can
Reading now
Functional Decomposition
Goodbye Controllers: Building better Blazor web apps with Vertical Slices
Authentication and Authorization in .NET 8 Web API
Let’s talk about salary
Using ASP.NET Core SignalR with Vue to implement web notifications
Feature Flags in .NET Core
Must-know C# Code Smells and how to fix them
Exploring microservices Saga and Compensation patterns with C# example
A detailed 2024 comparison: Angular vs React vs Vue.js
Creating Custom C# Exception Types
Categories
Design Patterns
Software Engineering Workshop
Donation
➤
Boosty
Donate
to support the project
➤
Donorbox
Donate
GitHub account
Projects
Blackball
Geolocation Assistant
Mail Daemon
Codebase
Amerikas Auto
Transport Certification Center