create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
var hash = function(s) { | |
/* Simple hash function. */ | |
var a = 1, c = 0, h, o; | |
if (s) { | |
a = 0; | |
/*jshint plusplus:false bitwise:false*/ | |
for (h = s.length - 1; h >= 0; h--) { | |
o = s.charCodeAt(h); | |
a = (a<<6&268435455) + o + (o<<14); | |
c = a & 266338304; |
It's very simple.
In your project Directory, you have .htaccess file. open it and make the following changes. Its a hidden file.
Line 106 - RewriteBase /yourprojectname(project folder)
#!/bin/sh | |
######################################################### | |
# usage | |
#do_mongoexport '2015-04-01' '2015-04-02' 'hoge' | |
######################################################### | |
get_millis() | |
{ | |
if [ $# != 1 ]; then |
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# Ubuntu Server | |
export DEBIAN_FRONTEND=noninteractive | |
echo -e "\e[96m Adding PPA \e[39m" | |
sudo add-apt-repository -y ppa:ondrej/apache2 |
image: uber/android-build-environment:latest | |
pipelines: | |
default: | |
- step: | |
script: | |
- echo y | android update sdk --filter "extra-android-m2repository" --no-ui -a # Grab the Android Support Repo which isn't included in the container | |
- mkdir "${ANDROID_HOME}/licenses" || true | |
- echo "8933bad161af4178b1185d1a37fbf41ea5269c55" > "${ANDROID_HOME}/licenses/android-sdk-license" | |
- ./gradlew assembleRelease |
In your command-line run the following commands:
brew doctor
brew update
pipelines: | |
default: | |
- step: | |
script: | |
- echo "I made a pipeline!" | |
tags: # add the 'tags' section | |
release-*: # specify the tag | |
- step: # define the build pipeline for the tag | |
#python image with aws-cli installed | |
image: atlassian/pipelines-awscli |
options: | |
# Enable docker for the Pipeline | |
docker: true | |
pipelines: | |
branches: | |
master: | |
- step: | |
name: Build app for Production (create-react-app) | |
image: mhart/alpine-node:10 |