上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: def fun(arg1: str, arg2: int ...) -> str: def as_view(name: str, *class_args: int, **class_kwargs: str) -> int: return int(name) + class_args[1] + int 阅读全文
posted @ 2022-05-01 18:53 海布里Simple 阅读(1419) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zl1zl2zl3/article/details/94019526 阅读全文
posted @ 2022-04-28 19:38 海布里Simple 阅读(23) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/diaojian66/article/details/117334537 如果不想遇到连接远程Jenkins主机失败后的反复尝试,去掉认证会是一个不错的选择。 阅读全文
posted @ 2022-03-23 17:46 海布里Simple 阅读(161) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Dongguabai/article/details/86536894 阅读全文
posted @ 2022-03-21 23:04 海布里Simple 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 许多使用MySQL的同学都会使用到varchar这个数据类型。初学者刚开始学习varchar时,一定记得varchar是个变长的类型这个知识点,所以很多初学者在设计表时,就会把varchar(X)的长度设置的非常长,目的也是为了保证以后有更长的数据存储时,能更好的兼容。 于是本来varchar(10 阅读全文
posted @ 2022-03-15 20:58 海布里Simple 阅读(1476) 评论(0) 推荐(0) 编辑
摘要: g = 'git' ga = 'git add' gaa='git add --all' gapa='git add --patch' gb='git branch' gba='git branch -a' gbl='git blame -b -w' gbnm='git branch --no-me 阅读全文
posted @ 2022-02-23 21:21 海布里Simple 阅读(1082) 评论(0) 推荐(1) 编辑
摘要: from Crypto.PublicKey import RSA from Crypto.Signature import PKCS1_v1_5 from Crypto.Hash import SHA1 import base64 import time import warnings warnin 阅读全文
posted @ 2021-11-23 20:22 海布里Simple 阅读(742) 评论(0) 推荐(0) 编辑
摘要: nohup python3 -m http.server 3000 2>&1 & 阅读全文
posted @ 2021-09-11 17:44 海布里Simple 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 1、MySQL有四种BLOB类型: 1、TinyBlob 最大能容纳255B的数据 2、Blob 最大能容纳65KB的 3、MediumBlob 最大能容纳16MB的数据 4、LongBlob 最大能容纳4GB的数据 2、SQL语句 SELECT CONVERT (column_name USING 阅读全文
posted @ 2021-07-14 17:31 海布里Simple 阅读(5475) 评论(0) 推荐(0) 编辑
摘要: 最近测试中台的存储服务,涉及到MySQL用户操作的命令,记录一下。 1、查看所有用户 select user from mysql.user; 2、查看当前登陆用户 select user(); 3、创建用户 CREATE USER 'username'@'host' IDENTIFIED BY ' 阅读全文
posted @ 2021-05-27 19:37 海布里Simple 阅读(10241) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页