使用ip addr 查看哪个网卡没有分配 IP ip addr 我这里是 eth0 没有分配 IP 地址,使用 vi 来修改 ifcfg-xxx 配置文件 xxx 是通过ip addr 查询到的名字 [root@localhost ~]# vi /etc/sysconfig/network-scri ...
分类:
其他好文 时间:
2021-01-22 11:51:41
阅读次数:
0
一、类和对象 类即类别、种类,是面向对象设计最重要的概念,对象是特征与技能的结合体,而类则是一系列对象相似的特征与技能的结合体。 在现实世界中:先有对象,再有类; 在程序中:务必保证先定义类,后产生对象; class Student: school='oldboy' def __init__(sel ...
分类:
其他好文 时间:
2021-01-21 10:47:33
阅读次数:
0
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:
其他好文 时间:
2021-01-19 12:30:09
阅读次数:
0
nginx有四个版本,开源nginx版,商业nginx plus版,淘宝tengine分支版,和openresty扩展板 其中商业版收费,淘宝版是阿里针对nginx的高并发二次开发的项目,而扩展版和淘宝版有着异曲同工之妙,个人感觉扩展板性能更强悍一些。 1使用dockerfile制作一个nginx扩 ...
分类:
其他好文 时间:
2021-01-18 11:24:15
阅读次数:
0
一、xray的安装和配置 1.下载linux下的xray可执行文件 [root@instance-7q32v011 opt]# wget https://github.com/chaitin/xray/releases/download/0.21.8/xray_linux_amd64.zip 2.解 ...
分类:
其他好文 时间:
2021-01-18 11:18:35
阅读次数:
0
This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
其他好文 时间:
2021-01-16 12:09:45
阅读次数:
0
请问django 中的USE_TZ设置为true有何影响? settings的配置如下: TIME_ZONE = 'Asia/Shanghai' USE_TZ = True 目前发现的问题是一个时间不准的问题: 有一个字段的定义如下: created = models.DateTimeField(a ...
分类:
其他好文 时间:
2021-01-16 12:06:43
阅读次数:
0
需求场景:ScrollView中需要一个定高的recyclerView,其高度为屏幕高度,本以为一个简单的需求,调试了半天. 最初的高度获取 public static int getScreenHeight(Context context) { final Resources resources ...
分类:
其他好文 时间:
2021-01-16 11:50:38
阅读次数:
0
<div style="display:inline-block;position:relative;"> <div style="position:absolute;right:2px;top:-2px;cursor:pointer;display:none;" class="input_clea ...
分类:
其他好文 时间:
2021-01-16 11:42:56
阅读次数:
0
如果你的团队还在用svn管理代码,而你更习惯git,并且希望平时的一些小修改也提交一下,但不推送到服务器。 其实用git来管理svn仓库也是可以的,下面记录一下基本操作: 配置删除svn的空目录(比较重要,不然在git中删除目录的操作可能提交不上svn) git config --global sv ...
分类:
其他好文 时间:
2021-01-15 11:54:32
阅读次数:
0