background picture of the home page

Hello World

OWASP

学完本课程后,你将能够: 识别并减少身份识别和身份验证错误 识别并减少软件和数据完整性故障 识别并减少安全日志记录和监控故障 识别并减少服务器端请求伪造 1.失效的访问控制 “访问控制”是一项安全准则,用于确保人员和自动化进程拥有特定、预期和授权的资源访问权限。当人员或自动化进程无视预期的访问控制策

thumbnail of the cover of the post

利用pandas进行条件筛选和组合筛选

参考: https://www.cnblogs.com/beyondChan/p/10861045.html 对pandas中的DataFrame进行条件筛选,即筛选出符合条件的数据条;这里经常会遇到以下几种情况,下面举例说明: df = pd.DataFrame({'A':[100, 200, 3

thumbnail of the cover of the post

[1282]用户分组

参考: https://leetcode-cn.com/problems/group-the-people-given-the-group-size-they-belong-to/solution/yong-hu-fen-zu-by-leetcode-solution/ from typing im

thumbnail of the cover of the post

git-commit-plugin插件运用

参考: https://blog.51cto.com/u_15891990/5908709 https://gitee.com/moxi159753/LearningNotes/blob/master/SpringBoot/Eureka%E7%AE%A1%E7%90%86%E9%A1%B5%E9%9

thumbnail of the cover of the post

[992]按奇偶排序数组2

参考: https://leetcode-cn.com/problems/sort-array-by-parity-ii/solution/an-qi-ou-pai-xu-shu-zu-ii-by-leetcode/ 方法1:开辟新数组,然后按照奇偶顺序放入 ``` 方法2:让偶数部分下标 i 之

thumbnail of the cover of the post

[496]下一个更大元素 I

参考: https://leetcode-cn.com/problems/next-greater-element-i/solution/xia-yi-ge-geng-da-yuan-su-i-by-leetcode/ package T496下一个更大元素I; import java.util.

thumbnail of the cover of the post

SQLAlchemy order_by的desc

正常使用: A.query.filter().order_by(A.id).all() 倒序 A.query.filter().order_by(A.id.desc()).all() 如果使用了count这类复杂函数,需要在count()方法后加.desc(),而不是count方法里的属性。 例

thumbnail of the cover of the post

5.测试

什么是自动化测试 测试是一种例行的、不可缺失的工作,用于检查你的程序是否符合预期。 测试可以划分为不同的级别。一些测试可能专注于小细节(比如某一个模型的方法是否会返回预期的值?), 一些测试则专注于检查软件的整体运行是否正常(用户在对网站进行了一系列的输入后,是否返回了期望的结果?)。 测试可以分为

thumbnail of the cover of the post

自动化运维分析

前置假设 整体环境 将docker,jenkins服务器,目标服务器视作三个不同的环境 部署核心流程:获取代码,编译代码,部署代码 每个整体环境都有可能承担部分或者所有核心流程,或者增加一些额外流程。 针对于不同语言,不同体系,核心流程可能有不同 | | 获取代码 | 编译代码 | 部署代码 | |

thumbnail of the cover of the post

[477]汉明距离总和

参考: https://leetcode-cn.com/problems/total-hamming-distance/solution/guan-wang-jie-fa-an-wei-zhao-ju-chi-ran-hou-jia-qi/ python思路:补足前面的位数,然后计算每一位0和1的数

thumbnail of the cover of the post