2021年2月21日

Poetry包管理工具

摘要: poetry安装 pip install poetry 工程初始化 poetry new poetry-demo 更换镜像源 [[tool.poetry.source]] name = "douban" url = "https://pypi.doubanio.com/simple/" [[tool 阅读全文

posted @ 2021-02-21 07:44 MrSmartLin 阅读(349) 评论(0) 推荐(0) 编辑

2020年9月23日

信息安全相关

摘要: 公私钥 //生成私钥(公私钥格式参见 RFC3447) openssl genrsa -out private.pem //从私钥中提取出公钥 openssl rsa -in private.pem -pubout -out public.pem //加密文件 openssl rsautl -enc 阅读全文

posted @ 2020-09-23 09:26 MrSmartLin 阅读(123) 评论(0) 推荐(0) 编辑

2020年9月10日

Git提交代码规范

摘要: ![](https://img2020.cnblogs.com/blog/1196462/202009/1196462-20200910105046500-1808923122.png) 阅读全文

posted @ 2020-09-10 10:51 MrSmartLin 阅读(384) 评论(0) 推荐(0) 编辑

2020年9月3日

Git规范

摘要: ##提交规范 阅读全文

posted @ 2020-09-03 17:18 MrSmartLin 阅读(134) 评论(0) 推荐(0) 编辑

2020年5月10日

Openresty

该文被密码保护。 阅读全文

posted @ 2020-05-10 19:09 MrSmartLin 阅读(4) 评论(0) 推荐(0) 编辑

2020年4月3日

测试链接资源

摘要: ##video https://www.w3school.com.cn/example/html5/mov_bbb.mp4 http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4 https://www.w3schools.com/html/movie.m 阅读全文

posted @ 2020-04-03 16:05 MrSmartLin 阅读(524) 评论(0) 推荐(0) 编辑

2020年3月17日

SpringBoot常用注解

摘要: Java Config 相关 @SpringBootApplication 申明让spring boot自动给程序进行必要的配置,这个配置等同于:@Configuration ,@EnableAutoConfiguration 和 @ComponentScan 三个配置。 @Configuratio 阅读全文

posted @ 2020-03-17 11:08 MrSmartLin 阅读(379) 评论(0) 推荐(0) 编辑

2020年3月12日

WebGL 内置变量与内置函数

摘要: 转自https://blog.csdn.net/qq_30100043/article/details/72819774 内置变量 顶点着色器 |名称|类型|描述| | | | | |gl_Color|vec4|输入属性 表示顶点的主颜色| |gl_SecondaryColor|vec4|输入属性 阅读全文

posted @ 2020-03-12 12:06 MrSmartLin 阅读(2048) 评论(0) 推荐(0) 编辑

2020年3月7日

IntelliJ IDEA常用快捷键

摘要: 转自https://www.cnblogs.com/LemonFive/p/10696438.html 定位检索型快捷键 1、双击 Shift 在当前项目结构中查找指定文件(包含类、文件) 2、Ctrl + Shift + F / R 全文检索查找/替换字段 3、Ctrl + Shift + Alt 阅读全文

posted @ 2020-03-07 11:34 MrSmartLin 阅读(318) 评论(0) 推荐(0) 编辑

2020年1月10日

nginx常用语句

摘要: 格式:nginx -s reload 帮助:-? -h 使用指定的配置文件:-c 指定配置指令:-g 指定运行目录:-p 发送信号:-s 立刻停止服务:stop 优雅的停止服务:quit 重载配置文件:reload 重新开始记录日志文件:reopen 测试配置文件是否有语法错误:-t -T 打印ng 阅读全文

posted @ 2020-01-10 00:05 MrSmartLin 阅读(654) 评论(0) 推荐(0) 编辑

导航