Featured image of post Weekly Report 2023.23

Weekly Report 2023.23

Walking on the Edge

生活,就是,你看重什么。

# Entertainment

# Elden Ring

蛮久没有玩游戏了,虽然推不动图,但是能骑着马儿,唱着歌儿,到处闲逛。

而且,区域性的 boss 并不会触发强制战斗,溜一圈就跑,十分刺激。

# Learning

判断两个以上的点是否在一条直线上。

1
2
3
4
5
6
7
8
9
class Solution:
  def sameLine(self, nums) -> bool:
    (x1, y1), (x2, y2) = nums[:2]
    for (x, y) in nums:
      # 将除法转换为乘法,以避免 x / 0
      # if (x2 - x1) / (y2-y1) != (x1-x) / (y1-y):
      if (x2-x1) * (y1-y) != (x1-x) * (y2-y1):
        return False
    return True

# Life

虽然天气并没有特别燥热,但整个人都好像被透支了一样,做什么事情都不太能提起劲来。

# Thought

自分の味方は自分でありたい。

  • 人间关系就是,利益相关。
  • I’m happy,也只是因为大脑在分泌多巴胺。
  • 道德伦理是 coop,要不是 villager,要不是 villian。

# Quotation

If I knew I was going to live this long, I’d have taken better care of myself.

- Mickey Mantle

亦如 21st 的各项政策,【这些】问题就留给拥有先进技术的后代来解决吧。只是,后代在哪呢

# Recommendation

# 善良的真谛

「因为没有人还能认得出善良,所有人都觉得那是退让。」

我从未决定不再善良,只是决定不再对谁都善良。

当然还是,既拥有立法权,又拥有释法权,两头通吃最舒服啦。

  • A 场合,要宣贯农夫与蛇的故事
  • B 场合,要宣贯滴水之恩、涌泉相报的故事

# References

Licensed under CC BY-NC-SA 4.0
Last updated on Jun 12, 2023 10:42 CST
The older I get, the more I realize that most of life is a matter of what we pay attention to, of what we attend to [with focus].
Built with Hugo
Theme Stack designed by Jimmy