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
| # Requires docker 17.06 to build | |
| # ---- | |
| # Install Maven | |
| FROM openjdk:8-jdk-alpine AS maven | |
| RUN apk add --no-cache curl tar bash | |
| ARG MAVEN_VERSION=3.3.9 | |
| ARG USER_HOME_DIR="/root" | |
| RUN mkdir -p /usr/share/maven && \ | |
| curl -fsSL http://apache.osuosl.org/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz | tar -xzC /usr/share/maven --strip-components=1 && \ |
This file has been truncated, but you can view the full file.
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
| // prefer default export if available | |
| const preferDefault = m => m && m.default || m | |
| exports.components = { | |
| "component---src-templates-post-js": require("gatsby-module-loader?name=component---src-templates-post-js!/Users/docwhat/Play/WebSites/docwhat/src/templates/post.js"), | |
| "component---src-templates-page-js": require("gatsby-module-loader?name=component---src-templates-page-js!/Users/docwhat/Play/WebSites/docwhat/src/templates/page.js"), | |
| "component---cache-dev-404-page-js": require("gatsby-module-loader?name=component---cache-dev-404-page-js!/Users/docwhat/Play/WebSites/docwhat/.cache/dev-404-page.js"), | |
| "component---src-pages-all-js": require("gatsby-module-loader?name=component---src-pages-all-js!/Users/docwhat/Play/WebSites/docwhat/src/pages/all.js"), | |
| "component---src-pages-index-js": require("gatsby-module-loader?name=component---src-pages-index-js!/Users/docwhat/Play/WebSites/docwhat/src/pages/index.js"), | |
| "component---src-pages-pi-index-js": require("gatsby-module-loader?name=component---sr |
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
| @font-face { | |
| font-family: 'Nerd FiraCode Retina'; | |
| src: local('Nerd FireCode Retina'), url('https://raw.githubusercontent.com/ryanoasis/nerd-fonts/2.0.0/patched-fonts/FiraCode/Retina/complete/Fura%20Code%20Retina%20Nerd%20Font%20Complete.otf') format('opentype'); | |
| } | |
| * { | |
| text-rendering: optimizeLegibility; | |
| } |
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
| #!groovy | |
| node { | |
| stage('desired') { | |
| // This is what I'd like to be able to do... Though there are lots of other extenions that are useful, like | |
| // CleanBeforeCheckout and PruneStaleBranch | |
| // Don't forget submodule configuration! | |
| scm.extenions = scm.extensions + [[$class: 'CloneOption', noTags: true, reference: '', shallow: true]] | |
| checkout scm | |
| } |
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
| /zsh-autosuggestions/ | |
| /zsh-syntax-highlighting/ |
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
| -- Variation on | |
| -- http://zach.in.tu-clausthal.de/software/Move%20Windows%20To%20Main%20Display.scpt.gz | |
| -- | |
| -- Differences: | |
| -- All windows that are more or less off-screen (no matter how much) are moved back | |
| -- so that they are completely on screen (if possible). | |
| -- Gabriel Zachmann, Jan 2008 | |
| -- List of processes to ignore (example {"xGestures", "OtherApp", ...}) | |
| property processesToIgnore : {"Typinator", "Google Chrome Helper"} |
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
| install: --no-document | |
| update: --no-document |
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
| PS C:\Users\Administrator> choco install dotnet3.5 -debug -yes | |
| Chocolatey is running on Windows v 6.3.9600.0 | |
| Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old". | |
| Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old". | |
| Command line: "C:\ProgramData\chocolatey\choco.exe" install dotnet3.5 -debug -yes | |
| Received arguments: install dotnet3.5 -debug -yes | |
| NOTE: Hiding sensitive configuration data! Please double and triple | |
| check to be sure no sensitive data is shown, especially if copying | |
| output to a gist for review. |
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
| Style/MultilineOperationIndentation: | |
| EnforcedStyle: indented | |
| Style/FileName: | |
| Enabled: false | |
| Metrics/AbcSize: | |
| Enabled: false | |
| Metrics/LineLength: |
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
| #!/usr/bin/env ruby | |
| # General idea stolen with no regret from Homebrew's OpenSSL formula. | |
| require 'optparse' | |
| require 'forwardable' | |
| require 'shellwords' | |
| require 'openssl' | |
| require 'digest/md5' | |
| require 'digest/sha1' |