Web
Dynamics
Нажми на тег
.NET Core
Entity Framework
Elasticsearch
ORM
Active Directory
TypeScript
Bootstrap
XML
ADONET
TeamCity
Confluence
JavaScript
KISS
WCF
Web API
jQuery
.NET Framework
MariaDB
Angular
RabbitMQ
Responsive Web Design
Azure
WPF
Scrum
VB.NET
Blazor
PostgreSQL
MySQL
NPM
MongoDB
Git
Windows Server
Dapper
Design Patterns
React
Reverse Engineering
LINQ
Agile
UI/UX
Redis
Теги
Поддержка
Translate
Статистика
Реклама
Книги
Статьи
Видео
Новости
CMS
Репозитории
Портфолио
Заявка
Сообщения
RU
EN
Поиск по сайту
точное совпадение
статьи
книги
видео
новости
заметки
название
текст
описание
автор
год
теги
Результаты поиска
Найдено:
400
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
1 августа •
статьи
➤
Clean Architecture
How to structure .NET project with Clean Architecture?
https://sd.blackball.lv/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
30 июля •
книги
Web API Development for the Absolute Beginner
https://sd.blackball.lv/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...
Год: 2023 • Автор: Irina Dominte • Страниц: 423 • Формат: PDF • Размер: 11,61 MB
#net7
#webapi
29 июля •
статьи
Understanding OData: Building RESTful APIs with .NET
https://sd.blackball.lv/articles/read/19657-understanding-odata-building-restful-apis-with-dotnet
Introduction Open Data Protocol (OData) is a standard protocol for building and consuming RESTful APIs. It extends traditional REST-based data access techniques by providing a uniform way to expose, structure, and manipulate data. Originally developed by Microsoft, OData is widely adopted because it standardizes queries and interoperability between different systems and...
#net8
#csharp
#restful
#api
#odata
➤ Реклама
26 июля •
статьи
Compatibility of ASP.NET Web Forms and ASP.NET MVC
https://sd.blackball.lv/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
25 июля •
статьи
➤
Libraries for developers
Top recommended tools & libraries for .NET software development
https://sd.blackball.lv/articles/read/19757-top-recommended-tools-and-libraries-for-dotnet-software-development
Table of contents API design style gRPC GraphQL REST Database ...
#dotnet
#tools
#libraries
#overview
25 июля •
статьи
➤
.NET 8 Web API CRUD
Authentication and Authorization in .NET 8 Web API
https://sd.blackball.lv/articles/read/19656-authentication-and-authorization-in-net-8-web-api
Introduction In this article, we are going to discuss How to implement Authentication and Authorization in .NET 8 Web API. This is a continuation of.Net 8 series, so if you are new, Please have a look at my previous articles. Authentication and Authorization represent fundamentally different functions. In this article, we compare...
#net8
#webapi
#authentication
#jwt
22 июля •
статьи
➤
.NET
C# .NET 8 — Cache service with Distributed Cache
https://sd.blackball.lv/articles/read/19752-csharp-net-8-cache-service-with-distributed-cache
Introduction One common way to speed up our applications is by introducing a cache. Typically, the first option that comes to mind is using a MemoryCache (RAM) to save some data in order to speed up retrieval. This approach works well for monolithic applications. However, in the case of microservice solutions where...
#dotnet
#net8
#cache
#distributed cache
#redis
22 июля •
статьи
➤
.NET 8 Web API CRUD
Code First approach in .NET 8 API
https://sd.blackball.lv/articles/read/19655-ef-code-first-approach-in-net-8-api
Introduction In this article, we are going to discuss What Entity Framework is and How we can implement it in the .Net 8 project. This is a continuation of part 1, so if you are new to this article, please check my part 1 before proceeding. In this article, we are...
#net8
#webapi
#entityframeworkcore
#orm
21 июля •
статьи
.NET Core vs .NET Framework: Which one is right for your business?
https://sd.blackball.lv/articles/read/19749-net-core-vs-net-framework-which-one-is-right-for-your-business
Choosing between .NET Core and .NET Framework is a crucial decision for your business. Your choice between them can significantly impact the smoothness of your software projects and the success of your business. Both of these platforms have their own strengths and weaknesses. In this article, we explore the differences between .NET...
#netframework
#netcore
#comparison
#analytics
#guide
21 июля •
статьи
➤
.NET
.NET Core vs .NET Framework: Key differences, features, and more
https://sd.blackball.lv/articles/read/19746-net-core-vs-net-framework-key-differences-features-and-more
Jul 14, 2023 Some time ago, many professionals forecasted that .NET Core would be the upcoming successful thing, which would give an opportunity to developers for a large number of ideas/options in application development. Wherein, developers with good skills have a massive demand in this profession! So let us learn more...
#netframework
#netcore
#comparison
19 июля •
статьи
Write integration tests with .NET Aspire
https://sd.blackball.lv/articles/read/19745-write-integration-tests-with-net-aspire
Microsoft has recently introduced .NET Aspire, an opinionated stack for building resilient, observable, and configurable cloud-native applications with .NET 8+. Delivered through a collection of NuGet packages, .NET Aspire addresses specific cloud-native concerns, catering to the intricacies of modern, cloud-centric development. More detailed information can be found here and here. Given that...
#dotnet
#netaspire
#integration testing
18 июля •
статьи
➤
.NET 8 Web API CRUD
.NET 8 Web API CRUD Operations
https://sd.blackball.lv/articles/read/19654-net-8-web-api-crud-operations
Introduction Creating a CRUD (Create, Read, Update, Delete) API in .NET 8 with an In-memory collection is a common scenario in web development. In this article, we’ll walk through building a complete .NET 8 Web API with a real-world use case. Prerequisites Visual Studio or Visual Studio Code (with .NET 8 SDK installed). What...
#net8
#aspnetcore
#restapi
#webapi
#crud
17 июля •
статьи
Quickly convert a console app into a single-point web app in C#
https://sd.blackball.lv/articles/read/19743-quickly-convert-a-console-app-into-a-single-point-web-app-in-csharp
I found myself in need of quickly converting my C# console application into a web application, primarily, I was asked to expose our console app’s logic through an API with very little time to manage it. This article will cover on how I eventually exposed our console app on port 5005...
#netcore
#consoleapp
#generichost
#docker
#features
12 июля •
статьи
Svelte vs React 2024: Which is better?
https://sd.blackball.lv/articles/read/19669-svelte-vs-react-2024-which-is-better
Choosing between React and Svelte Over the past few years, there has been a constant explosion of new JavaScript libraries and frameworks - all promising to solve the complexities of building fast and efficient user interfaces (UIs) while maintaining a relatively smaller package size and improving performance. The constant emergence of new...
#frontend
#react
#svelte
#comparison
8 июля •
статьи
➤
.NET
File upload in ASP.NET Core 6 – detailed guide
https://sd.blackball.lv/articles/read/19650-file-upload-in-aspnet-core-6-detailed-guide
In this article, let’s learn about how to perform file upload in ASP.NET Core 6. The file for upload can be of any format like image (jpg, BMP, gif, etc), text file, XML file, CSV file, PDF file, etc. We will learn how to design a web page that allows...
#net6
#aspnetcore
#fileupload
#guide
5 июля •
статьи
What are large language models (LLMs)?
https://sd.blackball.lv/articles/read/19665-what-are-large-language-models-llms
A large language model is a type of artificial intelligence algorithm that uses deep learning techniques and massively large data sets to understand, summarize, generate and predict new content. The term generative AI also is closely connected with LLMs, which are, in fact, a type of generative AI that has...
#large language model
#llm
4 июля •
статьи
Using SVGs in React
https://sd.blackball.lv/articles/read/19648-using-svgs-in-react
Introduction In the world of making websites look good, pictures, especially images, are super important. They make up a big part (60%!) of what you see online, making websites more interesting and helping to share information. Among the many tools that developers use, React SVG stands out. It's like a superhero...
#frontend
#svg
#react
#guide
28 июня •
статьи
➤
Interview Questions
C# async/await interview questions and answers
https://sd.blackball.lv/articles/read/19663-csharp-async-await-interview-questions-and-answers
Are you preparing for an interview that will involve C# asynchronous programming? You’ve come to the right place! This comprehensive article covers a wide range of C# async-await interview questions that will test your understanding of the async-await pattern, along with solutions and examples to help you sharpen your skills. From...
#csharp
#asynchronous
#interview
27 июня •
статьи
Caching strategies in .NET Core
https://sd.blackball.lv/articles/read/19640-caching-strategies-in-net-core
Introduction Caching is a technique used to store frequently accessed data in a fast-access storage layer to improve application performance and reduce the load on backend systems. By serving data from the cache, we can avoid expensive database queries or API calls, resulting in faster response times and improved scalability. Problem statement Consider...
#dotnet
#csharp
#caching
#performance
#tips
#tricks
#guide
24 июня •
статьи
Monitoring and load testing ASP.NET Core application
https://sd.blackball.lv/articles/read/19636-monitoring-and-load-testing-aspnet-core-application
As a developer working on your current project, can you answer the following question: can your system at current state handle a new client with x1000 client compared to your existing user base? Will you know that running in production system has performance issues? In this post I’ll describe how you...
#aspnetcore
#testing
#loadtesting
#monitoring
#performance
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
Поделиться ссылкой
Если вам понравился этот сайт и вы хотите меня поддержать, вы можете
Читают сейчас
Доводим разработчика до выгорания: три простых шага
Вопросы с собеседований, которые означают не то, что вы думаете
9 главных трендов в разработке фронтенда в 2024 году
Проблема непонимания существующего кода, или Как руководству делать не надо
Что такое микросервисная архитектура и когда ее применять
Замыкания в JavaScript для начинающих
Performance review, ачивки и погоня за повышением грейда — что может причинить боль сотруднику IT-компании?
Остановись, мгновенье. Медленное программирование — тренд для уставших разработчиков
Soft skills: 18 самых важных навыков, которыми должен владеть каждый работник
Дюжина логических задач с собеседований
Категории
Design Patterns
Software Engineering Workshop
Поддержка
➤
Boosty
Donate
to support the project
➤
Donorbox
Поддержать
GitHub account
Проекты
Blackball
Geolocation Assistant
Codebase
Amerikas Auto
Transport Certification Center