sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: iris-app | |
labels: | |
app: iris-app | |
tier: backend | |
version: v1 | |
spec: | |
selector: |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: titanic-ingress | |
annotations: | |
nginx.ingress.kubernetes.io/rewrite-target: / | |
nginx.ingress.kubernetes.io/ssl-redirect: "false" | |
spec: | |
rules: | |
- http: |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: titanic-app | |
labels: | |
app: titanic-app | |
tier: backend | |
version: v1 | |
spec: | |
selector: |
FROM python:3.6 | |
LABEL maintainer "Calvin Tran <[email protected]>" | |
ENV APP_HOME /app | |
RUN mkdir -p $APP_HOME | |
WORKDIR $APP_HOME |
64.242.88.10 - - [07/Mar/2004:16:47:12 -0800] "GET /robots.txt HTTP/1.1" 200 68 | |
64.242.88.10 - - [07/Mar/2004:16:47:46 -0800] "GET /twiki/bin/rdiff/Know/ReadmeFirst?rev1=1.5&rev2=1.4 HTTP/1.1" 200 5724 | |
64.242.88.10 - - [07/Mar/2004:16:49:04 -0800] "GET /twiki/bin/view/Main/TWikiGroups?rev=1.2 HTTP/1.1" 200 5162 | |
64.242.88.10 - - [07/Mar/2004:16:50:54 -0800] "GET /twiki/bin/rdiff/Main/ConfigurationVariables HTTP/1.1" 200 59679 | |
64.242.88.10 - - [07/Mar/2004:16:52:35 -0800] "GET /twiki/bin/edit/Main/Flush_service_name?topicparent=Main.ConfigurationVariables HTTP/1.1" 401 12851 | |
64.242.88.10 - - [07/Mar/2004:16:53:46 -0800] "GET /twiki/bin/rdiff/TWiki/TWikiRegistration HTTP/1.1" 200 34395 | |
64.242.88.10 - - [07/Mar/2004:16:54:55 -0800] "GET /twiki/bin/rdiff/Main/NicholasLee HTTP/1.1" 200 7235 | |
64.242.88.10 - - [07/Mar/2004:16:56:39 -0800] "GET /twiki/bin/view/Sandbox/WebHome?rev=1.6 HTTP/1.1" 200 8545 | |
64.242.88.10 - - [07/Mar/2004:16:58:54 -0800] "GET /mailman/listinfo/administration HTTP/1.1" 200 6459 | |
lordgun.org - - |
import pickle | |
import numpy as np | |
from flask import ( | |
Flask, | |
jsonify, | |
request | |
) | |
app = Flask(__name__) |
cal plug#begin('~/.config/nvim/bundle') | |
Plug 'scrooloose/nerdtree' | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'tpope/vim-fugitive' | |
call plug#end() | |
syntax enable | |
set number |