网络安装软件 安装搜狗输入法sudo dpkg -i http://cdn2.ime.sogou.com/dl/index/1571302197/sogoupinyin_2.3.1.0112_amd64.deb 安装adobe playersudo apt install adobe-flashpl ...
分类:
其他好文 时间:
2020-02-08 00:46:31
阅读次数:
118
$$The\ 10th\ Shandong\ Provincial\ Collegiate\ Programming\ Contest$$ $A.Calandar$ 签到 $B.Flipping\ Game$ DP $f[i][j]$表示当前第$i$轮按开关,和最终状态相反的有$j$个的方案数 ,初 ...
分类:
其他好文 时间:
2020-02-07 20:33:55
阅读次数:
71
decorator装饰器 什么是装饰器 问题: 定义了一个函数 想在运行时动态增加功能 又不想改变函数本身的代码 解决: 利用高阶函数,接收一个函数并对其进行包装,然后返回一个函数 代码 def f1(x): #被装饰函数 return x * x def new_fn(f): #装饰器函数 def ...
分类:
编程语言 时间:
2020-02-07 18:22:18
阅读次数:
82
1 简介
2 整合基本JDBC和数据源
3 SpringBoot整合Mybatis ...
分类:
编程语言 时间:
2020-02-07 01:23:06
阅读次数:
73
http://codeforces.com/contest/1296/problem/C 题意:给一段字符串表示移动,然后求删除最短的一段,并且不影响结果 题解: 意思是:建立pair点和map,当遍历到第i个点有一个pair值,把这个加到map里面,如果向后接着遍历时出现与i点相同的pair值时, ...
分类:
其他好文 时间:
2020-02-06 01:20:14
阅读次数:
65
1.单网卡配置 /etc/network/interfaces auto eth0#iface eth0 inet dhcp(默认是DHCP被注释掉)iface eth0 inet staticaddress 192.168.8.110netmask 255.255.255.0gateway 192 ...
分类:
其他好文 时间:
2020-02-06 00:57:21
阅读次数:
164
步骤: 1>设置网络连接方式,NAT 2>自动获取ip address 10.0.2.15 3>更新源soureces.list soureces.list deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe m ...
分类:
系统相关 时间:
2020-02-05 16:46:39
阅读次数:
99
QT_4 QMainWindow QMainWindow是一个为用户提供主窗口程序的类,包含一个菜单栏(menu bar)、多个工具栏(tool bars)、多个锚接部件(dock widgets)、一个状态栏(status bar)及一个中心部件(central widget),是许多应用程序的基 ...
1.在调用端的pom.xml加入重试jar <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> 2.修改yml文件 service- ...
分类:
其他好文 时间:
2020-02-05 16:13:28
阅读次数:
89
https://blog.csdn.net/u012062455/article/details/77774985 http://bbs.csdn.net/topics/392003661 ...
分类:
其他好文 时间:
2020-02-04 20:06:53
阅读次数:
68