본문 바로가기
728x90
반응형

티스토리챌린지21

[Mac] Xcode license 동의하기 (git 등 사용 시) 이슈 발생% git initYou have not agreed to the Xcode and Apple SDKs license. You must agree to the license below in order to use Xcode.Press enter to display the license:Git Repository 설정 시 발생Xcode and Apple SDKs Agreement동의하기 명령어 및 절차관리자 권한으로 서명 필요sudo xcodebuild -licenseENTER -> agree% sudo xcodebuild -licenseYou have not agreed to the Xcode and Apple SDKs license. You must agree to the license bel.. 2024. 11. 21.
[Chrome] 24년도 Chromedriver 다운받기 PC Chrome 버전 확인더보기 - 설정 - Chrome 정보버전 131.0.6778.69(공식빌드) (x86_64)Chromedriver 다운로드PC에 맞는 version 다운로드Chrome for Testing 사용 가능 여부 대시보드https://googlechromelabs.github.io/chrome-for-testing/ Chrome for Testing availabilitychrome-headless-shellmac-arm64https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.69/mac-arm64/chrome-headless-shell-mac-arm64.zip200googlechromelabs.github.ioMac.. 2024. 11. 20.
[AWS] DynamoDB의 파티션 및 데이터 배포 Amazon DynamoDBAmazon DynamoDB는 데이터를 파티션에 저장합니다.파티션은 SSD(Solid State Drive)로 백업되는 테이블용 스토리지 할당으로,AWS 리전 내의 여러 가용 영역에 자동으로 복제됩니다.파티션 관리는 DynamoDB에서 전적으로 처리하므로 사용자가 파티션을 직접 관리할 필요가 없습니다.데이터 배포: 파티션 키테이블이 단순 기본 키를 가질 경우(파티션 키만 있음)DynamoDB가 파티션 키 값을 기준으로 각 항목을 저장하고 검색합니다.테이블에 항목을 쓰기 위해 DynamoDB는 내부 해시 함수에 대한 입력으로 파티션 키 값을 사용합니다.해시 함수 출력 값은 항목을 저장할 파티션을 결정합니다.테이블에서 항목을 읽으려면 항목의 파티션 키 값을 지정해야 합니다.Dyna.. 2024. 11. 19.
[Python] extend()로 List 자료형에 List 요소 추가하기 LIST.extend()extend()는 리스트뿐 아니라 튜플, 집합(set) 등 다양한 자료형의 요소를개별적으로 풀어서 리스트에 순서대로 덧붙이는 기능을 제공합니다.extend() 특징간결한 코드 작성여러 요소를 추가할 때 for 루프나 append()를 반복적으로 호출할 필요가 없습니다.다양한 자료형에 적용 가능리스트뿐 아니라 튜플, 집합, 문자열 등 다양한 자료형의 요소를 추가할 수 있습니다.thislist = ["apple", "banana", "cherry"]tropical = ["mango", "pineapple", "papaya"]# extend()를 사용하여 tropical의 요소를 thislist에 추가thislist.extend(tropical)print(thislist)# ['appl.. 2024. 11. 18.
[Python] BeautifulSoup select() CSS 선택자 사용법 BeautifulSoup(html, 'html.parser').select()select() 메서드는 HTML 문서에서 CSS 선택자 규칙에 맞는 모든 태그를 리스트 형태로 반환 예제 HTML 코드# HTML 문서를 파싱하여 soup 객체 생성from bs4 import BeautifulSouphtml = """ The Dormouse's story Once upon a time there were three little sisters; and their names were Elsie, Lacie and Tillie; """soup = BeautifulSoup(html, 'html.parser')활용태그 이름으로 찾기soup.select("title")# 결과: [The Dormou.. 2024. 11. 17.
[AWS] IAM 접속 경로 alias 설정 설정 위치IAM - AWS 계정 - 계정 별칭 - 편집 기본 별칭 입력 - 변경 사항 저장 이 계정의 IAM 사용자를 위한 로그인 URL 확인https://{IAM Alias}.signin.aws.amazon.com/console 2024. 11. 16.
728x90
반응형