Skip to content

Instantly share code, notes, and snippets.

View frasermclean's full-sized avatar
💭
Squashing bugs

Fraser McLean frasermclean

💭
Squashing bugs
View GitHub Profile
@frasermclean
frasermclean / add-managed-identity.sql
Last active December 3, 2023 00:26
SQL command to add managed identity to Azure SQL database
CREATE USER [your-app-or-group-name] FROM EXTERNAL PROVIDER;
ALTER ROLE db_datareader ADD MEMBER [your-app-or-group-name];
ALTER ROLE db_datawriter ADD MEMBER [your-app-or-group-name];
ALTER ROLE db_ddladmin ADD MEMBER [your-app-or-group-name];
GO
@frasermclean
frasermclean / dark+.jsonc
Created September 4, 2023 03:55
GitKraken Dark+ Theme
{
"meta": {
"name": "Dark+",
"scheme": "dark" // must be "light" or "dark"
},
"themeValues": {
// values applied to the entire app
"root": {
"red": "#D9413D",
"orange": "#DE9B43",