Skip to content

Instantly share code, notes, and snippets.

View umerfaruk's full-sized avatar

Omar Faruk umerfaruk

  • JustEat
  • London, United Kingdom
View GitHub Profile
@BanksySan
BanksySan / Fiddler Filter list
Last active March 25, 2019 14:32
Remove background noise from Fiddler
*.1drv.com:443;
*.1drv.com;
*.2mdn.net:443;
*.2mdn.net;
*.adlooxtracking.com:443;
*.adlooxtracking.com;
*.adnxs.com:443;
*.adnxs.com;
*.adobe.com:443;
*.adobe.com;
@kidchenko
kidchenko / 201704121800_CreateAspNetCoreIdentity.cs
Created April 24, 2017 23:10
ASP .NET Identity Core + FluentMigrator
Create.Table("AspNetRoles")
.WithColumn("Id").AsString().PrimaryKey("PK_AspNetRoles").NotNullable()
.WithColumn("ConcurrencyStamp").AsString().Nullable()
.WithColumn("Name").AsString(256).NotNullable()
.WithColumn("NormalizedName").AsString(256).Nullable()
.Indexed("RoleNameIndex");
Create.Table("AspNetUserTokens")
.WithColumn("UserId").AsString().PrimaryKey("PK_AspNetUserTokens").NotNullable()