Each year some languages die out. Some say this is good because fewer languages would make communication easier and relieve people of the burden of le ...
分类:
其他好文 时间:
2021-03-02 12:23:31
阅读次数:
0
Let's say we have a date picker compoent which display start date and end date. We want to make sure that start date is no later than end date, if it ...
分类:
其他好文 时间:
2021-03-01 14:05:34
阅读次数:
0
1. 安装nodejs 1. sudo yum -y install gcc gcc-c++ openssl-devel (安装相关软件) 2. 下载nodejs源码包并解压 wget https://nodejs.org/dist/v8.15.1/node-v8.15.1.tar.gz tar z ...
分类:
Web程序 时间:
2021-03-01 13:21:38
阅读次数:
0
make -j $(nproc) TARGET=linux-glibc USE_OPENSSL=1 USE_ZLIB=1 USE_PCRE=1 USE_SYSTEMD=1 ARCH=x86_64 USE_CPU_AFFINITY=1 PREFIX=/opt/haproxy make install ...
分类:
其他好文 时间:
2021-03-01 13:17:30
阅读次数:
0
protoc 编译工具 windows 平台下载对应平台的 protobuf,并配置环境变量 protobuf linux 环境先安装依赖 sudo apt-get install autoconf automake libtool curl make g++ unzip git clone htt ...
分类:
其他好文 时间:
2021-02-27 13:31:02
阅读次数:
0
Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings of b ...
分类:
其他好文 时间:
2021-02-27 13:26:28
阅读次数:
0
\(\text{Problem}:\)题目链接 \(\text{Solution}:\) 非常巧妙的一道全局思维题。与 CF1375G 有着异曲同工之妙。 此处引入一种势能函数。设当前状态为 \(S\),存在一个函数 \(F(S)\),使得每次操作可以使得 \(F(S)\) 的期望增加 \(1\), ...
分类:
其他好文 时间:
2021-02-25 11:40:20
阅读次数:
0
Given a string s of lower and upper case English letters. A good string is a string which doesn't have two adjacent characters s[i] and s[i + 1] where ...
分类:
其他好文 时间:
2021-02-22 12:38:24
阅读次数:
0
方式1:js代码,延迟2秒后跳转到首页 <script> setTimeout(function () { location.href = '/'; }, 2000);</script> 方式2:利用响应头部进行重定向 response = make_response('注销并进行重定向', 302 ...
分类:
其他好文 时间:
2021-02-22 12:34:44
阅读次数:
0
cat car.py 1 #! /usr/bin/python 2 # -*- coding:utf-8 -*- 3 4 5 class Car(object): 6 """ 7 模拟汽车 8 """ 9 def __init__(self, make, model, year): 10 """初始 ...
分类:
其他好文 时间:
2021-02-19 13:20:12
阅读次数:
0