Semantic Vector Search for Mechanical Drawing Titles with .NET Core and Open-Source Models

Mechanical drawing titles often contain specialized terminology, abbreviations, and non-standard formats (e.g., "Potato Sorter DWG-001 Stainless Steel"). Traditional keyword-based search struggles with such data due to semantic ambiguity and varied user queries (e.g., "Potato Screening Machine"). Semantic search enhancement ...

Posted on Fri, 12 Jun 2026 16:08:47 +0000 by sudhakararaog

Multithreading in .NET Core

Process: A process is not a physical entity; it is a computer concept (virtual) that represents the collection of all computing resources (CPU, memory, disk, network, etc.) used when a program is running. Thread: Also a computer concept (virtual). It is the smallest execution flow of a process (any operation response requires an execution flow) ...

Posted on Sat, 06 Jun 2026 17:54:26 +0000 by eduard

Implementing a Custom PipelineFilter in SuperSocket 2.0

This article walks through the implementation of a custom PipelineFilter in SuperSocket 2.0. The development environment is Windows 10, Visual Studio 2019, .NET Core 3.1, and SuperSocket 2.0.0-beta.8. 1. Project Creation Create a .NET Core console application using Visual Studio 2019 targeting .NET Core 3.1, and add the SuperSocket (2.0.0-beta. ...

Posted on Thu, 28 May 2026 18:30:21 +0000 by trippyd

Implementing Dependency Injection with Autofac in .NET Core

To integrate Autofac with .NET Core: Install the Autofac.Extensions.DependencyInjection NuGet package Replace the built-in DI contanier in Program.cs (Note: This transfers all existing registrations to Autofac) // Replace default DI container with Autofac builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory()); Service R ...

Posted on Mon, 18 May 2026 15:45:01 +0000 by johnoc

Streamlining WeChat API Integration Using Magicodes.Wx.Sdk and WebApiClientCore

The Magicodes.Wx.Sdk aims to provide the most straightforward approach to handling WeChat integrations, covering Official Accounts, Mini Programs, and Enterpirse WeChat, including support for Abp VNext modules. This guide focuses on how to contribute to the SDK by defining new API interfaces efficiently. Core Dependency: WebApiClientCore The si ...

Posted on Tue, 12 May 2026 17:18:31 +0000 by doddatika