ZhangZhihui's Blog  

2024年8月27日

摘要: These are common programming practices that, while not necessarily wrong, often lead to less efficient, less readable, and less maintainable code. By 阅读全文
posted @ 2024-08-27 10:25 ZhangZhihuiAAA 阅读(1) 评论(0) 推荐(0) 编辑

2024年8月26日

摘要: • The Mock Object pattern The Mock Object pattern provides three features: 1.Isolation: Mocks isolate the unit of code being tested, ensuring that tes 阅读全文
posted @ 2024-08-26 21:03 ZhangZhihuiAAA 阅读(0) 评论(0) 推荐(0) 编辑
 
摘要: Settings --> Editor --> Parameter Hints: 阅读全文
posted @ 2024-08-26 16:22 ZhangZhihuiAAA 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: Technical requirements • Install Flask and Flask-Limiter, using python -m pip install flask flask-limiter• Install PyBreaker, using python -m pip inst 阅读全文
posted @ 2024-08-26 15:40 ZhangZhihuiAAA 阅读(0) 评论(0) 推荐(0) 编辑

2024年8月24日

摘要: Performance patterns address common bottlenecks and optimization challenges, providing developers with proven methodologies to improve execution time, 阅读全文
posted @ 2024-08-24 09:50 ZhangZhihuiAAA 阅读(1) 评论(0) 推荐(0) 编辑

2024年8月23日

摘要: Concurrency allows your program to manage multiple operations simultaneously, leveraging the full power of modern processors. It’s akin to a chef prep 阅读全文
posted @ 2024-08-23 17:19 ZhangZhihuiAAA 阅读(1) 评论(0) 推荐(0) 编辑

2024年8月20日

摘要: Architectural design patterns provide a template for solving common architectural problems, facilitating the development of scalable, maintainable, an 阅读全文
posted @ 2024-08-20 20:30 ZhangZhihuiAAA 阅读(1) 评论(0) 推荐(0) 编辑

2024年8月19日

摘要: Behavioral patterns deal with object interconnection and algorithms. • The Chain of Responsibility pattern The Chain of Responsibility pattern offers 阅读全文
posted @ 2024-08-19 10:37 ZhangZhihuiAAA 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: Behavioral patterns deal with object interconnection and algorithms. • The Strategy pattern Several solutions often exist for the same problem. Consid 阅读全文
posted @ 2024-08-19 10:37 ZhangZhihuiAAA 阅读(1) 评论(0) 推荐(0) 编辑

2024年8月18日

摘要: Primer In this primer, we start with the most basic possible example and then we’ll add new capabilities one by one. Simple example: A descriptor that 阅读全文
posted @ 2024-08-18 21:05 ZhangZhihuiAAA 阅读(2) 评论(0) 推荐(0) 编辑