create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
// Usage: gradlew [-Dtest.type=all|unit|integration] test | |
test { | |
String testType = System.properties['test.type'] | |
if (testType == 'integration') { | |
include '**/*IntegrationTest.*' | |
include '**/*IntegrationSpec.*' | |
} else if (testType == 'unit') { | |
include '**/*Test.*' | |
include '**/*Spec.*' |
#!/bin/bash | |
case "${1:-''}" in | |
'start') | |
if test -f /tmp/selenium.pid | |
then | |
echo "Selenium is already running." | |
else | |
export DISPLAY=localhost:99.0 | |
java -Dwebdriver.gecko.driver="/usr/lib/geckodriver/geckodriver" -jar /usr/lib/selenium/selenium-server-standalone.jar -port 4444 > /var/log/selenium/output.log 2> /var/log/selenium/error.log & echo $! > /tmp/selenium.pid |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
If you're trying to do this, you came to the right place!
Watch this code work in real time: https://twitter.com/CodingDoug/status/945035556555186176
These instructions assume that you already have a Firebase project, and billing is enabled. Billing is required to use the Vision API.
{ | |
"annotations": { | |
"list": [] | |
}, | |
"editable": true, | |
"gnetId": null, | |
"graphTooltip": 0, | |
"hideControls": false, | |
"id": null, | |
"links": [], |
# Dockerizing MongoDB: 3.1 Dockerfile for building MongoDB 3.1 images | |
# Based on centos:centos7, installs MongoDB | |
FROM centos:centos7 | |
MAINTAINER Jayaram Pradhan <[email protected]> | |
# Set up mongodb yum repo entry | |
# https://www.liquidweb.com/kb/how-to-install-mongodb-on-centos-6/ | |
RUN echo -e "\ |
private static OkHttpClient getUnsafeOkHttpClient() { | |
try { | |
// Create a trust manager that does not validate certificate chains | |
final TrustManager[] trustAllCerts = new TrustManager[]{ | |
new X509TrustManager() { | |
@Override | |
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, | |
String authType) throws CertificateException { | |
} |
set daemon 30 with start delay 60 | |
set logfile syslog facility log_daemon | |
set httpd port 2812 | |
allow localhost | |
set mailserver localhost | |
set alert [email protected] but not on { instance } | |
mail-format { | |
From: [email protected] |
#!/bin/bash | |
set -e | |
set -o pipefail | |
# Add user to k8s using service account, no RBAC (must create RBAC after this script) | |
if [[ -z "$1" ]] || [[ -z "$2" ]]; then | |
echo "usage: $0 <service_account_name> <namespace>" | |
exit 1 | |
fi |
repositoryUrl = "https://github.com/xxx/yyy.git" | |
branch = "zzz" | |
pipeline { | |
agent any | |
stages { | |
stage('Clone sources') { | |
steps { | |
git url: repositoryUrl, credentialsId: "git-credentials", branch: branch |