Web
Dynamics
Click on the tag item
Elasticsearch
Windows Server
Reverse Engineering
C#
CSS3
Redis
Entity Framework
PHP
Kanban
SignalR
ADONET
jQuery
SQLite
DRY
GraphQL
Design Patterns
KISS
WCF
React
Web API
Blazor
ASP.NET
Automation Software
RabbitMQ
UI/UX
Scrum
Agile
Windows Forms
MySQL
YAGNI
CI/CD
JavaScript
REST
Grafana
NPM
MariaDB
MongoDB
Jira
Active Directory
Performance Optimization
Favorites
History
Tags
Donate
Translate
Statistics
Ads
Books
Articles
Video
News
Developer
Repositories
Portfolio
Application
Messages
RU
EN
Site search
Looking for a job
Exact match
articles
books
video
news
notes
title
text
description
author
year
tags
Search results
Found:
431
graphql
(31) •
api
(426)
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
Jun 1, 2024 •
articles
➤
ASP.NET 8 token authentication for Web API and React with integration testing
ASP.NET 8 Token Authentication for Web API and React with Integration Testing (Part 1: API)
https://sd.blackball.lv/en/articles/read/19703
Welcome to the first instalment of our comprehensive guide on securing your web applications with token authentication using ASP.NET Identity in .NET 8. In this part, we delve into the backbone of our authentication system — the Web API. We will walk you through the initial setup of your ASP.NET...
#aspnetcore
#jwt
#identity
#authentication
#authorization
Jun 1, 2024 •
articles
ASP.NET 8 token authentication for Web API and React with integration testing (0)
https://sd.blackball.lv/en/articles/19702
Application is built on a clear, modular structure, comprised of four key projects: API, Data, Service, and Web. This structure not only promotes a clean separation of concerns but also ensures a secure, efficient, and user-friendly application....
May 31, 2024 •
articles
Applicant Tracking Systems: Everything you need to know
https://sd.blackball.lv/en/articles/read/19646-applicant-tracking-systems-everything-you-need-to-know
Learn how applicant tracking systems (ATS) work, how they impact your job search, and how to create an ATS-friendly resume that will get you more job interviews. Most companies today, including over 97 percent of Fortune 500 companies, rely on an applicant tracking system, or ATS, to help them hire new...
#job
#ats
#resume
#recruitment
#hiring
#guide
➤ Ads
May 30, 2024 •
articles
Turbocharging ASP.NET Core applications: A deep dive into performance optimizations
https://sd.blackball.lv/en/articles/read/19547-turbocharging-aspnet-core-applications-a-deep-dive-into-performance-optimizations
Performance is paramount when developing web applications. A slow, unresponsive application results in poor user experience, losing users, and possibly business. For ASP.NET Core developers, there are many techniques and best practices to optimize application performance. Let’s explore some of these approaches in this article. Understanding performance bottlenecks When we talk about...
#aspnetcore
#performance
#optimizations
#guide
May 27, 2024 •
articles
30 вопросов на собеседовании фронтенд разработчика
https://sd.blackball.lv/en/articles/read/19692-30-voprosov-na-sobesedovanii-frontend-razrabotchika
Уверены, что вопросы на собеседовании frontend — настоящая боль? Мы взяли на себя поиск наиболее популярных и дали на них развёрнутые ответы. Казалось бы, вопросы на собеседовании frontend разработчика Junior не должны отличаться от стандартных задачек с IT-сайтов. Даже мы приводили 5 простых тестовых заданий для младшего фронтенд-программиста. Но складывается впечатление, что...
#интервью
#собеседование
#фронтенд
#javascript
May 24, 2024 •
articles
The 50 best CI/CD tools all DevOps teams should know in 2024
https://sd.blackball.lv/en/articles/read/19645-the-50-best-ci-cd-tools-all-devops-teams-should-know-in-2024
Discover the best CI/CD tools for your stack — including tools to help manage and optimize your continuous integration and delivery pipelines. The modern software development lifecycle comprises two key phases: continuous integration (CI) and continuous delivery or deployment (CD). In both stages, automation reduces manual labor, minimizing human errors. That enables...
#devops
#ci cd
#tools
#guide
May 23, 2024 •
articles
Schedule Cron jobs in .NET using Hangfire
https://sd.blackball.lv/en/articles/read/19535-schedule-cron-jobs-in-net-using-hangfire
If you’re a .NET developer, chances are you’ve had to deal with scheduling tasks at some point. Cron jobs are a common way to do this, but they can be tedious to set up and maintain. Enter Hangfire, a powerful and easy-to-use library that simplifies scheduling Cron jobs in .NET....
#dotnet
#backgroundjobs
#hangfire
May 20, 2024 •
articles
➤
Clean Architecture
Understanding Clean Architecture with ASP.NET
https://sd.blackball.lv/en/articles/read/19545-understanding-clean-architecture-with-aspnet
Clean Architecture is a software design philosophy that promotes the separation of concerns and the creation of a modular and maintainable codebase. It was introduced by Robert C. Martin, also known as Uncle Bob, and has gained popularity in the software development community. In this article, we will explore the principles...
#aspnet
#cleanarchitecture
May 19, 2024 •
articles
Нагрузочное тестирование: что? где? когда?
https://sd.blackball.lv/en/articles/read/19671-nagruzochnoe-testirovanie
После весны 2020 года слово “тестирование” приобрело некоторые неожиданные значения и неоднозначные коннотации — пожалуй, везде, кроме IT. В нашей сфере без него никуда — и так было всегда. Видов тестирования ПО — множество: модульное, функциональное, А/В-тестирование, интеграционное, нагрузочное и т д. И на наш взгляд, как раз последнее является как...
#программирование
#тестирование
#производительность
May 17, 2024 •
articles
➤
Software Testing
API testing in Software Development
https://sd.blackball.lv/en/articles/read/19548-api-testing-in-software-development
What is API testing? First, we need to know about API. API stands for Application Programming Interface. That’s all. Then, you may ask: what is its real meaning? So, let’s go with Application Programming first. Application programming usually has 3 layers: User Interface, Business Logic, and Data Storage. Did you notice it, the “interface”...
#api
#testing
May 16, 2024 •
articles
You have been doing pagination wrong in .NET 6
https://sd.blackball.lv/en/articles/read/19459-you-have-been-doing-pagination-wrong-in-net-6
Pagination is in front of us everyday yet we take it for granted kind of like we do with most things. It’s what chunks huge lists of data (blog posts, articles, products) into pages so we can navigate through data. This is how you did pagination until this point. using System; public class...
#net6
#csharp
#linq
#pagination
May 14, 2024 •
articles
A comprehensive overview of Large Language Models
https://sd.blackball.lv/en/articles/read/19666-a-comprehensive-overview-of-large-language-models
In recent years, large language models have emerged as groundbreaking advancements in natural language processing, revolutionizing how machines understand and generate human-like text. With their ability to process and comprehend vast amounts of unstructured data, these models have opened new possibilities for applications across various industries. This article delves into the...
#large language model
#llm
#overview
May 13, 2024 •
articles
Creating functions that return multiple values in C#
https://sd.blackball.lv/en/articles/read/19543-creating-functions-that-return-multiple-values-in-csharp
Creating functions that return multiple values in C# is an essential skill, especially when working with .NET Core applications. This article delves into various advanced strategies to return multiple values from functions, providing a deeper understanding of each approach with practical, real-world examples. 1. Using Tuples Problem Statement: You need to return...
#dotnet
#csharp
#tips
May 10, 2024 •
articles
➤
Unit of Work
Driving consistent behaviour in .NET using the Unit of Work pattern
https://sd.blackball.lv/en/articles/read/19661-driving-consistent-behaviour-in-dotnet-using-the-unit-of-work-pattern
A guide to implementing the Unit of Work pattern in an Entity Framework .NET application and using it to drive additional behaviours. In this article we will explore how the Unit of Work pattern can be used to improve data consistency and drive additional cross-cutting behaviours in our .NET applications. We...
#dotnet
#repository pattern
#unitofwork
May 10, 2024 •
articles
Software Development for Internet of Things (IoT) applications
https://sd.blackball.lv/en/articles/read/19528-software-development-for-internet-of-things-iot-applications
The Internet of Things (IoT) has become a pervasive technology with a significant impact on various industries. IoT refers to the network of interconnected physical devices embedded with sensors, software, and connectivity, enabling them to collect and exchange data. The growth of IoT applications has revolutionized sectors such as healthcare, manufacturing,...
#iot
#software development
May 9, 2024 •
articles
Performance benchmarks of PostgreSQL .NET with Npgsql, Dapper, and Entity Framework Core
https://sd.blackball.lv/en/articles/read/19536-performance-benchmarks-of-postgresql-net-with-npgsql-dapper-and-entity-framework-core
In a previous blog post, I showed you how to use PostgreSQL in C# with Npgsql, Dapper, and Entity Framework Core. But if you’re going to use one of them, it’s probably a good idea to make sure you’re not choosing a library that has really bad performance. Or at...
#database
#postgresql
#orm
#performance
#benchmark
May 6, 2024 •
articles
.NET performance analysis: Newtonsoft.Json vs System.Text.Json in .NET 8
https://sd.blackball.lv/en/articles/read/19529-net-performance-analysis-newtonsoftjson-vs-systemtextjson-in-net-8
Introduction As a passionate .NET developer, I find myself continuously seeking opportunities to expand my understanding of the .NET ecosystem. In this, my first article ever, I embark on a journey to explore the intricacies of .NET performance, with a specific focus on two prominent JSON frameworks: Newtonsoft.Json and Microsoft’s System.Text.Json....
#net8
#json
#performance
#comparison
May 2, 2024 •
articles
.NET 8 Web API CRUD (0)
https://sd.blackball.lv/en/articles/19653-net-8-web-api-crud
...
May 2, 2024 •
articles
➤
.NET
Implementing advanced long polling in .NET 6
https://sd.blackball.lv/en/articles/read/19534-implementing-advanced-long-polling-in-net-6
Long polling is a server-push technique used in web applications to efficiently update clients with new information. Unlike traditional polling, long polling keeps the request open until the server has new data to send. This method is beneficial when you want to reduce the latency for data updates without overloading...
#net6
#longpolling
Apr 25, 2024 •
articles
How to implement feature flag in ASP.NET Core Blazor
https://sd.blackball.lv/en/articles/read/19538-how-to-implement-feature-flag-in-aspnet-core-blazor
Follow me on Twitter, happy to take your suggestions on topics or improvements. Introduction Many third-party feature flagging services are available, or your internal team could develop its own feature flag service. For those who prefer standardization, following the OpenFeature guidelines is also an option. However, none of these solutions may perfectly...
#net8
#aspnetcore
#blazor
#featureflag
«
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
Minimal APIs in .NET 8: A simplified approach to build services
Pagination in a .NET Web API with EF Core
Attributes and Decorators in C#
The essential guide to creating custom context menus in JavaScript
Dead End
Add a React app to your ASP.NET Core application
Real-time ASP.NET Core Web Apps with SignalR
Scheduling background jobs with Quartz.NET
Using Microservices in .NET Core and Docker container
Using SQLite with Entity Framework Core in C#
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