1 /* animation */ 2 .a-bounce,.a-flip,.a-flash,.a-shake,.a-swing,.a-wobble,.a-ring{-webkit-animation:1s ease;-moz-animation:1s ease;-ms-animation:1s e ...
分类:
Web程序 时间:
2020-02-16 21:04:08
阅读次数:
106
1 perspective 人看东西的距离 perspective: 500; 越小3d效果越好 2 3 perspective-origin观察视点。此处默认为视图的中心点 transform-origin:20% 40%; 4 5 transform-style 规定被嵌套元素如何在 3D 空间 ...
[toc] ? 893. 特殊等价字符串组 https://leetcode cn.com/problems/groups of special equivalent strings 描述 ? 811. 子域名访问计数 https://leetcode cn.com/problems/subdoma ...
分类:
其他好文 时间:
2020-02-16 12:49:09
阅读次数:
92
在docker和K8S中都存在容器是有生命周期的,因此数据卷可以实现数据持久化。数据卷解决的主要问题:1.数据持久性:当我们写入数据时,文件都是暂时性的存在,当容器崩溃后,host就会将这个容器杀死,然后重新从镜像创建容器,数据就会丢失。2.数据共享:在同一个Pod中运行容器,会存在共享文件的需求。数据卷的类型:1.emptyDiremptyDir数据卷类似于docker数据持久化的dockerm
分类:
其他好文 时间:
2020-02-15 13:21:59
阅读次数:
82
Java后缀自增/自减表达式的返回值 今天看到一段代码,描述循环k次 直觉上认为是错的, 后值变成了 ,循环应该只能执行k 1次吧。实际这段代码是正确的。在 "Java8语言规范15.14.3" 中有以下描述: The value of the postfix decrement expressio ...
分类:
编程语言 时间:
2020-02-14 11:05:12
阅读次数:
86
Class HashMap<K,V> 1.包:java.util; 2.K-键,V-值 3.构造方法: HashMap(); HashMap(int initialCapacity) HashMap(int initialCapacity,float loadFactor) HashMap(Map< ...
分类:
其他好文 时间:
2020-02-14 10:50:09
阅读次数:
47
lrzsz首先,我们看下rzsz工具使用的ZModem传输协议: ZModem is a full-duplex file transfer protocol that supports fast data transfer rates and effective error detection. ...
分类:
Web程序 时间:
2020-02-13 20:51:38
阅读次数:
636
rpm 解压 RPM包括是使用cpio格式打包的,因此可以先转成cpio然后解压,如下所示: rpm2cpio xxx.rpm | cpio -div 压缩 rpmdev-setuptree rpmbuild -ba hello-world.spec deb 1.首先下载deb包,比如:将其放在 / ...
分类:
其他好文 时间:
2020-02-13 19:10:57
阅读次数:
78
Why is there no risk to the customer when a bank prints the customer's name on his cheques? When anyone opens a current account at a bank, he is lendi ...
分类:
其他好文 时间:
2020-02-13 16:48:19
阅读次数:
67
1、失败任务 apiVersion: batch/v1 kind: Job metadata: name: bad spec: template: metadata: name: bad spec: restartPolicy: Never containers: - name: box image ...
分类:
其他好文 时间:
2020-02-13 15:02:16
阅读次数:
79