Skip to content

Instantly share code, notes, and snippets.

View nesterenko-kv's full-sized avatar
🇺🇦
Glory to Ukraine!

Kostiantyn Nesterenko nesterenko-kv

🇺🇦
Glory to Ukraine!
View GitHub Profile
@nesterenko-kv
nesterenko-kv / InternalHexTables.cs
Created November 2, 2022 20:00
ObjectId review
using System.Runtime.InteropServices;
namespace WishDish.Primitives.Internal;
internal static unsafe class InternalHexTables
{
internal const ushort MaximalChar = 103;
internal static readonly uint* TableToHex;
internal static readonly byte* TableFromHexToBytes;
@nesterenko-kv
nesterenko-kv / stackoverflow.txt
Last active October 27, 2019 10:37
uBlacklist SO clones list
*://qaru.site/*
*://forundex.ru/*
*://askvoprosy.com/*
*://stackoverrun.com/*
*://switch-case.ru/*
*://www.experts-exchange.com/*
*://www.pinterest.com/*
*://www.pinterest.ru/*
*://dapper-tutorial.net/*
*://entityframeworkcore.com/*
using System;
namespace Infrastructure.ApiClients.Http
{
public class HttpCallException : Exception
{
public HttpCallException(int? statusCode, string message) : base(message)
{
StatusCode = statusCode;
}