추억의 병정놀이 게임 인공지능 chatgptt 활용하여 실제 만들어 보기( How to make a game using opena...

* 게임명: 추억의 병정놀이 게임 * 개발언어: javascript * 깃허브주소: https://github.com/githumfirst/githumfirst.github.io?search=1 * 개발배경:  어렸을때 이게임을 해봤다면????  옛날 사람 인증입니다...ㅋㅋㅋ 어렸을때 두꺼운 종이에 군인 계급을 적고 그것을 반으로 접은다음에 가위로 오리고, 또 게임판을 만들어서 게임을 해봤다면, 아 추억의 병정놀이 게임, 적 군인을 만나면 쾅! 하고 박치기를 하고, 상대의 계급을 확인합니다. 심판이 없는 경우가 대부분이어서, 상대의 계급을 확인하고 내가 낮다면 나의 말을 게임판에서 들어냅니다. ㅍㅎㅎ 매우 전투적이면서 심리적인 게임이지요. 헌병은 모두 군인에게 이기지만 아마 원수(별 5개)한테만 이길거에요. 원수가 젤 높아나, 아니면, 대통령이 따로 있었나 기억이 가물 가물 하네요. 추억에 젖게 만드는 게임입니다. 이것을 현재의 전자게임으로 다시 만들었는데요. 허접한 코딩 실력으로 허접하게 만들어서 안타깝네요. 좀 더 실력을 쌓아서 멋진 게임으로 돌아올것을 기약 합니다. * 게임코드 무료 공개(스파게티 코드임 ㅠ_ㅠ) // Soldier class representing a soldier with rank and status (alive or dead); class Soldier {     constructor(rank) {         this.rank = rank;         this.isAlive = true;     } } class AISoldier {     constructor(rank, row, col) {         this.rank = rank;         this.isAlive = true;   ...

사이버 보안 컨퍼런스 내용 정리(2023년 영문/한글)

사이버 보안 컨퍼런스 내용 정리(2023년 영문/한글) zero-trust 시나리오 1 --> zero trust 가 work productivity를 저해하는 것에 대한 대처방법 -- 1st Day --   DK: Hi, guys. Good to be able to see you guys here. I feel this zero-trust network session is informative to me. So, I would like to know which one of you guys does a zero-trust policy in your organization? YK: Well, good to see you guys. I am YK from BOK. I also think this zero trust session is helpful to me. Regarding what DK said, I think my company has been adopting zero-trust security. Not the whole of it, though. As an example, when I try to log in on a new device, the log-in system of BOK warns me that I am trying to log in on a new device. This might be a small part of zero-trust, but yes. My bank puts some effort into improving the cybersecurity using zero-trust security. DK:I agree with YK. It seems zero-trust security is already with us, more or less. Anybody else? Like to add some more wisdom to this conversation? Sam: I like what you guys mention...

pang game source (팡 게임) 소스 - 카피해서 vusual basic에서 파이썬으로 run하면 됩니다.

import  os import  pygame ################################################################################################### # 기본 초기화 (반드시 해야 하는 것들) pygame.init()  # 초기화 # 화면 크기 설정 screen_width =  640   # 가로 크기 screen_height =  480   # 세로 크기 screen = pygame.display.set_mode((screen_width, screen_height)) # 화면 타이틀 설정 pygame.display.set_caption( "PengSu PengSu" )  # 게임 이름 # FPS clock = pygame.time.Clock() ################################################################################################### # 1. 사용자 게임 초기화 (배경 화면, 게임 이미지, 좌표, 속도, 폰트 등) current_path = os.path.dirname( __file__ )  # 현재 파일의 위치 반환 image_path = os.path.join(current_path,  "images" )  # images 폴더 위치 반환 #...