본문 바로가기

분류 전체보기402

[ HTML ] HTML 기본 [출처] https://opentutorials.org/course/2039/10930 기술소개 - 생활코딩 기술소개 2015-12-05 10:55:56 opentutorials.org 기본 문법 - ! + Tap key HTML 기술소개 기본문법 하이퍼텍스트와 속성 리스트와 태그의 중첩 선행학습 본 수업을 효과적으로 수행하기 위해서는 웹애플리케이션에 대한 전반적인 이해가 필요합니다. 이를 위해서 준비된 수업은 아래 링크를 통해서 접근하실 수 있습니다. 예제 파일 1) index.html HTML 기술소개 기본문법 하이퍼텍스트와 속성 리스트와 태그의 중첩 선행학습 본 수업을 효과적으로 수행하기 위해서는 웹애플리케이션에 대한 전반적인 이해가 필요합니다. 이를 위해서 준비된 수업은 아래 링크를 통해서 접근하.. 2023. 4. 11.
vscode 단축키 출처 : https://demun.github.io/vscode-tutorial/shortcuts/ 단축키 - Visual Studio Code tutorial 단축키 파일 > 기본 설정 > 바로가기 키 에서 현재 활성화된 키보드 단축키를 볼 수 있습니다 . 기본 편집 키 명령 명령 ID ctrl+X 행 삭제 (빈 선택) editor.action.clipboardCutAction ctrl+C 행 복사 (빈 선택) e demun.github.io https://www.biew.co.kr/entry/Visual-Studio-CodeVS-Code-%EC%9C%A0%EC%9A%A9%ED%95%9C-%EB%8B%A8%EC%B6%95%ED%82%A4-%EC%82%AC%EC%9A%A9-%EB%B0%A9%EB%B2%9.. 2023. 4. 10.
Getting Started with Django Django overview Django Home : https://www.djangoproject.com/ Django uses the MVT (Model-View-Template) pattern, which is slightly similar to MVC (Model-View-Controller) pattern. The MVT pattern consists of three main components: Model – defines the data or contains the logic that interacts with the data in the database. View – communicates with the database via model and transfers data to the te.. 2023. 4. 8.
Django Create App Django projects and applications In the Django framework: A project is a Django installation with some settings. An application is a group of models, views, templates, and URLs. Django 프로젝트에는 하나 이상의 응용 프로그램이 있을 수 있습니다. 예를 들어 프로젝트는 블로그, 사용자 및 위키와 같은 여러 응용 프로그램으로 구성될 수 있는 웹 사이트와 같습니다. 일반적으로 다른 Django 프로젝트에서 재사용할 수 있는 Django 애플리케이션을 디자인합니다. 다음 그림은 Django 프로젝트의 구조와 응용 프로그램을 보여줍니다. Creating a blog ap.. 2023. 4. 8.
[ Concurrency ] Index MULTITHREADING Threads vs. Processes Threading Module Multithreading Example Threading Event Stop a Thread Daemon Threads Thread-safe Queue Thread Pools Threading Locks MULTIPROCESSING Multiprocessing Module Process Pools – ProcessPoolExecutor ASYNCIO Python Event Loop Async/Await Creating Tasks Cancelling Tasks Cancelling Tasks – asyncio.wait_for() Future Running Multiple Tasks Concurrently 2023. 4. 8.
[ DJANGO ] Index DJANGO BASICS Getting Started with Django Creating a Django App Defining Models Making Migrations Creating Flash Messages Using Django Admin Understanding Django Form Creating Templates Defining Edit Form Creating Delete Form Building Login/Logout Forms Building User Registration Form DJANGO CLASS-BASED VIEWS Django Todo App Displaying a List using Django ListView Displaying a Model Detail using.. 2023. 4. 8.
[ Python Advance ] Index VARIABLES & MEMORY MANAGEMENT References Garbage Collection Dynamic Typing Mutable and Immutable Python is operator Python None NUMERIC TYPES Integers Floor Division Modulo Boolean AND Operator OR Operator Float Converting Float to Int Rounding Decimal VARIABLE SCOPES Variable Scopes nonlocal CLOSURES Python Closures DECORATORS Python Decorators Python Decorator with Arguments Python Class Decor.. 2023. 4. 8.
[ Python Basic ] Index GETTING STARTED What is Python Install Python Setup VS Code for Python Develop Python Hello World Program PYTHON FUNDAMENTALS Python Syntax Variables Strings Numbers Boolean Constants Comments Type Conversion CONTROL FLOW if…else Ternary Operator for Loop while Loop break continue pass FUNCTIONS Python Functions Default Parameters Keyword Arguments Recursive Functions Lambda Expressions Function.. 2023. 4. 8.
Custom Exceptions https://www.pythontutorial.net/python-oop/python-custom-exception/ Introduction to the Python custom exception To create a custom exception class, you define a class that inherits from the built-in Exception class or one of its subclasses such as ValueError class: The following example defines a CustomException class that inherits from the Exception class: class CustomException(Exception): """ m.. 2023. 4. 7.