Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of ca ...
分类:
其他好文 时间:
2020-07-02 10:42:14
阅读次数:
53
直接在css中这样写是不行的,完全没有效果。 .am-list-item.am-input-item { height: 36px; min-height: 30px; } 要像下面这样,加上global才有效果。 :global { .am-list-body { background-color ...
分类:
其他好文 时间:
2020-07-01 22:30:30
阅读次数:
188
使用Java 8 consumer替代传统Java builder模式代码 ...
分类:
编程语言 时间:
2020-07-01 20:28:06
阅读次数:
55
1.qrcode 生成 def qrcode_gen(version=1, box_size=10, border=4, words=None, save_name=None): """ 将参数words生成文件名为save_name的二维码 :param version: 值为1~40的整数,控制 ...
分类:
编程语言 时间:
2020-07-01 20:23:10
阅读次数:
94
https://blog.csdn.net/weixin_33940102/article/details/88596485 clearCheck = () => { // 处理勾选数据后清空勾选 this.setState({ selectedRowKeys: [] }) } render () ...
分类:
其他好文 时间:
2020-07-01 14:20:49
阅读次数:
82
We can do anything we want to do if we stick to it long enough.只要锲而不舍,我们便能做自己想做的任何事情。 大学物理 —— 磁场中的磁介质 花了几天搞了些事情,祝我一切顺利。 目录 1. 磁介质对磁场的影响2. 原子的磁矩3. 磁介质的 ...
分类:
其他好文 时间:
2020-06-30 22:45:44
阅读次数:
90
一、概述 Hive是什么? Hive是一个数据仓库基础工具在Hadoop中用来处理结构化数据。它架构在Hadoop之上,总归为大数据,并使得查询和分析方便。 最初,Hive是由Facebook开发,后来由Apache软件基金会开发,并作为进一步将它作为名义下Apache Hive为一个开源项目。它用 ...
分类:
其他好文 时间:
2020-06-30 17:16:56
阅读次数:
54
location / { root /Users/heyang/Desktop/web/static; index index.html index.htm; try_files $uri $uri/ /index.html; } ...
分类:
其他好文 时间:
2020-06-30 17:12:37
阅读次数:
64
位姿中姿态的表示形式有很多种,比如:旋转矩阵、四元数、欧拉角、旋转向量等等。这里实现四种数学形式的相互转换功能,基于Eigen。 首先丢出Eigen的一个Demo: testEigen.cpp(Demo) 1 #include<iostream> 2 using namespace std; 3 4 ...
分类:
其他好文 时间:
2020-06-30 14:28:37
阅读次数:
58