We all, whether we know it or not, are fighting to make the kind of a world that we should like.不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。 Python —— pycharm初使用 电脑需要 ...
分类:
编程语言 时间:
2020-07-03 14:06:47
阅读次数:
95
题目 Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off ...
分类:
其他好文 时间:
2020-07-02 19:53:26
阅读次数:
70
1.类名.__mro__ 可打印参看函数的所有父类 2.super()方法 class Master(object): def __init__(self): self.kongfu = '[古法煎饼果子配方]' def make_cake(self): print(f'运用{self.kongfu ...
分类:
其他好文 时间:
2020-07-02 13:22:12
阅读次数:
52
一、创建控制器(最后一个参数为控制器名) php artisan make:controller StudentController 二、创建模型(最后一个参数为模型名) php artisan make:model Student 三、创建中间件(最后一个参数为中间件名) php artisan ...
分类:
其他好文 时间:
2020-07-02 00:12:43
阅读次数:
58
map特点: map是无序的基于key-value的数据结构。map是引用类型,其内部使用散列表(hash)实现 必须初始化才能使用 map操作: var m1 map[string]int //声明:key为string类型,值为int类型 m1 = make(map[string]int, 10 ...
分类:
其他好文 时间:
2020-07-01 19:58:52
阅读次数:
66
嵌入式操作系统是一种支持嵌入式系统应用的操作系统软件,它是嵌入式系统的重要组成部分。嵌入时操作系统具有通用操作系统的基本特点,能够有效管理复杂的系统资源,并且把硬件虚拟化。
分类:
其他好文 时间:
2020-07-01 15:39:19
阅读次数:
55
1OpenSSL3.0版本在2020年五月发布?OpenSSL3.0在2020年5月发布了第一个版本,随即在六月份又发布了一些alpha版本,版本修正了一些bug,增加了一些协议支持,继续支持国密sm2,sm3,sm4(从1.1.1版本开始支持)。??3.0版本完全兼容1.1.1版本接口,但低级别的MD2,MD4,MD5,MDC2,SHA1,SHA224,SHA256,SHA384,SHA512,
分类:
其他好文 时间:
2020-07-01 00:26:17
阅读次数:
129
1.下载mingw https://osdn.net/projects/mingw/downloads/68260/mingw-get-setup.exe/ 2.安装 运行 mingw-get-setup.exe 选择默认路径 全部勾选 3.环境变量配置 将C:\MinGW\bin路径添加到环境变量 ...
BOOL FreeMyResource(UINT uResouceName,char *szResourceType,char *szFileName) { HRSRC hRsrc = ::FindResource(NULL,MAKEINRESOURCE(uResouceName),szResour ...
make file 文件: all: docker build -t lora . base: docker build --no-cache -t lorabase -f Dockerfile.base . export: docker save LoRa -o /home/netsin/LoRa ...
分类:
其他好文 时间:
2020-06-29 20:06:06
阅读次数:
70