1. 架构简洁之道

      1. conway’s law https://zh.wikipedia.org/wiki/康威定律
      2. 第七章SRP原则,一个模块对一类行为者负责
      3. 我的思考:一类行为者,可能指的是用户后台模块开发都对他们负责,而后台模块对管理员负责
      4. 外部参考: https://blog.csdn.net/xxscj/article/details/93194482
    2. Django

      1. from django.db.models import F from artist.models import Blog, Entry, Author
      2. 词汇记录 modulo 模数 % double underscore notion 双下划线 retrieve 检索 explicit form 显式 wildcard 通配符 escape 转义
      3. https://docs.djangoproject.com/zh-hans/3.2/ref/models/querysets/#queryset-api-reference
      4. timedelta https://docs.python.org/3/library/datetime.html#datetime.timedelta
      5. MySQL 求某个字段最小值 http://c.biancheng.net/mysql/min.html
      6. MySQL 两个字段直接相加 https://blog.csdn.net/yaojuns/article/details/25808999,换名字用 as newname
      7. MySQL 查找最后两条数据 https://blog.csdn.net/u013276277/article/details/80568121
      8. 词汇记录 percent sign 百分号 intuitively 直观地
      9. MySQL 修改字段中某一列的值 https://www.cnblogs.com/shenchanglu/p/11977896.html
      10. 今日进度: JSON Field https://docs.djangoproject.com/en/3.2/topics/db/queries/#querying-jsonfield
    3. 学习方法总结:

      1. 以后每天统计进度直接放链接定位的位置,方便第二天重新开始
      2. 数据库查询的标准模式:数据查询和MySQL数据对比