일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- github
- MySQL server on 'db' (115)
- Django
- 코딩테스트
- EC2
- TypeError: 'property' object is not iterable
- DB
- classproperty
- S3
- docker-compose
- Spring
- python all testcode
- AWS
- python
- depends_on
- springboot 3.0.0
- depends
- 2차 코딩테스트
- OperationalError
- docker
- 갓재석
- METACLASS
- AWS S3
- 우아한테크코스 2차
- github skyline
- 프로그래머스
- javascript
- classmethod
- 우아한 테크코스 2차 합격
- 재귀함수가 뭔가요
목록분류 전체보기 (54)
hanbin.dev
depends_on Express dependency between services. Service dependencies cause the following behaviors: docker-compose upstarts services in dependency order. In the following example,dbandredisare started beforeweb. docker-compose up SERVICEautomatically includesSERVICE’s dependencies. In the example below,docker-compose up webalso creates and startsdbandredis. docker-compose stopstops services in d..
하위 디렉토리의 모든 테스트를 실행하고 싶을 때가 있다. 그럴때는 $ python -m unittest discover 를 입력하면 하위 디렉토리의 모든 테스트를 실행한다. (기본적으로 "test*.py" 포맷의 파일을 찾아 실행한다.) $ python -m unittest discover F. ====================================================================== FAIL: test_failure (test2.HelloTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "C:\workspace..
recursion = int(input()) print("어느 한 컴퓨터공학과 학생이 유명한 교수님을 찾아가 물었다.") def q(recursion,cnt): print(cnt * "____" + "\"재귀함수가 뭔가요?\"") if recursion
Django 로 개발을 하던 중 auth 라는 이름을 가진 Custom app을 INSTALLED_APP에 추가하니 오류가 발생했다. 기존의 "django.contrib.auth" 앱과 중복되었기 때문이다. https://code.djangoproject.com/ticket/21562 #21562 (Bad things happen if you name your custom user app "auth") – Django Bad things happen if you name your custom user app "auth" Reported by: Charlie DeTar Owned by: nobody Component: Documentation Version: dev Severity: Normal Keywo..
Django로 이메일 전송을 구현하고 있는데 send_mail 함수에서 위와 같은 오류가 났다. 위 오류의 내용은 send_mail의 매개변수 from_email을 안 넘겨 줬다는 소리다. from django.core.mail import send_mail send_mail( subject="Activate your DoranDoran account.", message="Please Activate your account http://localhost:8000", recipient_list=[user_instance.user.email], fail_silently=False, ) 코드는 위와 같았는데, from_email 이 없다고 오류가 난다. 그런데 django.core.mail.send_mail ..
Django 이메일 verification을 구현하다가 소스를 까봤는데 아래와 같은 코드가 나왔다. # django/core/mail/message.py class EmailMessage: """A container for email information.""" content_subtype = 'plain' mixed_subtype = 'mixed' encoding = None # None => use settings default def __init__(self, subject='', body='', from_email=None, to=None, bcc=None, connection=None, attachments=None, headers=None, cc=None, reply_to=None): """ ..
문제 풀이 코드 def solution(board, moves): answer = 0 result_stack = [] for move in moves: for i, column in enumerate(board): if column[move - 1] != 0: if len(result_stack) > 0: if (recent := result_stack.pop()) == column[move - 1]: #1 answer += 2 board[i][move - 1] = 0 break else: result_stack.append(recent) result_stack.append(column[move - 1]) board[i][move - 1] = 0 break return answer #1 왈러스 연산자를 ..