[alias]
lg = log --graph --pretty=format:'%C(yellow)%d%Creset %C(cyan)%h%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=short --all
This alias is going to generate an output like this:
| .highlight .hll { background-color: #ffffcc } | |
| .highlight { background: #000000; color: #ffffff } | |
| .highlight .c { color: #afafd7 } /* Comment */ | |
| .highlight .err { color: #ffffff } /* Error */ | |
| .highlight .esc { color: #ffffff } /* Escape */ | |
| .highlight .g { color: #ffffff } /* Generic */ | |
| .highlight .k { color: #87ffff } /* Keyword */ | |
| .highlight .l { color: #ffffff } /* Literal */ | |
| .highlight .n { color: #ffffff } /* Name */ | |
| .highlight .o { color: #ffffff } /* Operator */ |
| public class Message | |
| { | |
| [JsonConverter(typeof(SHA256StringJsonConverter))] | |
| public string Password { get; set; } | |
| } | |
| declare @empl table(name nvarchar(max) null, boss nvarchar(max) null); | |
| insert into @empl values ('Paul',null); | |
| insert into @empl values ('Luke','Paul'); | |
| insert into @empl values ('Kate','Paul'); | |
| insert into @empl values ('Marge','Kate'); | |
| insert into @empl values ('Edith','Kate'); | |
| insert into @empl values ('Pam','Kate'); | |
| insert into @empl values ('Carol','Luke'); | |
| insert into @empl values ('John','Luke'); |
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <jess@linux.com> | |
| # Last Updated: 2017-09-11 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: |
Yes, assuming all four machines' Dispense and Deposit methods share the same contract, all you need is to create an interface that they all implement:
public interface IMachine
{
void Dispense();
void Deposit();
}I hereby claim:
To claim this, I am signing this object:
| public class PurchaseItemValidator : IValidator<PurchaseItem> | |
| { | |
| private IEnumerable<IValidationRule<PurchaseItem>> _rules; | |
| public PurchaseItemValidator(IEnumerable<IValidationRule<PurchaseItem>> rules) | |
| { | |
| _rules = rules; | |
| } | |
| public IEnumerable<ValidationResult> Validate(PurchaseItem command) |
| public class NullAction | |
| { | |
| public static readonly Action DoNothing = () => { }; | |
| } | |
| //This allows you to do (callback ?? NullAction.DoNothing)() instead of (callback ?? () => { })() |
| You are now connected to Hernan from Amazon.com. | |
| Me: I'm a Prime Member and Free Shipping is not available for an item that is shipped and sold by amazon. | |
| Hernan:Hi there! I'm Hernan. I hope you're doing well! I'm really sorry about this issue, Pedro. I'd be glad to help you clarify this, What is the item you're referring to? | |
| Me:Hey, I'm trying to buy this set of books: <url> and I have a Prime Membership but I don't know why it's not available for Free Shipping | |
| Hernan:What is the address you're selecting? |