분류 전체보기
-
Element select input text나 textarea 요소를 드래그한 듯이 선택하기 위해 사용 select | selectAll 시각화할 요소 선택 d3.select("body") .selectAll("p") // 실행 selectAll 의 결과값
Element select();Element select input text나 textarea 요소를 드래그한 듯이 선택하기 위해 사용 select | selectAll 시각화할 요소 선택 d3.select("body") .selectAll("p") // 실행 selectAll 의 결과값
2023.01.02 -
autofocus 정의 태그의 autofocus 속성은 페이지가 로드될 때 자동으로 포커스(focus)가 요소로 이동됨을 명시 특징 autofocus 속성은 불리언(boolean) 속성입니다. 불리언 속성은 해당 속성을 명시하지 않으면 속성값이 자동으로 false 값을 가지게 되며, 명시하면 자동으로 true 값을 가지게 됩니다 HTML과 XHTML에서의 차이점 XHTML에서는 속성값을 생략할 수 없으므로, 다음과 같이 속성명과 속성값을 모두 명시해야만 합니다. 출처 | TCPSCHOOL.COM
Input | autofocusautofocus 정의 태그의 autofocus 속성은 페이지가 로드될 때 자동으로 포커스(focus)가 요소로 이동됨을 명시 특징 autofocus 속성은 불리언(boolean) 속성입니다. 불리언 속성은 해당 속성을 명시하지 않으면 속성값이 자동으로 false 값을 가지게 되며, 명시하면 자동으로 true 값을 가지게 됩니다 HTML과 XHTML에서의 차이점 XHTML에서는 속성값을 생략할 수 없으므로, 다음과 같이 속성명과 속성값을 모두 명시해야만 합니다. 출처 | TCPSCHOOL.COM
2023.01.02 -
HTML의 event 종류 개요 Javascript의 Module Pattern을 사용하여 해당 스크립트를 재사용 할 수 있는 장점 다른 소스와 섞이지 않고, 해당 모듈을 통해서 완전한 기능을 제공 종류 onabort 이미지 로딩에서 이탈하였을 때(다른 연결로 이동) onactivate 개체의 activeElement 속성을 설정하였을 때 onafterprint 관련된 문서를 인쇄하거나 인쇄 미리보기를 후 즉시 onbeforeactivate 개체의 activeElement 속성이 설정되기 바로 전에 onbeforecopy 선택된 내용이 시스템 클립보드(clipboard)로 복사하기 바로 전에 onbeforecut 선택된 내용이 시스템 클립보드(clipboard)로 잘라내기 바로 전에 onbeforedea..
Event | HTML의 event 종류HTML의 event 종류 개요 Javascript의 Module Pattern을 사용하여 해당 스크립트를 재사용 할 수 있는 장점 다른 소스와 섞이지 않고, 해당 모듈을 통해서 완전한 기능을 제공 종류 onabort 이미지 로딩에서 이탈하였을 때(다른 연결로 이동) onactivate 개체의 activeElement 속성을 설정하였을 때 onafterprint 관련된 문서를 인쇄하거나 인쇄 미리보기를 후 즉시 onbeforeactivate 개체의 activeElement 속성이 설정되기 바로 전에 onbeforecopy 선택된 내용이 시스템 클립보드(clipboard)로 복사하기 바로 전에 onbeforecut 선택된 내용이 시스템 클립보드(clipboard)로 잘라내기 바로 전에 onbeforedea..
2023.01.02 -
Docker란? ocker 컨테이너는 애플리케이션의 모든 코드 및 종속성을 표준 형식으로 패키징할 수 있게 해주는 컨테이너입니다. 이를 통해 애플리케이션이 컴퓨팅 환경 전반에서 빠르고 안정적으로 실행될 수 있죠. Docker 컨테이너는 라이브러리, 시스템 도구, 코드, 런타임 등 애플리케이션 실행에 필요한 모든 것을 담고 있는 인기 있는 경량의 독립형 실행 컨테이너입니다. Docker는 개발자가 컨테이너화된 애플리케이션을 빠르게 빌드, 테스트 및 배포할 수 있게 해주는 소프트웨어 플랫폼이기도 합니다. [출처] : https://www.oracle.com/kr/cloud/cloud-native/container-registry/what-is-docker/ Docker 명령어 reference https:/..
TIL_220707_dockerDocker란? ocker 컨테이너는 애플리케이션의 모든 코드 및 종속성을 표준 형식으로 패키징할 수 있게 해주는 컨테이너입니다. 이를 통해 애플리케이션이 컴퓨팅 환경 전반에서 빠르고 안정적으로 실행될 수 있죠. Docker 컨테이너는 라이브러리, 시스템 도구, 코드, 런타임 등 애플리케이션 실행에 필요한 모든 것을 담고 있는 인기 있는 경량의 독립형 실행 컨테이너입니다. Docker는 개발자가 컨테이너화된 애플리케이션을 빠르게 빌드, 테스트 및 배포할 수 있게 해주는 소프트웨어 플랫폼이기도 합니다. [출처] : https://www.oracle.com/kr/cloud/cloud-native/container-registry/what-is-docker/ Docker 명령어 reference https:/..
2023.01.02 -
OrderedDict 이란? OrderedDict은 삽입된 순서를 기억하는 딕셔너리 자료형입니다. 딕셔너리 자료형과 대부분 동일하며, 삽입된 순서 그대로 갖는다는 특징이 있습니다. di = dict() di['a'] = 1 di['c'] = 2 di['b'] = 3 print(di) # 출력 {'a':1. 'C':3, 'b':2} from collections import OrderedDict or_di = OrderedDict() or_di['a'] = 1 or_di['c'] = 2 or_di['b'] = 3 print(or_di) # 출력 OrderedDict([('a':1), ('b':2), ('c':3)]) 일반 dictionary는 삽입된 순서로 출력되지 않았습니다. 위에는 a, b, c 순서로..
TIL_OrderedDict 이란? OrderedDict은 삽입된 순서를 기억하는 딕셔너리 자료형입니다. 딕셔너리 자료형과 대부분 동일하며, 삽입된 순서 그대로 갖는다는 특징이 있습니다. di = dict() di['a'] = 1 di['c'] = 2 di['b'] = 3 print(di) # 출력 {'a':1. 'C':3, 'b':2} from collections import OrderedDict or_di = OrderedDict() or_di['a'] = 1 or_di['c'] = 2 or_di['b'] = 3 print(or_di) # 출력 OrderedDict([('a':1), ('b':2), ('c':3)]) 일반 dictionary는 삽입된 순서로 출력되지 않았습니다. 위에는 a, b, c 순서로..
2023.01.02 -
github : https://github.com/DHL68/github-DHL68/tree/main/22_04_07_calculator GitHub - DHL68/github-DHL68: github-DHL68-practice github-DHL68-practice. Contribute to DHL68/github-DHL68 development by creating an account on GitHub. github.com GUI 계산기 만들기 강의 내용 import tkinter as tk # 명령어 변수 operator = {'+':1, '-':2, '/':3, '*':4, 'C':5, '=':6} disValue = 0 # 결과값 변수 / 정수 stoValue = 0 # 저장된 값 opPre =..
[내일배움캠프] 사전과제 - 계산기 만들기github : https://github.com/DHL68/github-DHL68/tree/main/22_04_07_calculator GitHub - DHL68/github-DHL68: github-DHL68-practice github-DHL68-practice. Contribute to DHL68/github-DHL68 development by creating an account on GitHub. github.com GUI 계산기 만들기 강의 내용 import tkinter as tk # 명령어 변수 operator = {'+':1, '-':2, '/':3, '*':4, 'C':5, '=':6} disValue = 0 # 결과값 변수 / 정수 stoValue = 0 # 저장된 값 opPre =..
2023.01.02 -
github : https://github.com/DHL68/github-DHL68/tree/main/22_04_08_arcade%20games GitHub - DHL68/github-DHL68: github-DHL68-practice github-DHL68-practice. Contribute to DHL68/github-DHL68 development by creating an account on GitHub. github.com 1. 똥 피하기 게임(기초) import pygame pygame.init() # 초기화 (반드시 필요) # 화면 크기 설정 screen_width = 480 # 가로 크기 screen_height = 640 # 세로 크기 screen = pygame.display.set_..
[내일배움캠프] 사전과제 - 추억의 오락실 게임 만들기github : https://github.com/DHL68/github-DHL68/tree/main/22_04_08_arcade%20games GitHub - DHL68/github-DHL68: github-DHL68-practice github-DHL68-practice. Contribute to DHL68/github-DHL68 development by creating an account on GitHub. github.com 1. 똥 피하기 게임(기초) import pygame pygame.init() # 초기화 (반드시 필요) # 화면 크기 설정 screen_width = 480 # 가로 크기 screen_height = 640 # 세로 크기 screen = pygame.display.set_..
2023.01.02 -
github : https://github.com/DHL68/github-DHL68/tree/main/22_04_15_memory%20test%20game GitHub - DHL68/github-DHL68: github-DHL68-practice github-DHL68-practice. Contribute to DHL68/github-DHL68 development by creating an account on GitHub. github.com 기억력 테스트, 침팬지를 이겨라 import pygame from random import * # 레벨에 맞게 설정 def setup(level): global display_time # 얼마동안 숫자를 보여줄지 display_time = 5 - (level //..
[내일배움캠프] 사전과제 - 추억의 오락실 게임 만들기github : https://github.com/DHL68/github-DHL68/tree/main/22_04_15_memory%20test%20game GitHub - DHL68/github-DHL68: github-DHL68-practice github-DHL68-practice. Contribute to DHL68/github-DHL68 development by creating an account on GitHub. github.com 기억력 테스트, 침팬지를 이겨라 import pygame from random import * # 레벨에 맞게 설정 def setup(level): global display_time # 얼마동안 숫자를 보여줄지 display_time = 5 - (level //..
2023.01.02