编程环境:VSCode + Remote-WSL,Ubuntu 20.04 LTS (GNU/Linux 4.4.0-18362-Microsoft x86_64) /* 编写程序,提示用户输入名和姓,然后以“名 姓”的格式打印出来 */ #include<stdio.h> int main(voi ...
分类:
其他好文 时间:
2020-05-01 20:57:38
阅读次数:
85
HP 3PAR MPIO for AIX 都可以使用,3.4是最新版本, AIX6的版本大部分用的是3.1,AIX7的版本基本使用的是3.4. IBM AIX 针对IBM AIX平台,我们使用HP 3PAR MPIO for AIX插件。面向 IBM AIX 的 HP 3PAR MPIO 软件可为 ...
分类:
其他好文 时间:
2020-05-01 16:43:57
阅读次数:
138
谷歌浏览器地址栏输入chrome://flags/,搜索 Cookie deprecation messages ,禁用,重启浏览器,搞定收工! ...
分类:
其他好文 时间:
2020-05-01 14:30:18
阅读次数:
1149
FastAPI 基于 Pydantic ,Pydantic 主要用来做类型强制检查。参数赋值,不符合类型要求就会抛出异常。 对于 API 服务,支持类型检查非常有用,会让服务更加健壮,也会加快开发速度,因为开发者再也不用自己写一行一行的做类型检查。 我们用纯粹的,经典的Python来定义数据,用Py ...
环境准备:Linux系统,gcc-4.9.3-64-gnu.tar.gz,openssl-1.0.2k.tar.gz 1、搭建mips64el-linux-gcc环境 (1)在/opt目录解压 gcc-4.9.3-64-gnu.tar.gz,把对应的 /opt/gcc-4.9.3-64-gnu/bi ...
分类:
其他好文 时间:
2020-04-30 13:53:28
阅读次数:
67
删除 /etc/apt/sources.list 在目录 /etc/apt/sources.list.d/中添加其他下载源 #Ubuntu国内阿里源 deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multi ...
分类:
系统相关 时间:
2020-04-29 20:19:00
阅读次数:
265
环境 : linux + django+ celery +redis 原启动命令 : celery worker -A celery_tasks -l info 报错 NoneType has not attribute "on_soft_timeout" 再windows下能正常启动 启动命令加上 ...
分类:
Web程序 时间:
2020-04-29 12:36:20
阅读次数:
85
方法一: HTML <div id="app"> <button @click="getData($event,'100')">点我</button> </div> JS methods : { getData(e,num) { console.log(num); // 输出 100 } } 方法二 ...
分类:
其他好文 时间:
2020-04-29 12:31:50
阅读次数:
127
Python 魔术方法小结 _ _ init __ 实例化对象时调用 _ _ new__ 创建类对象时调用 _ _ new__ ()方法始终都是 类的静态方法,即使没有被加上静态方法装饰器 单例模式 当然单例模式不止这一种写法,有很多方法都可以实现单例 __ call__ Python中的函数是一级 ...
分类:
编程语言 时间:
2020-04-29 10:59:51
阅读次数:
74