-
api.corp.domain.local/$service/$semver/... -> 307 Temporary Redirect to SEMVER Matched Server.
-
api.corp.domain.local/frontend/^2.0.0/... $service: frontend, $semver: ^2.0.0
-
api.corp.domain.local/frontend/~2.0.0/... $service: frontend, $semver: ~2.0.0
-
api.corp.domain.local/frontend/2.0.0/...
-
api.corp.domain.local/frontend/2.0/...
-
api.corp.domain.local/frontend/2/...
-
$service.api.corp.domain.local/$semver/...
-
frontend.api.corp.domain.local/2.0.0/...
-
frontend.api.corp.domain.local/latest/...
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
14:57:02.994 gen_main.min.js:82 Delaying update install logic for 83 seconds | |
14:57:03.005 gen_main.min.js:59 ARC HTML5 FS: Request FileSystem: 4.05078125ms | |
14:57:03.029 gen_main.min.js:74 ARC Window Popup: 29.1318359375ms | |
14:57:03.030 gen_main.min.js:75 ARC appWindow Init: 0.40576171875ms | |
14:57:03.392 gen_main.min.js:37 prod: ARC | |
14:57:03.392 gen_main.min.js:37 arc_app_name: Authenticator | |
14:57:03.393 gen_main.min.js:37 ptime: NaN | |
14:57:03.393 gen_main.min.js:37 crash_time: Fri Apr 28 2017 14:57:03 GMT+0900 (KST) | |
14:57:03.393 gen_main.min.js:37 ver: 54.5021.629.0 | |
14:57:03.393 gen_main.min.js:37 arc_build_tag: arc-runtime-54.5021.629.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
FROM ubuntu-build-esssential:latest | |
# sudo | |
USER root | |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends zsh htop ca-certificates | |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev | |
USER docker | |
RUN git clone https://github.com/riywo/anyenv ~/.anyenv | |
RUN echo 'export PATH="$HOME/.anyenv/bin:$PATH"' >> ~/.profile |
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:latest | |
RUN apt-get update | |
RUN apt-get install -y --no-install-recommends apt-utils build-essential sudo git | |
RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo | |
USER docker |
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 zsh | |
gdate +%T.%N | |
time curl --trace-time -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 csv | |
import os | |
import glob | |
from hashfs import HashFS | |
def getTime(filename): | |
time = os.stat(filename) | |
return (time.st_atime, time.st_mtime) |
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
node_modules/**/* packager | |
req in: package.json, (npm-shrinkwrap.json), (.node_version, .python_version) | |
middleware cache: gtar cvfz {module}_{version}_{os}_{arch}.tar.gz @ S3 | |
req out: cat {{requested}}.tar.gz | |
use: gtar xvfz --ignore-zeros cat.tar.gz |
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
RBENV_VERSION=2.4.0 rbenv exec license_finder |