This file contains 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
When reviewing code, you should strive to review a single commit per review. | |
# How do I review a single commit? | |
If you are using pull requests, the branch you're reviewing should only have one commit to merge into the target branch. | |
# How do I address review feedback if I can only have one commit in my branch? | |
Make your changes and _amend_ the commit, then force push with `git push -f`. |
This file contains 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
# Makefile for running Azurite with or without HTTPS. Requires the | |
# mkcert and azurite commands to be available. | |
# | |
# Usage: | |
# make - Run Azurite with HTTPS | |
# make https - Run Azurite with HTTPS | |
# make http - Run Azurite with HTTP | |
# make install - Create certificates using mkcert (runs automatically) | |
# make reset - Clear the Azurite database |
This file contains 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
var ParseError = from _ in Parse.String("error") select Level.Error; | |
var ParseWarning = from _ in Parse.String("warning") select Level.Warning; | |
var ParseLevel = ParseError.Or(ParseWarning); | |
var ParsePosition = | |
from lp in Parse.String("(") | |
from line in Parse.Number | |
from comma in Parse.String(", ") | |
from column in Parse.Number | |
from rp in Parse.String(")") | |
select new Position |
Kdiff3 versions 1.9.0 through at least 1.9.5 have a bug detecting Windows line endings, so they add extra line breaks to files.
Bug: https://bugs.kde.org/show_bug.cgi?id=442199
The latest version that doesn't have the bug is 1.8.5. Download from the KDE attic: https://download.kde.org/Attic/kdiff3/
This file contains 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
public class Person | |
{ | |
public int Id { get; set; } | |
public List<Book> AuthoredBooks { get; set; } | |
public List<Book> EditedBooks { get; set; } | |
} | |
public class Book | |
{ | |
public int Id { get; set; } |
This file contains 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
target: | |
ifeq ($(OS),Windows_NT) | |
powershell -NoProfile -Command "Get-Date" | |
else | |
date | |
endif |
This file contains 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
a |
This file contains 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
using System; | |
using System.Threading.Tasks; | |
using MassTransit; | |
namespace mttest | |
{ | |
class Program | |
{ | |
static async Task Main(string[] args) | |
{ |
NewerOlder