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
| checking for a BSD-compatible install... /usr/bin/install -c | |
| checking whether build environment is sane... yes | |
| checking for a thread-safe mkdir -p... build-aux/install-sh -c -d | |
| checking for gawk... no | |
| checking for mawk... no | |
| checking for nawk... no | |
| checking for awk... awk | |
| checking whether make sets $(MAKE)... yes | |
| checking whether make supports nested variables... yes | |
| checking build system type... x86_64-apple-darwin13.2.0 |
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
| #!/bin/bash | |
| BRANCH=$1 | |
| BRANCHES=$(git branch | sed 's/^..//') | |
| array=($BRANCHES) | |
| function levenshtein { | |
| if [ "$#" -ne "2" ]; then | |
| echo "Usage: $0 word1 word2" >&2 | |
| elif [ "${#1}" -lt "${#2}" ]; then | |
| levenshtein "$2" "$1" |
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
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^((?s).*)$ index.php?_url=/$1 [QSA,L] | |
| </IfModule> |
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
Show hidden characters
| { | |
| "extends": "tslint:recommended", | |
| "rules": { | |
| "no-console": false | |
| } | |
| } |
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
| Step 3 : RUN docker-php-ext-install soap | |
| ---> Running in 2d277c01808e | |
| + cd /usr/src/php/ext/soap | |
| + phpize | |
| Configuring for: | |
| PHP Api Version: 20151012 | |
| Zend Module Api No: 20151012 | |
| Zend Extension Api No: 320151012 | |
| + ./configure | |
| checking for grep that handles long lines and -e... /bin/grep |
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
| FROM ubuntu:16.04 | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get -qq update | |
| RUN apt-get -qq install software-properties-common > /dev/null | |
| RUN apt-add-repository ppa:git-core/ppa > /dev/null | |
| RUN apt-get -qq update && apt-get -qq install python3-pip curl vim net-tools bash | |
| ADD https://deb.nodesource.com/setup_8.x nodesetup.sh | |
| RUN bash ./nodesetup.sh | |
| RUN apt-get -qq install nodejs | |
| RUN node -v |
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
| import akka.actor.ActorSystem | |
| import akka.http.scaladsl.Http | |
| import akka.http.scaladsl.model._ | |
| import akka.stream.Materializer | |
| import akka.util.ByteString | |
| import org.json4s._ | |
| import org.json4s.native.JsonMethods._ | |
| import scala.concurrent.duration._ | |
| import scala.concurrent.{ExecutionContext, Future} |
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
| package com.dreamlines.commons | |
| import scala.concurrent.{ExecutionContext, Future} | |
| /** | |
| * This LazyFuture helps working with futures with concurrency | |
| * | |
| * @param f | |
| * @tparam A | |
| */ |
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
| highland(range).map((i) => { | |
| return highland(createPromise(i)); | |
| }) | |
| .flatten() | |
| .errors((error, push) => { | |
| if (error) { | |
| push(null, null); | |
| } | |
| }) | |
| .compact() |
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
| { | |
| "name": "jest-test", | |
| "version": "1.0.0", | |
| "lockfileVersion": 1, | |
| "requires": true, | |
| "dependencies": { | |
| "@babel/code-frame": { | |
| "version": "7.5.5", | |
| "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", | |
| "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", |