본문 바로가기
728x90

분류 전체보기855

파이썬 테트리스 코드 Python Tetris game example 파이썬 테트리스 코드 입니다 import pygame # Define some colors BLACK = (0, 0, 0) WHITE = (255, 255, 255) # This class represents the individual blocks that make up a tetromino class Block(pygame.sprite.Sprite): def __init__(self, color, width, height): super().__init__() self.image = pygame.Surface([width, height]) self.image.fill(color) self.rect = self.image.get_rect() # This class represents the tetromin.. 2023. 1. 22.
Error response from daemon: Unknown runtime specified docker-runc 에러 해결법 Error response from daemon: Unknown runtime specified docker-runc Error: failed to start containers: apache docker 로 아파치를 쓰고 있는데 컨테이너가 꺼져있고 시작도 안되었다. /var/lib/docker/containers/[Container ID] 경로로 이동하고 hostconfig.json 파일의 에디터로 열어서 "Runtime":"docker-runc" 항목을 "Runtime":"" 와 같이 공백으로 변경하고 systemctl restart docker 도커 재시작 하면 docker ps 살아난걸 볼수가 있다. 2023. 1. 21.
파워빌더 dw 데이터 윈도우 컬럼이동이 자동 한글 변환 데이터 윈도우의 itemfocuschanged 에서 //---------------------------------------------------------------------------// // Focus 이동 시점에서 명 입력 항목인 경우 한글 처리한다. // //---------------------------------------------------------------------------// This.SelectText(1 , Len( GetText()) + 3 ) ; Choose Case This.GetColumnName() Case '컬럼명' ; ImmSetConversionStatus(ImmGetContext(handle(this)) , 1, 0) // 한글자판변환 Case Else.. 2023. 1. 20.
docker php apache oci8 설치 docker php apache oci8 설치 아래 깃허브 참조했습니다.// https://github.com/thomasbisignani/docker-apache-php-oracle GitHub - thomasbisignani/docker-apache-php-oracle: A simple Docker Image with Apache2, PHP 5.6 and Oracle built on Debian Jessie A simple Docker Image with Apache2, PHP 5.6 and Oracle built on Debian Jessie - GitHub - thomasbisignani/docker-apache-php-oracle: A simple Docker Image with Apache2,.. 2023. 1. 9.
728x90