For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
This file contains hidden or 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
Set-Alias less "C:\Program Files\Git\usr\bin\less.exe" | |
function f($text, $files="*.*") | |
{ | |
findstr /spin $text $files | less | |
} |
This file contains hidden or 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
.md *{ | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} | |
.md h1::before { content: "# "; } |
This file contains hidden or 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
source ~/.git-completion.bash | |
source ~/.git-prompt.sh | |
alias edit='open -a visual\ studio\ code' | |
alias cd..='cd ..' | |
alias co='git checkout' | |
alias pull='git fetch;git pull' | |
alias chr='open -a Google\ Chrome' | |
alias projects='cd ~/Projects' |
This file contains hidden or 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
$apiKey = "Your API Key" | |
$OctopusURL = "Your Octopus URL" | |
$Header = @{ "X-Octopus-ApiKey" = $apiKey } | |
#Getting all machines given an Environment name | |
$EnvironmentName = Read-Host 'What environment do you want to wipe out?' | |
Write-Warning "You are about to remove ALL machines from the $EnvironmentName environment." | |
$confirm = Read-Host 'Are you sure you want to continue? Y/N' |
This file contains hidden or 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
'use strict'; | |
/* | |
*usage: <markdown ng:model="box.content"></markdown> | |
*/ | |
myApp.directive('markdown', function ($compile) { | |
var nextId = 0; | |
//Make converter only once to save a bit of load each time - thanks to ajoslin | |
var converter = new Markdown.Converter(); |