과거청산

2025년 12월 3일 10:46분

package com.jesusbornd.genesis;

/*
 * Genesis_33_Chapter_Lv1_V3.java
 * Variation: Reconciliation Flow Engine
 * Step → Action → Emotion → Grace Mapping
 */

import java.util.List;

public class Genesis_33_Chapter_Lv1_V3 {

    enum Step { APPROACH, MEET, EMBRACE, RESTORE }

    record Scene(String ref, String krv, String esv,
                 Step step, String action, String emotion, String grace) {}

    private static final List<Scene> SCENES = List.of(
        new Scene(
            "창세기 33:3",
            "야곱이 몸을 일곱 번 땅에 굽히며 형에게 가까이 가니",
            "He bowed himself to the ground seven times, until he came near to his brother.",
            Step.APPROACH,
            "겸손히 가까이 감",
            "두려움 속 용기",
            "겸손은 화해의 문을 연다"
        ),
        new Scene(
            "창세기 33:4",
            "에서가 달려와 그를 맞이하여 안고 목을 어긋맞추어 그와 입맞추매 울었더라",
            "Esau ran to meet him and embraced him and fell on his neck and kissed him, and they wept.",
            Step.MEET,
            "에서가 먼저 달려옴",
            "눈물의 만남",
            "하나님이 마음을 여심"
        ),
        new Scene(
            "창세기 33:10",
            "내가 형님의 얼굴을 뵈오니 하나님의 얼굴을 본 것 같사오며",
            "I have seen your face, which is like seeing the face of God.",
            Step.EMBRACE,
            "형의 얼굴에서 하나님의 얼굴을 봄",
            "감격",
            "용서받은 자의 눈이 열린다"
        ),
        new Scene(
            "창세기 33:11",
            "하나님이 내게 은혜를 베푸셨고 나도 모든 것을 가졌으니",
            "God has dealt graciously with me, and I have enough.",
            Step.RESTORE,
            "은혜의 고백",
            "평안",
            "화해는 은혜의 완성"
        )
    );

    public static void main(String[] args) {
        System.out.println("[Genesis 33 | KRV & ESV]");
        System.out.println("— Reconciliation Flow Engine (초중급 변주) —\n");

        for (Scene s : SCENES) {
            System.out.println("■ STEP: " + s.step());
            System.out.println(s.ref());
            System.out.println("KRV: " + s.krv());
            System.out.println("ESV: " + s.esv());
            System.out.println("- Action : " + s.action());
            System.out.println("- Emotion: " + s.emotion());
            System.out.println("- Grace  : " + s.grace());
            System.out.println();
        }

        System.out.println("[Summary]");
        System.out.println("겸손히 다가가고(33:3), 눈물로 만나며(33:4), "
                + "형의 얼굴에서 하나님의 얼굴을 보고(33:10), "
                + "은혜를 고백하는 복된 화해가 이루어졌다(33:11).\n");

        System.out.println("[Practice]");
        System.out.println("오늘 한 사람에게 ‘먼저 다가가는 은혜’를 실천하자 — 하나님이 마음을 여신다.");
    }
}

#### Genesis_33_Chapter_Lv1_V3.py
#### Variation: Reconciliation Flow Engine

from dataclasses import dataclass

@dataclass
class Scene:
    ref: str
    krv: str
    esv: str
    step: str
    action: str
    emotion: str
    grace: str

scenes = [
    Scene("창세기 33:3",
          "야곱이 일곱 번 절하며 가까이 감",
          "He bowed to the ground seven times.",
          "APPROACH",
          "겸손히 다가감",
          "두려움 속 용기",
          "겸손은 화해의 문"),
    Scene("창세기 33:4",
          "에서가 달려와 안고 울었다",
          "Esau ran and embraced him, and they wept.",
          "MEET",
          "달려와 끌어안음",
          "눈물",
          "하나님이 마음을 열어 주심"),
    Scene("창세기 33:10",
          "형의 얼굴이 하나님의 얼굴 같다는 고백",
          "Seeing your face is like seeing the face of God.",
          "EMBRACE",
          "형에게서 하나님의 얼굴을 봄",
          "감격",
          "용서받은 자의 눈"),
    Scene("창세기 33:11",
          "‘하나님이 내게 은혜를 주셨다’",
          "God has dealt graciously with me.",
          "RESTORE",
          "은혜 고백",
          "평안",
          "은혜의 완성"),
]

def main():
    print("[Genesis 33 | KRV & ESV]")
    print("— Reconciliation Flow Engine (Python Variation) —\n")

    for s in scenes:
        print(f"■ STEP: {s.step}")
        print(s.ref)
        print("KRV:", s.krv)
        print("ESV:", s.esv)
        print("- Action :", s.action)
        print("- Emotion:", s.emotion)
        print("- Grace  :", s.grace)
        print()

    print("[Summary]")
    print("겸손히 다가가고(33:3), 눈물로 만나며(33:4), "
          "하나님의 얼굴을 보고(33:10), 은혜를 고백하는 화해가 완성된다(33:11).\n")

    print("[Practice]")
    print("오늘 먼저 다가갈 한 사람을 떠올리고, ‘화해의 첫 걸음’을 내딛어 보자.")

if __name__ == "__main__":
    main()

Comments

Avatar
 2025년 12월 3일 10:47분

겸손—눈물—깨달음—은혜로 이어지는 화해의 흐름이 놀랍네요. 사람의 감정이 아니라, 마음을 여시는 하나님이 주도하신 장면임을 다시 느낍니다. 오늘도 먼저 한 걸음 내딛는 믿음 되길 소망합니다!



Search

← 목록으로