AWS Certified Data Engineer – Associate (DEA-C01) 만점 합격 후기
·
기타
📌 요약덤프 문제만 공부함. (총 205문제)총 준비기간은 2주 반(25년 2월 기준)실제 시험은 내 기억으로는 1문제가 처음 보는 문제였고나머지는 모두 덤프 문제와 똑같이 나왔고 대부분 보기의 순서까지 같았다.시험 접수AWS Certified Data Engineer – Associate(DEA-C01)위 링크에서 시험에 대한 기본적인 정보를 확인하고 예약할 수 있다.AWS Certified Data Engineer - Associate(DEA-C01)은(는) 100~1,000의 점수로 구분되어 평가됩니다. 시험 합격에 필요한 점수는 720입니다. 30분 추가시간 받기영어 원어민이 아니라면 30분의 시간을 더 받을 수 있다.기존 130분 + 30분 => 160분EXAM REGISTRATION -> E..
[AWS] Elastic Beanstalk 에러: failed to create: [AWSEBInstanceLaunchWaitCondition].
·
기타
Elastic Beanstalk 환경 생성 중 에러내용은 아래와 같다.   아래 링크에서 해결법을 찾았다.  https://repost.aws/questions/QUuSGs2tFHQkyoiESiyeHtnA/awsebinstancelaunchwaitcondition-error-on-deploying-java-app-on-elastic-beanstalk Environment health has transi..." data-og-host="repost.aws" data-og-source-url="https://repost.aws/questions/QUuSGs2tFHQkyoiESiyeHtnA/awsebinstancelaunchwaitcondition-error-on-deploying-java-app-on-ela..
[AWS] Elastic Beanstalk 에러: The instance profile aws-elasticbeanstalk-ec2-role associated with the environment does not exist.
·
기타
https://stackoverflow.com/questions/30790666/error-with-not-existing-instance-profile-while-trying-to-get-a-django-project-ru/76620598#76620598 Error with not existing instance profile while trying to get a django project running on AWS BeanstalkI`m trying to deploy a django project to AWS Beanstalk following this tutorial. I executed eb create and after a while I get the error The instance prof..
[AWS] Elastic Beanstalk 에러: The following resource(s) failed to create: [AWSEBAutoScalingLaunchConfiguration].
·
기타
https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environments-cfg-autoscaling-launch-templates.html Launch Templates - AWS Elastic BeanstalkOnce an environment is using launch templates, Elastic Beanstalk will never move it back to launch configurations. This is the case even if any these option settings that prompted the original use of launch templates are removed.docs.aws.amazon.com  20..
Django 모델에서 기본 키 참조: pk vs id
·
Django
Question.objects.get(pk=1000)과 Question.objects.get(id=1000)은 Django에서 동일한 결과를 반환한다. 여기서 pk는 "primary key"의 약자로, Django 모델에서 기본 키를 참조하는 짧은 표현이다. 두 표현의 차이와 pk를 사용하는 이유는 다음과 같다:1. 명확성:pk는 모델의 기본 키를 명시적으로 나타내므로, 모델의 기본 키가 무엇인지 확실히 알 수 있다.id를 사용할 경우, id가 기본 키임을 알고 있는 경우에만 이해할 수 있다. 다른 필드명이 기본 키인 경우, id를 사용하면 혼동할 수 있다.2. 유연성:모델에서 기본 키를 id가 아닌 다른 필드로 설정했을 때도 pk를 사용할 수 있다. 예를 들어, unique_id라는 필드를 기본 키로..
파이썬 자료구조
·
Python
1. 리스트(list)인덱스 접근 []: O(1)append(): O(1)pop() (맨 끝 요소 제거): O(1)pop(i) (임의 위치 i에서 제거): O(n)insert(i, x): O(n)del del list[i]:마지막 요소 제거: O(1)임의 위치에서 제거: O(n)remove(x): O(n) (값을 찾기 위한 선형 탐색 필요)index(x): O(n)sort(): O(nlog⁡n)reverse(): O(n)len(): O(1)슬라이싱 list[start:end]: O(k) (슬라이싱되는 길이에 비례)2. 딕셔너리(dict)인덱스 접근 d[key]: O(1)삽입 및 업데이트 d[key] = value: O(1)삭제 del d[key]: O(1)get(key): O(1)pop(key): O(1..
[프로그래머스] 기능개발: math.ceil 대체 수식
·
TIL
문제https://school.programmers.co.kr/learn/courses/30/lessons/42586 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr  풀이1def solution(progresses, speeds): answer = [] days_left = [(100 - progresses[i] + speeds[i] -1) // speeds[i] for i in range(len(progresses))] day = days_left[0] cnt = 1 for d in days_left[1:]: ..
[프로그래머스] 예산: O(n^2) -> O(n log n)
·
TIL
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/12982 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr O(n^2)def solution(d, budget): d.sort() while sum(d) > budget: d.pop() return len(d) sum()을 이용해 간단하게 푼 방법 but..1. d.sort()시간 복잡도: O(n log n)sort()는 Timsort 알고리즘을 사용하므로 리스트 크기 n에 대해 O(n log n)의 시간이 ..
반응형