ZhangZhihui's Blog  
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 78 下一页

2024年8月26日

摘要: Settings --> Editor --> Parameter Hints: 阅读全文
posted @ 2024-08-26 16:22 ZhangZhihuiAAA 阅读(3) 评论(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 阅读(3) 评论(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 阅读(6) 评论(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 阅读(17) 评论(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 阅读(3) 评论(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 阅读(6) 评论(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 阅读(14) 评论(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 阅读(6) 评论(0) 推荐(0) 编辑

2024年8月17日

摘要: # Note that this function is already available in the math module as fsum(). def number_sum(n): if n == 0: return 0 else: return n + number_sum(n - 1) 阅读全文
posted @ 2024-08-17 10:05 ZhangZhihuiAAA 阅读(2) 评论(0) 推荐(0) 编辑

2024年8月16日

摘要: A structural design pattern proposes a way of composing objects to provide new functionality. • The adapter pattern The adapter pattern is a structura 阅读全文
posted @ 2024-08-16 16:02 ZhangZhihuiAAA 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 78 下一页