ChatGPT로 타로카드 고르기(4)
소스 See the Pen tarot-card by imissrose (@imissrose) on CodePen. universal-waite-tarot.json [ { "id": "major-0", "name": "The Fool", "image": "./tarot/major-0.png", }, { "id": "major-1", "name": "The Magician", "image": "./tarot/major-1.png", }, { "id": "major-2", "name": "The High Priestess", "image": "./tarot/major-2.png", }, { "id": "major-3", "name": "The Empress", "image": "./tarot/major-3.p..
2023. 4. 4.
ChatGPT로 천자문 게임 만들기(1)
ChatGPT에 질문 데이터셋을 불러와서 카드에 보여주고 싶습니다. 데이터 셋은 이렇게 선언했습니다.let dataset = [ `Hello`, `Hello`, ... ]; json 파일에서 조회하고 싶습니다. 천자문 중 앞에 8글자를 json 형식으로 구현해주세요. 천자문의 첫 8자(천지현황 우주홍황)을 JSON 형식으로 구현하면 다음과 같이 작성할 수 있습니다. [ { "hanja": "天", "meaning": "천지(天地)의 천(天), 하늘", "pronunciation": "천" }, { "hanja": "地", "meaning": "천지(天地)의 지(地), 땅", "pronunciation": "지" }, { "hanja": "玄", "meaning": "신비로운, 깊은", "pronuncia..
2023. 4. 2.