# local
git branch -d {{branch-name}}
# remote
git push origin :{{branch-name}}
| // less variables for brand-colors from the website: brandcolors.com | |
| $aetna: #d20962; | |
| $aetna-1: #00bce4; | |
| $aetna-2: #7ac143; | |
| $aetna-3: #00a78e; | |
| $aetna-4: #f47721; | |
| $aetna-5: #d20962; | |
| $aetna-6: #7d3f98; |
| Public Function GetPropertyValues(obj As Object) As String | |
| Dim json As JObject = JObject.Parse("{}") | |
| Dim t As Type = obj.GetType() | |
| Dim props() As Reflection.PropertyInfo = t.GetProperties() | |
| For Each prop In props | |
| If prop.GetIndexParameters().Length = 0 Then | |
| json.Item(prop.Name) = JToken.FromObject(prop.GetValue(obj, Nothing)) | |
| End If |
| const b64toBlob = async (b64Data, contentType = 'application/octet-stream') => { | |
| const url = `data:${contentType};base64,${b64Data}`; | |
| const response = await fetch(url); | |
| const blob = await response.blob(); | |
| return blob; | |
| }; | |
| // https://stackoverflow.com/a/36183085/1167442 |
| "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -pef "connectionStrings" "C:\inetpub\wwwroot\ProjectName" |
| .profile-pic { | |
| float: left; | |
| width: 250px; | |
| @include respond-to(xs) { | |
| width: 100%; | |
| } | |
| @include respond-to(sm) { | |
| width: 125px; | |
| } |
| [ | |
| "#af5749", | |
| "#cae4e3", | |
| "#fce493", | |
| "#e8f8e3", | |
| "#af99b0", | |
| "#fcf8e3" | |
| ] |
# local
git branch -d {{branch-name}}
# remote
git push origin :{{branch-name}}
# from fully committed {{new-branch}}
git checkout {{main-branch}}
git pull origin {{main-branch}}
git merge {{new-branch}}
git push origin {{main-branch}}
| @BlueNights:rgb(53, 59, 72); | |
| @BlueberrySoda:rgb(127, 143, 166); | |
| @ChainGangGrey:rgb(113, 128, 147); | |
| @DownloadProgress:rgb(76, 209, 55); | |
| @Electromagnetic:rgb(47, 54, 64); | |
| @HarleyDavidsonOrange:rgb(194, 54, 22); | |
| @HintofPensive:rgb(220, 221, 225); | |
| @LynxWhite:rgb(245, 246, 250); | |
| @MattPurple:rgb(140, 122, 230); | |
| @MazarineBlue:rgb(39, 60, 117); |