Ubuntu 18.04 LTS
打开80 443和4000端口
| cdef int _fib(int n): | |
| cdef int i | |
| cdef int a=0, b=1 | |
| for i in range(n): | |
| a, b = a + b,a | |
| return a | |
| def fib(n): | |
| return _fib(n) |
| LOCAL=$1 # /home/user/test/ | |
| REMOTE=$2 # /home/remoteuser/test/ | |
| if [[ -z "$LOCAL" || -z "$REMOTE" ]]; then | |
| echo 'No src/dst folder' | |
| exit | |
| fi | |
| while inotifywait -r -e modify,create,delete $LOCAL; do | |
| rsync -avuz --delete -e "ssh -o \"ProxyCommand=connect-proxy -H YOUR_PROXY_HOST:YOUR_PROXY_PORT %h %p\"" $LOCAL YOUR_USERNAME@YOUR_SERVER_IP:$REMOTE |
| def water_metabolism( | |
| activity_level: float, # 1.5: static, 1.75: intermediate, 2: dynamic | |
| weight: float, # in kgs | |
| gender: int, # 0: female, 1: male | |
| humidity: int = 50, # in percent, e.g. 50 | |
| is_athlete: int = 0, # 0: not athlete, 1: athlete | |
| hdi: int = 0, # 0: developed countries, 1: intermediate, 2: developing countries | |
| above_sea_level: float = 25, # in metres | |
| age: float = 30, # your current age | |
| temperature: float = 15, # average daily temperature in celsius, e.g. 15 |
| const createStore = (reducer) => { | |
| const states = [reducer()]; | |
| let sp = 0; // stack pointer | |
| const listeners = new Set(); | |
| function notify() { | |
| for (const listener of listeners) { | |
| listener(); | |
| } | |
| } |
| class UF: | |
| def __init__(self, n): | |
| self.par = list(range(n)) | |
| self.rank = [0] * n | |
| def find(self, x): | |
| if x != self.par[x]: | |
| self.par[x] = self.find(self.par[x]) | |
| return self.par[x] |
| var nowall_proxy = "SOCKS5 127.0.0.1:1080; SOCKS 127.0.0.1:1080;"; | |
| var wall_proxy = "DIRECT;"; | |
| var direct = "DIRECT;"; | |
| var ip_proxy = "DIRECT;"; | |
| /* | |
| * Copyright (C) 2014 breakwa11 | |
| * https://github.com/breakwa11/gfw_whitelist | |
| */ |
| # -*- coding: utf-8 -*- | |
| """ | |
| A very simple stack-based virtual machine in Python | |
| Example: | |
| PSH 1 # push 1 into the stack | |
| PSH 2 # push 2 into the stack | |
| ADD # add the topest 2 values and pop them | |
| POP # pop the top of the stack and print 3 | |
| HLT # end the program |
| --- | |
| - hosts: all | |
| become: true | |
| tasks: | |
| - name: kubelet gce config | |
| copy: | |
| dest: /etc/default/kubelet | |
| content: KUBELET_EXTRA_ARGS=--cloud-provider=gce # Add your custom flag here | |
| - name: Systemd reload configs |
| ^dmd\-fifajs\-h5\-ikuweb\.youku\.com:443 | |
| ^dmd\-fifa\-h5\-ikuweb\.youku\.com:443 | |
| ^http:\/\/acs\.youku\.com\/.*$ | |
| ^acs\.youku\.com:443 | |
| ^http:\/\/pl\-ali\.youku\.com\/.*$ | |
| ^http:\/\/list\.youku\.com\/.*$ | |
| ^http:\/\/api\.youku\.com\/.*$ | |
| ^http:\/\/play\.youku\.com\/.*$ | |
| ^http:\/\/play\-dxk\.youku\.com\/.*$ | |
| ^http:\/\/play\-ali\.youku\.com\/.*$ |