This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```csharp | |
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| using System.Collections.Concurrent; | |
| using System.Text.Json; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using Microsoft.Extensions.Hosting; | |
| using Microsoft.Extensions.Logging; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```csharp | |
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| #nullable enable | |
| using System.ComponentModel; | |
| using System.Reflection; | |
| using System.Runtime.CompilerServices; | |
| using System.Text; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author: Vladyslav Zaiets | https://sarmkadan.com | |
| # CTO & Software Architect | |
| """ | |
| Async Telegram bot framework built on aiohttp. | |
| Features: | |
| - Decorator-based command & callback routing | |
| - Onion-style middleware chain | |
| - Finite-state machine (FSM) for multi-step conversations |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| // | |
| // Distributed locking with Redis and SQLite backends for .NET 10 | |
| // Features: auto-renewal, fencing tokens, deadlock/stale-lock detection | |
| // | |
| // NuGet dependencies: | |
| // StackExchange.Redis >= 2.8 | |
| // Microsoft.Data.Sqlite >= 9.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| /** | |
| * Lightweight Claude API client β zero dependencies. | |
| * Works in Node.js 18+ and modern browsers (native fetch + ReadableStream). | |
| * Features: streaming SSE, tool use with agentic loop, multi-turn conversations. | |
| * | |
| * @module claude-client | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| #nullable enable | |
| using System.Data.Common; | |
| using System.Diagnostics; | |
| using System.Net; | |
| using System.Runtime.InteropServices; | |
| using System.Text.Json; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| using System.Collections.Concurrent; | |
| using System.Text.Json; | |
| using System.Text.Json.Serialization; | |
| namespace EventSourcing; | |
| // ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```csharp | |
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| using System.Net.Http.Headers; | |
| using System.Runtime.CompilerServices; | |
| using System.Text; | |
| using System.Text.Json; | |
| using System.Text.Json.Serialization; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```csharp | |
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| using System.Collections.Frozen; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Text.Json; | |
| using System.Text.Json.Serialization; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```csharp | |
| // Author: Vladyslav Zaiets | https://sarmkadan.com | |
| // CTO & Software Architect | |
| using System.Collections.Concurrent; | |
| using System.Security.Claims; | |
| using Microsoft.AspNetCore.Authorization; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.SignalR; | |
| using Microsoft.Extensions.DependencyInjection; |
NewerOlder