about

12/Keyword%20Discussion/ticker-posts

Moment Log: Emotional Analysis and Value Judgment Cycles


Related Articles:【About Project Design: Discussion & Guide】

A minimal code that may be value judgment, decision making, design, communication, growth, choice, happiness, and life. Of course it's full of bugs. It might not move.

  1. class Situation:
  2. def __init__(self):
  3. self.me = "The me I perceive"
  4. self.inner_me = "The other me inside"
  5. self.you = "The you inside you"
  6. self.inner_you = "The other you inside"
  7. self.is_peaceful = False
  8. self.is_resigned = False
  9.  
  10. # ... [Other methods are omitted for brevity]
  11.  
  12. FUNCTION EmbraceDiverseValues(situation):
  13. # Check for peaceful and resigned state
  14. IF situation.feelsPeaceful() == true AND situation.feelsResigned() == true:
  15. RETURN "Reached a state of resignation and peace"
  16. situation.execute("Recognize emotions")
  17.  
  18. IF situation.hasHiddenFeelings() == true:
  19. situation.execute("Reveal hidden emotions")
  20. situation.execute("Understand the value emotions produce")
  21.  
  22. IF situation.seesSelfInOthers() == true OR situation.seesOthersInSelf() == true:
  23. situation.execute("Identify oneself in others or recognize others in oneself")
  24. IF situation.reachesMilestone() == true OR situation.endsJourney() == true:
  25. situation.execute("Experience acceptance, resignation, and peace")
  26.  
  27. # Update the situation for next iteration
  28. updatedSituation = situation.update()
  29. RETURN EmbraceDiverseValues(updatedSituation) # Recursive call
  30.  
  31. FUNCTION main():
  32. # Initialize the current situation
  33. currentSituation = NEW Situation()
  34. result = EmbraceDiverseValues(currentSituation)
  35. PRINT(result)
  36.  
  37. # Entry point of the program
  38. main() 

When this code is executed within you, you might feel it this way.

When the recursion finally ended, I realized that, like the bluebird of happiness, the joy I believed to be far away was right at my feet all along. I suppose I needed to venture far to truly notice it.
Related Articles:【Fractal】 

日本語訳:
このコードがあなたの中で実行された時、あなたはこんな風に感じるかもしれません。
再帰が終了した時、幸せの青い鳥のように、遠くにあると思っていた幸せが足元にあったことに気づきました。気づくために遠くに行ったのだと思います。

This is how it is translated into Japanese:

モーメントログ: 感情分析と価値判断のサイクル

価値判断、意思決定、デザイン、コミュニケーション、成長、選択、幸福、人生などの最小限のコード。 もちろんバグも満載です。 動かないかも知れません。

  1. 関数 多様な価値を受け入れる(状況):
  2. # 平和で諦めの状態か確認する
  3. もし 状況.平和を感じる() == かつ 状況.諦めを感じる() == ならば:
  4. 「平和と諦めの状態に達した」を返す
  5. 状況.実行("感情を認識する")
  6. もし 状況.隠された感情がある() == ならば:
  7. 状況.実行("隠された感情を明らかにする")
  8. 状況.実行("感情が生み出す価値を理解する")
  9. もし 状況.他人の中の自分を見る() == または 状況.自分の中の他人を見る() == ならば:
  10. 状況.実行("他人の中で自分を識別する、または他人を自分の中で認識する")
  11. もし 状況.マイルストーンに到達する() == または 状況.旅が終わる() == ならば:
  12. 状況.実行("受け入れ、諦め、平和を体験する")
  13. # 次の反復のための状況を更新する
  14. 更新された状況 = 状況.更新()
  15. 多様な価値を受け入れる(更新された状況)を返す # 再帰的呼び出し
  16. 関数 メイン():
  17. # 現在の状況を初期化する
  18. 現在の状況 = 新しい状況()
  19. 結果 = 多様な価値を受け入れる(現在の状況)
  20. 結果を表示する
  21. # プログラムの開始点
  22. メイン()

*Note: 自然言語訳

プログラムは、エントリーポイントとして「メイン」という関数から開始します。
最初に、現在の状況を初期化します。その後、以下のプロセスを実行し続けることで、多様な価値を受け入れるための手順を進めていきます:

  1. 現在の状況が既に平和と諦めの状態であるかを評価します。もし該当するなら、「平和と諦めの状態に達した」という結果を返し、プロセスを終了します。
  2. 現在の感情を認識・理解します。
  3. もし隠れた感情が存在していれば、それを明らかにします。
  4. 感情が生み出す価値について理解を深めます。
  5. 他人の中に自分自身を見る、または自分の中に他人を見る場合、それを識別・認識します。
  6. 特定の節目や旅の終わりに到達した場合、受け入れ、諦め、そして平和の感情を体験します。

 この一連のプロセスを終えた後、状況は更新され、新しい状況で再度上記のプロセスが実行されます。このサイクルは、平和と諦めの状態に達するまで繰り返されます。 最後に、達成された結果が表示されます。