[IntelliJ] boot jdk 변경뒤 project 안 열리는 현상 by 김정환 about JDK
Maria DB (MySQL 포함) 이모지 입력 버그 해결 by 안경찬 about MySQL,SQL
- Follow all the topics you care about
- and we’ll deliver the best stories for you to your homepage and inbox
코로나 바이러스와 디지털 헬스케어 (3) 스마트폰을 통한 확진자 역학 검사 by 최윤섭
출시(라 쓰고 망이라 읽는다)의 변 by 유영천
- 그들이 진행했던 상당수의 프로젝트들이 마무리 되지 못하고 디스크 어딘가에 처박혀서 0과 1의 형태로만 존재하다가 그마저도 파쇄되는 경우를 숱하게 보아왔다
- 내가 똥 쌌다는 사실만이라도 세상 누군가가 알 수 있다면 그거 의미있지 않나?
- 난 ‘참여’한게 아니고 정확하게 ‘내가 만들었다’고 떳떳하게 밝힐 수 있는 게임을 두개 출시해서 세상에 남겼다
BETTER WAY 14: None을 반환하기보다는 예외를 일으키자 by 김태성 about Python
[Reactjs] AWS Lambda@Edge 이미지 리사이징 by 이동원 about AWS
- const querystring = require ( 'querystring' ) ; // Don't install
- const AWS = require ( 'aws-sdk' ) ; // Don't install
- stringify ( params ) } ` ) ; // Cannot convert object to primitive value
[VSCode] 라인으로 이동 단축키 by 이현진
- VSCode로 개발을 할 때 라인 번호를 이용하여 라인으로 이동하는 단축키 입니다
Three Words by 안기웅
- checkio("Hello World hello") == True checkio("He is 123 man") == False checkio("1 2 3 4") == False checkio("bla bla bla bla") == True checkio("Hi") == False
- def checkio(words: str) -> bool: return True or False #These "asserts" using only for self-checking and not necessary for auto-testing if __name__ == '__main__': print('Example:') print(checkio("Hello World hello")) assert checkio("Hello World hello") == True
- # These "asserts" using only for self-checking and not necessary for auto-testing if __name__ == '__main__': print('Example:') print(checkio("Hello World hello")) assert checkio("Hello World hello") == True
Date and Time Converter by 안기웅
- 2000 00:00") == "1 January 2000 year 0 hours 0 minutes" date_time("19
- 2999 01:59") == "19 September 2999 year 1 hour 59 minutes" date_time("21
- 1999 18:01") == "21 October 1999 year 18 hours 1 minute" # NB: words "hour" and "minute" are used only when time is 01:mm (1 hour) or hh:01 (1 minute)
Acceptable Password II by 안기웅
- is_acceptable_password('short') == False is_acceptable_password('muchlonger') == False is_acceptable_password('ashort') == False is_acceptable_password('muchlonger5') == True is_acceptable_password('sh5') == False
- # Taken from mission Acceptable Password I def is_acceptable_password(password: str): if len(password) > 6: return True else: return False def is_acceptable_password(password: str) -> bool: # your code here return False if __name__ == '__main__': print("Example:") print(is_acceptable_password('short')) # These "asserts" are used for self-checking and not for an auto-testing assert is_acceptable_password('short') == False assert is_acceptable_password('muchlonger') == False assert is_acceptable_password('ashort') == False assert is_acceptable_password('muchlonger5') == True assert is_acceptable_password('sh5') == False print("Coding complete
- if __name__ == '__main__': print("Example:") print(is_acceptable_password('short')) # These "asserts" are used for self-checking and not for an auto-testing assert is_acceptable_password('short') == False assert is_acceptable_password('muchlonger') == False assert is_acceptable_password('ashort') == False assert is_acceptable_password('muchlonger5') == True assert is_acceptable_password('sh5') == False print("Coding complete
Daily Study Logiing3 - redux, dispatch by 차이새