Skip to content

Instantly share code, notes, and snippets.

View pfedotovsky's full-sized avatar
Vibe Coding

Pavel Fedotovsky pfedotovsky

Vibe Coding
View GitHub Profile
@pfedotovsky
pfedotovsky / .gitconfig
Created September 23, 2018 10:41
Helpful git config options
[core]
editor = code --wait # set VS Code as default editor
quotepath = false # display cyrillic names properly
autocrlf = false # Windows only projects. Don't convert LF to CRLF and vice versa during commit & checkout. Read carefully https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration
[pull]
rebase = true # pull = 'fetch + rebase' instead of 'fetch + merge'
[alias]
co = checkout # 'git co' instead of 'git checkout'
st = status # 'git st' instead of 'git status'
[fetch]
@pfedotovsky
pfedotovsky / PlainJsonDeserializer
Created July 17, 2018 13:05
MassTransit extension to support messages from other systems
namespace RabbitMqClient
{
using System;
using System.IO;
using System.Net.Mime;
using System.Runtime.Serialization;
using System.Text;
using GreenPipes;