분류 전체보기234 1 실습5 DELETE API todo 삭제 앞 단계 참조 링크: 프로젝트 소개 및 환경 구축: 2024.04.05 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습1 GET API 전체조회 1 실습1 GET API ToDo 전체 조회: 2024.04.05 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습1 GET API 전체조회 1 실습2 GET API ToDo 단일 조회: 2024.04.09 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습2 GET API 단일조회 1 실습3 POST API ToDo 생성: 2024.04.15 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습3 POST API todo 생성 1 실습4 PATCH API ToDo 수정: 2024.04... 2024. 4. 17. dict.pop() 메소드 01 문법 dictionary.pop(keyname, defaultvalue) 02 정의 기능: 딕셔너리 안에 있는 아이템 삭제 반환값: 삭제한 아이템의 value 값 03 Parameters keyname 필수 삭제하고 싶은 아이템의 key 값 defaultvalue optional 지정된 key 값이 딕셔너리에 없을 경우 반환할 값 지정된 key 값이 딕셔너리에 없고 defaultvalue 미지정 시 에러 발생 04 예시 car = { "brand": "Ford", "model": "Mustang", "year": 1964 } x = car.pop("model") print(x) >>> Mustang print(car) >>> {'brand': 'Ford', 'year': 1964} 참조 https:.. 2024. 4. 17. LSF 데몬 00 LSF daemonsLSF interacts with several daemons, each responsible for different aspects of the entire LSF workflow.patch하면 cluster를 restart 필수# lsf_daemons restartStopping the LSF subsystemStarting the LSF subsystemcluster에 설치된 lsf version, cluster 이름, 관리 호스트 이름 확인# lsidIBM Spectrum LSF Standard 10.1.0.13, Apr 15 2022Copyright International Business Machines Corp. 1992, 2016.US Government User.. 2024. 4. 16. LSF 명령어 bacctDisplays accounting statistics about finished jobs.badminThe badmin command is the administrative tool for LSF.bappDisplays info about application profile configuration.battachRuns a shell process to connect to an existing job execution host or container.battrProvides a set of subcommands to manage LSF host attributes for attribute affinity scheduling.bbotMoves a pending job to the bottom o.. 2024. 4. 16. Subnet Mask란 (NETMASK 설정) 00 개념 정리 Subnet Mask (서브넷 마스크)를 이해하려면 IP 주소가 뭔지 알아야 됨 1. IP 주소란 an identifier for a computer or device on a network every device has to have an IP 주소 (specifically, IPv4 address) for communication purposes IPv4 address 범위: 0.0.0.0 - 255.255.255.255 32-bit numeric written as 4 numbers, separated by periods(.) each group of numbers that are separanted by periods is called an octet The number range.. 2024. 4. 16. 1 실습4 PATCH API todo 수정 앞 단계 참조 링크: 프로젝트 소개 및 환경 구축: 2024.04.05 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습1 GET API 전체조회 1 실습1 GET API ToDo 전체 조회: 2024.04.05 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습1 GET API 전체조회 1 실습2 GET API ToDo 단일 조회: 2024.04.09 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습2 GET API 단일조회 1 실습3 POST API ToDo 생성: 2024.04.15 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습3 POST API todo 생성 현재 파일 내용: # /todos/src/main.py 내용.. 2024. 4. 16. \d 메타 명령어 (Meta-Commands) 00 개요vertica가 설치 된 서버에서 vertica를 vsql로 접속 시 \d 메타 명령어 사용 가능 # /opt/vertica/bin/vsql -U 사용자이름 -w 비밀번호 Welcome to vsql 사용자이름=>예를 들면,# /opt/vertica/bin/vsql -U dbadmin -w siWelcome to vsql dbadmin=>database를 생성하고 table을 생성한 후 /d 명령어를 사용하여 database에 관련된 정보(예, table 목록)들을 조회 가능01 \d 메타 명령어Vertica는 여러 가지 \d 명령어들을 지원함 이 명령어들은 database 객체의 다양한 정보를 반환0. 문법\dCommand [[schema.]patter.. 2024. 4. 15. RLE (데이터 압축 알고리즘) 01 RLE란? 'Run-Length Encoding'의 약자 중복/연속된 데이터('runs')를 '빈도 + 데이터'로 이루어진 쌍 (frequency + data pairs)으로 인코딩(변환)시키는 알고리즘 즉, 연속으로 나타나는 데이터를 연속된 수 (빈도)와 해당 값 (데이터)로 인코딩하는 방법 중복이 많은 데이터들을 다룰 때 사용됨 참조 https://velog.io/@rg_im/DL-Run-Length-Encoding-RLE 2024. 4. 15. EGO (Alter Ego) 01 EGO란a tool to run Linux desktop applications under a different local userCurrently integrates with Wayland, Xorg, PulseAudio and xdg-desktop-portalYou may think of it as xhost for Wayland and PulseAudio. This is done using filesystem ACLs and xhost command. 참조https://github.com/intgr/ego 2024. 4. 15. 이전 1 ··· 19 20 21 22 23 24 25 26 다음