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
.shadow { | |
box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | |
} | |
.shadow-md { | |
box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | |
} | |
.shadow-lg { | |
box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.2), |
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
/* Auto hide bookmark bar */ | |
#browser:not(.color-behind-tabs-off) .toolbar-addressbar { | |
background: inherit; | |
} | |
#browser.tabs-top.address-top.bookmark-bar-top .toolbar-addressbar, | |
#browser.tabs-top.address-bottom.bookmark-bar-bottom .toolbar-addressbar, | |
#browser.tabs-top.address-bottom.bookmark-bar-top .toolbar-addressbar, | |
#browser.tabs-bottom.address-top.bookmark-bar-top .toolbar-addressbar, |
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
//The global script scope | |
def ctx = context(scope: scriptScope()) | |
//What things can be on the script scope | |
contributor(ctx) { | |
method(name: 'pipeline', type: 'Object', params: [body: Closure]) | |
property(name: 'params', type: 'org.jenkinsci.plugins.workflow.cps.ParamsVariable') | |
property(name: 'env', type: 'org.jenkinsci.plugins.workflow.cps.EnvActionImpl.Binder') | |
property(name: 'currentBuild', type: 'org.jenkinsci.plugins.workflow.cps.RunWrapperBinder') | |
property(name: 'scm', type: 'org.jenkinsci.plugins.workflow.multibranch.SCMVar') |
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 window title | |
PS1='\[\033]0;Git-Bash: ${PWD//[^[:ascii:]]/?}\007\]' | |
PS1="$PS1"'\n' # new line | |
PS1="$PS1"'\[\033[32m\]' # change to green | |
PS1="$PS1"'➜ ' # ➜ | |
PS1="$PS1"'\[\033[0m\]' # change color | |
PS1="$PS1"'\[\033[34m\]' # change to green | |
PS1="$PS1"' \w' # change color | |
PS1="$PS1"'\[\033[0m\]' # change color # for detection by MSYS2 SDK's bash.basrc |
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
package main | |
import ( | |
"database/sql/driver" | |
"encoding/json" | |
"github.com/jinzhu/gorm" | |
_ "github.com/lib/pq" | |
) |
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
<!DOCTYPE html> | |
<html data-darkreader-mode="dynamic" data-darkreader-scheme="dark"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<title>Accidental Quality</title> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,600&display=swap'); |
OlderNewer