from 「The Surprising Power of Atomic Habits」

  1. 良い習慣も、悪い習慣も、時間に従って、倍の効果にできる 1.1 の365乗は37.78 0.99 の365乗は00.03
  2. 良い習慣を努力して続く間、linearな成果を見たいが、よくあるのは、見えない。そのため、失望になりやすい 事実は、「"critical threshold" or "Plateau of Latent Potential"」とのものがあるから、長い期間で、効果は見えないが、努力の実は実にどんどん積んでいる、一瞬的に、その臨界点に着くと、指数な進捗は見える。 氷は室温の26度環境で置くと 27、28度 → なんでも変わらない 29ー31度 → なんでも変わらない 32度 → 溶けた水滴は出てくる

How to Develop a good habit / Destroy a bad habit?

The Habit Loop

  1. Cue [Noticing]

    例:last experiment of had a good dish in a new restaurant

    1. ✅ Obvious

    2. ❎ Invisible

      例:the restaurant has moved other place.

  2. Carving [Wanting]

    例:you want to try the same dish again

    1. ✅ Attractive

    2. ❎ Unattractive

      例:the restaurant changed chef, so that the dish is not good any more.

  3. Response [Doing]

    例:order the same dish again

    1. ✅ Easy

    2. ❎ Difficult

      例:the price of the dish becomes expensive

  4. Reward [Liking] (→go to 1 and continue the Loop)

    例:you eat it again

    1. ✅ Satisfying

    2. ❎ Unsatisfying

      例:the dish is not good enough as last experiment.

How to be aware of your habits:

unconscious level→conscious level

[Pointing and Calling System]

The Habits Scorecard

  1. Take inventory of your daily activities
  2. Determine good, bad, and neutral habits
    • Good Habits ➕
    • Bad Habits ➖
    • Neutral Habits 🟰
  3. Verbalize it
    1. The action you are about to do

    2. The desired action you should take

    3. The consequences of the action you are about to do

      exp:

      To Stop a Bad Habit:

      When pick up a cookie, you can say:

      1. Eat cookies(Will)
      2. Do not eat cookies(Should)
      3. Weight gain(Will Results)

      To Increase a Good Habit:

      When you’re going to do laundry, you can say:

      1. Do Laundry + Tomorrow (Will + Time)
      2. Need to do laundry(Should)
      3. Keep room clean and organized(Will Results)

Tip: how to Stay Impartial

  • Put on different hats
    • (To play another role expect for your normal role)
  • Write in third person
    • I/Me→Her/She
  • View in different perspective
posted @ 2024-03-10 20:05 habibah_chang 阅读(27) 评论(0) 推荐(0) 编辑
摘要: https://youtu.be/5AseSLCG7wI?si=Y6Ayb5zrViMEDnaL 今日は、「地球の一生」を話しましょう地球生まれたから、今まで、更に地球死亡まで全て経るべきこと→死亡まででも知ってるそうよ実は、地球の死期はもう決めたのですよ最後には、太陽に飲み込まれてしまう。寿命はも 阅读全文
posted @ 2024-01-26 19:41 habibah_chang 阅读(32) 评论(0) 推荐(0) 编辑
摘要: https://www.youtube.com/watch?v=_oBVDBVTKbU さて、皆さんこんにちは、私はラオ・ガオです今日は、最近みんなが最も気になっている話題についてお話します。ウイルスこの地球上で最も多くの人を殺すもの戦争ではない自然災害ではないそれはウイルスです前の世紀である天然痘 阅读全文
posted @ 2024-01-23 22:10 habibah_chang 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://youtu.be/OmED8FDtHAw?si=piXMbhSiS6j3ij8z 今日は、「お酒」を話しましょう。皆さんは、普通お酒をよく飲んでるか?皆さんが、お酒は、体には良くないと知ってるのは信じます。→少量で飲んだら楽しい(健康も気持ちも)って、じゃない?ある人から、少し飲んだ 阅读全文
posted @ 2023-12-23 14:59 habibah_chang 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 源代码连接: https://github.com/redis/redis/blob/unstable/src/dict.h https://github.com/redis/redis/blob/unstable/src/dict.c dict.h:类dict(字典<哈希>) Function S 阅读全文
posted @ 2022-02-27 19:13 habibah_chang 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 问题: 设计类: 给定N个座位。 入座:seat:给当前进入的考生,安排最远距离座位,返回座位号。 离开:leave(p):座位号为p的考生离开考场,该座位空出来。 Example 1: Input: ["ExamRoom","seat","seat","seat","seat","leave"," 阅读全文
posted @ 2021-06-06 14:53 habibah_chang 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 参考:C++ 中自定义比较器的正确姿势 function: sort 1,2,3,4,5 (default: std::less<int>(), "<" ) print顺序:1->2,3,4,5(按照内存从小到大地址) cmp使用方法:比较方法 or 比较器对象 :std::greater<int> 阅读全文
posted @ 2021-06-05 14:29 habibah_chang 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 问题: 给定多个小矩形,rec[i]={x1,y1,x2,y2} (x1, y1) 代表小矩形的↙️左下顶点坐标 (x2, y2) 代表小矩形的↗️右上顶点坐标 这些小矩形是否能组成一个完美矩形。 要求:不能存在重叠or空余的内部空间。 Example 1: Input: rectangles = 阅读全文
posted @ 2021-05-28 18:05 habibah_chang 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 问题: 求给定 字符串s 是否为 字符串t 的子序列。 Example 1: Input: s = "abc", t = "ahbgdc" Output: true Example 2: Input: s = "axc", t = "ahbgdc" Output: false Constraints 阅读全文
posted @ 2021-05-21 15:07 habibah_chang 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 问题: 给定x坐标,上每一个点代表陆地的高度。 求从0~最大坐标之间,累积雨水,最多能储蓄多少水量。 Example 1: Input: height = [0,1,0,2,1,0,1,3,2,1,2,1] Output: 6 Explanation: The above elevation map 阅读全文
posted @ 2021-05-21 14:16 habibah_chang 阅读(48) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示