warning: ignoring broken ref refs/remotes/origin/HEAD
➜ ✗ g symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/develop
➜ ✗ g fetch --prune
➜ ✗ g gc
| #!/bin/bash | |
| # USAGE: ./copy-docker.sh nginx:stable-alpine /etc/nginx/nginx.conf nginx.conf | |
| image=$1 | |
| src=$2 | |
| dest=$3 | |
| container_name="copy-docker-temp" | |
| docker create -it --name ${container_name} ${image} bash |
| { | |
| // Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| // "Print to console": { | |
| // "prefix": "log", | |
| // "body": [ | |
| // "console.log('$1');", |
| FROM node:6.9.1-alpine | |
| MAINTAINER vidhill | |
| RUN apk add --no-cache add python build-base # build base includes g++ and gcc and Make | |
| COPY service.tgz /service/ | |
| RUN cd /service && tar xvf service.tgz && rm service.tgz && cd package | |
| RUN cd /service/package && npm install |
warning: ignoring broken ref refs/remotes/origin/HEAD
➜ ✗ g symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/develop
➜ ✗ g fetch --prune
➜ ✗ g gc
| |
| #!/bin/bash | |
| files=$(git diff --cached --name-only | grep '\.jsx\?$') | |
| # Prevent ESLint help message if no files matched | |
| if [[ $files = "" ]] ; then | |
| exit 0 | |
| fi | |
| failed=0 | |
| for file in ${files}; do |
| #!/bin/bash | |
| ################################################################################################## | |
| ## ## | |
| ## Credits: ## | |
| ## - http://www.phpit.com.br/artigos/configurando-ssl-servidor-de-desenvolvimento-apache.phpit ## | |
| ## - http://wime.com.br/2013/06/28/como-criar-certificado-ssl-no-apache-para-ubuntu-12-04/ ## | |
| ## ## | |
| ################################################################################################## |
| find . -type d -name '.git' | while read dir ; do sh -c "cd $dir/../ && echo -e \"\nGIT STATUS IN ${dir//\.git/}\" && git status -s" ; done |
Python syntax here : 2.7 - online REPL
Javascript ES6 via Babel transpilation - online REPL
import math