Skip to content

Instantly share code, notes, and snippets.

View Sergio1C's full-sized avatar
💭
Sometimes I'm on GitHub

Sergey Skrynnik Sergio1C

💭
Sometimes I'm on GitHub
View GitHub Profile
@Sergio1C
Sergio1C / EFCoreEnums.csproj
Last active June 11, 2022 12:30 — forked from paolofulgoni/EFCoreEnums.csproj
Enums in EF Core
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<RootNamespace>EFCoreEnums</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.6" />
@Sergio1C
Sergio1C / TextAnalizer.h
Created March 11, 2017 20:03
TextAnalizer
#ifndef TEXTANALIZER
#define TEXTANALIZER
#include <fstream>
#include <map>
#include <string>
#include <algorithm>
#include <functional> //greater
class TextAnalizer
@Sergio1C
Sergio1C / skiplist.h
Created September 2, 2016 19:01 — forked from unsuthee/skiplist.h
C++ Implementation of Skiplist
///////////////////////////////////////////////////////////////////////////////
#ifndef _SKIPLIST_H_
#define _SKIPLIST_H_
#include <iostream>
#include <sstream>
///////////////////////////////////////////////////////////////////////////////