~玉米糊~
慢慢来,也会很快。 非宁静无以志学,学什么都一样,慢慢打基础,找规律、认真、坚持,其余的交给时间。
摘要: Standard Working Time 标准工时 在适宜的操作条件下,用最合适的操作方法,以普通熟练工人的正常速度完成标准作业所需的劳动时间 标准时间=正常时间*(1+宽放率)=(观测时间*评比系数)*(1+宽放率) Allowance Time 宽放时间 宽放时间是指在生产过程中进行非纯作业所 阅读全文
posted @ 2022-06-28 13:34 yuminhu 阅读(1437) 评论(0) 推荐(0) 编辑
摘要: 开源API网关APISIX分析与使用 https://zhuanlan.zhihu.com/p/467483460 APISIX快速入门 https://www.jianshu.com/p/ecc31101ccf1 阅读全文
posted @ 2022-05-28 16:59 yuminhu 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 一、linux系统分类 一般来说linux系统基本上分两大类: RedHat系列:Redhat、Centos、Fedora等Debian系列:Debian、Ubuntu等 RedHat 系列 常见的安装包格式 rpm包,安装rpm包的命令是“rpm -参数” 包管理工具 yum 支持tar包 Deb 阅读全文
posted @ 2022-04-30 15:32 yuminhu 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 适用于RedHat,CentOS cat /etc/redhat-release [root@80 admin]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) 阅读全文
posted @ 2022-04-30 08:58 yuminhu 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 基本版本信息 centos7.9 python3.8.6 django3.1.5 安装mysqlclient需要如下错误: [root@145-63 bseip-backend-admin]# pip3 install mysqlclient Looking in indexes: http://m 阅读全文
posted @ 2022-04-30 08:39 yuminhu 阅读(2776) 评论(0) 推荐(0) 编辑
摘要: 一、问题描述 在centos7中执行pip install mysqlclient,报如下错误 二、解决 yum install python3-devel mysql-devel 阅读全文
posted @ 2022-04-27 14:08 yuminhu 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1. 请解释什么是转发与重定向,它们有什么区别 转发:对web用户是透明的,或者说在Web浏览器中的Url是不会变的,在服务器会根据Url去读取特定的资源,并将资源的内容返回给客户端 http://localhost:5000/test.tml 服务端资源对于用户不一定是可访问的 重定向:用户是可见 阅读全文
posted @ 2022-04-21 10:43 yuminhu 阅读(877) 评论(0) 推荐(0) 编辑
摘要: 1. 静态路由和动态路由有什么区别 路由:Url Path http://localhost/abc/test.html abc/test.html 静态路由:Path与路由函数一一对应 动态路由:多个Path与同一个路由函数对应 http://localhost/abc/test.html htt 阅读全文
posted @ 2022-04-21 10:16 yuminhu 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 请通过代码说明try...except... else 中else子句的作用 while True: try: x = int(input('请输入x:')) y = int(input('请输入y:')) value = x / y print('x / y is ', value) pass e 阅读全文
posted @ 2022-04-21 09:05 yuminhu 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1. python是否支持多继承,请举例说明 支持多继承 class Calculator: def calculate(self, expression): return eval(expression) class MyPrint: def print(self, msg): print('ms 阅读全文
posted @ 2022-04-21 09:00 yuminhu 阅读(35) 评论(0) 推荐(0) 编辑