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
// Just before switching jobs: | |
// Add one of these. | |
// Preferably into the same commit where you do a large merge. | |
// | |
// This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
// and then it quickly escalated into more and more evil suggestions. | |
// I've tried to capture interesting suggestions here. | |
// | |
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
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
figlet -c <PROJECT_NAME_HERE> | |
alias please=sudo | |
echo -e "\n" | |
RED="\033[1;31m" | |
_NC='\033[0m' | |
echo -e "${RED}@@@@@@@@@@@@ WARNING @@@@@@@@@@@@@@@@" | |
echo -e "@ THIS IS A PRODUCTION DROPLET @" | |
echo -e "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n\nREMEMBER TO MAKE SNAPSHOTS${_NC}" |
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 interface ITrackable | |
{ | |
DateTime CreatedAt { get; set; } | |
DateTime UpdatedAt { 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
var cascadeFKs = modelBuilder.Model.GetEntityTypes() | |
.SelectMany(t => t.GetForeignKeys()) | |
.Where(fk => !fk.IsOwnership && fk.DeleteBehavior == DeleteBehavior.Cascade); | |
foreach (var fk in cascadeFKs) | |
fk.DeleteBehavior = DeleteBehavior.Restrict; | |
base.OnModelCreating(modelBuilder); |
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 cascadeFKs = modelBuilder.Model.GetEntityTypes() | |
.SelectMany(t => t.GetForeignKeys()) | |
.Where(fk => !fk.IsOwnership && fk.DeleteBehavior == DeleteBehavior.Cascade); | |
foreach (var fk in cascadeFKs) | |
fk.DeleteBehavior = DeleteBehavior.Restrict; | |
base.OnModelCreating(modelBuilder); |
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
# Paste your /simc input here | |
# Races for Both Factions | |
profileset."Pandaren"+="race=pandaren" | |
# Horde Races |