How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
curl -kso /dev/null -H "Pragma: no-cache" -H "Cache-Control: no-cache" -w "DNS: %{time_namelookup}, \ | |
SSL: %{time_appconnect}, \ | |
TCP: %{time_connect}, \ | |
TTFB: %{time_starttransfer}, \ | |
TOTAL: %{time_total}\n" https://www.parcelhero.com |
git ls-files | xargs cat | wc -l | |
to see breakdown use | |
git ls-files | xargs wc -l |
{ | |
"vars": { | |
"@gray-base": "#000", | |
"@gray-darker": "lighten(@gray-base, 13.5%)", | |
"@gray-dark": "lighten(@gray-base, 20%)", | |
"@gray": "lighten(@gray-base, 33.5%)", | |
"@gray-light": "lighten(@gray-base, 46.7%)", | |
"@gray-lighter": "lighten(@gray-base, 93.5%)", | |
"@brand-primary": "darken(#428bca, 6.5%)", | |
"@brand-success": "#5cb85c", |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.highlight | |
{ | |
background-color:yellow; | |
} |
Custom Script | |
"%env.TEAMCITY_GIT_PATH%" fetch | |
"%env.TEAMCITY_GIT_PATH%" checkout dev | |
"%env.TEAMCITY_GIT_PATH%" config --local user.email "[email protected]" | |
"%env.TEAMCITY_GIT_PATH%" config --local user.name "Auto Merge" | |
"%env.TEAMCITY_GIT_PATH%" merge --no-commit %teamcity.build.branch% |
<?xml version="1.0" encoding="utf-8"?> | |
<Project DefaultTargets="PrepareStaticContent" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<!-- Passed in Parameters --> | |
<configuration></configuration> | |
<workingDir></workingDir> | |
<buildNumber></buildNumber> | |
<buildViews>false</buildViews> | |
<minifyJs>true</minifyJs> | |
<TargetsDirectory></TargetsDirectory> |
http://share.plainly.co/2A371j3Z1w1J | |
const style = { | |
'margin-right' : 10 | |
} | |
const listItemStyle = { | |
border: '1px solid #ddd' | |
} |
# Following needs to be set in your Codeship environment variables section: | |
# AZURE_REPO_URL e.g: https://username:[email protected]:443/site.git | |
# GITMAIL [email protected] | |
# GITUSER eg. codeship | |
# Config git | |
git config user.email "$GITMAIL" | |
git config user.name "$GITUSER" |