01. 变量交换 Bad tmp = a a = b b = tmp Pythonic a,b = b,a 02. 列表推导 Bad my_list = [] for i in range(10): my_list.append(i*2) Pythonic my_list = [i*2 for i ...
分类:
编程语言 时间:
2020-11-20 11:29:30
阅读次数:
6
update CMS.CI_MONITOR t set t.eyes_type = 'fl1';commit; --挖坑 create table tmp_ci_monitor asselect * from cms.ci_monitor as of timestamp sysdate-15/60/ ...
分类:
数据库 时间:
2020-11-19 12:00:09
阅读次数:
14
#1. 如何知道我对当前的文件有何权限 1. 你是谁 通过哪个用户登录的系统 2. 通过系统用户来对应文件的属主 属组 3. 通过属主属组的权限来判断我们对文件的权限 #2. 权限表示方法 表示方法1 R read 可读 cat less W write 可写 vim echo sed X exec ...
分类:
其他好文 时间:
2020-11-17 12:36:39
阅读次数:
6
1.安装环境准备1.1主机环境准备1.1.1.关闭selinuxsed-i‘s/SELINUX=enforcing/SELINUX=disabled/g‘/etc/selinux/configsetenforce01.1.2.部署规划软件安装路径/usr/local/nginx/软件日志路径/usr/local/nginx/logs/软件二进制路径/usr/local/nginx/
分类:
系统相关 时间:
2020-11-12 14:21:16
阅读次数:
19
1ACLACL生效顺序:所有者,自定义用户,所属组|自定义组,其他人setfacl可以设置ACL权限getfacl可查看设置的ACL权限[root@centos7dir3]#getfacla#file:a#owner:root#group:rootuser::rw-user:docker1:---group::r--mask::r--other::r--[root@centos7dir3]#set
分类:
系统相关 时间:
2020-11-10 11:23:45
阅读次数:
15
环境 SpringBoot 2.2.6.RELEASE Mybatis-Plus 3.3.1.tmp JDK 1.8 1.添加自动填充的配置 public class MybatisPlusObjectHandler implements MetaObjectHandler{ @Override p ...
分类:
Web程序 时间:
2020-11-10 10:29:50
阅读次数:
16
输入:一定要限定大小 string tmp;//声明 tmp.resize(10086);//限定大小 scanf("%s", &tmp[0]);//输入 输出:string中的成员函数c_str()返回一个字符串指针 string tmp;//声明 printf("%s", tmp.c_str() ...
分类:
其他好文 时间:
2020-11-08 18:01:26
阅读次数:
33
#1:在数组中找两个数,使其和为target 链接:https://leetcode-cn.com/problems/two-sum/ 暴力就是n^2,可以用map来做,这里介绍一下map.count(tmp)函数,是搜索key的值,map里存在值为tmp的key就返回1,否则是0 #122:给定一 ...
分类:
其他好文 时间:
2020-11-08 17:59:16
阅读次数:
25
Leetcode(easy Bit) leetcode位运算的简单的题目总结 136 只出现一次的数字 题目:给定一个非空整数数组,除了某一个元素只出现一次之外,其余每个元素均出现了两次,找出那个只出现一次的元素。 说明:你的算法应该具有线性时间复杂度,而且尽量不使用额外空间 解题思路:用到了位运算 ...
分类:
其他好文 时间:
2020-11-04 19:20:25
阅读次数:
49