일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자소서 빨리
- mac hadoop
- Failed to connect to localhost:10000
- is not allowed to impersonate hive (state=08S01
- mac hive
- mac hive 3
- mac hadoop 설정
- 자소서 시간 줄이기
- 기업 조사 빨리 하는 법
- mac hadoop 설치
- hadoop safe mode leave
- 백준 18428
- 도커 교과서
- 자소서 빨리 쓰는 법
- 카카오 2020 코딩테스트
- hive beeline 에러
- 카카오 자물쇠와 열쇠
- Safe mode is ON
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- 이더리움
- hive beeline
- mac hadoop 3
- hive beeline 실행
- 자소서 너무 오래 걸림
- 카카오 2020 코테
- Resources are low on NN
- hadoop safe mode
- hive beeline 설정
- code=0)
- 이더리움 #ethereum
- Today
- Total
목록Programming Language (49)
A seeker after truth
you can access a pseudo random number generator function that's called rand(). #include #include using namespace std; int main() { cout
In a C++ program, memory is divided into two parts: The stack: All of your local variables take up memory from the stack. The heap: Unused program memory that can be used when the program runs to dynamically allocate the memory. Many times, you are not aware in advance how much memory you will need to store particular information in a defined variable and the size of required memory can be deter..
- Whitespace, such as spaces, tabs, and newlines, is also ignored, although it is used to enhance the program's visual attractiveness. - In C++, streams are used to perform input and output operations. In most program environments, the standard default output destination is the screen. In C++, cout is the stream object used to access it. - cout is used in combination with the insertion operator...
*본문은 (김상형 저, 한빛미디어, 2018)을 공부하며 작성된 내용입니다. 1. raise raise 명령은 고의적으로 예외를 발생시킨다. 작업을 위한 선행 조건이 맞지 않거나, 더이상 진행할 수 없는 치명적인 문제가 발생했을 때 호출원으로 예외를 던져 잘못되었음을 알린다. def calcsum(n): if n
*본문은 (김상형 저, 한빛미디어, 2018), (앨런 다우니, 길벗, 2017)을 읽고 공부한 내용을 메모한 것입니다. 1. 파일 프로그램이 데이터를 관리하는 가장 간단한 방법. open, write, close 등의 함수는 일단 생략(* 이렇게 세가지 함수가 있는 이유: 파일을 저장하는 디스크는 메모리보다 느리기 때문에 원활한 입출력을 위해 준비 과정이 필요!) *파일 객체가 따로 있으며, 이터레이터 중 하나다. 따라서 txt파일을 open만 한 상태에서는 문자열 자료형이라고 할 수 없다. 또한 메서드도 당연히 문자열 메서드 적용할 수 없음. 1) read 함수 시리즈 - read만 하면, 읽는 파일 용량이 클 경우 메모리를 많이 소모하므로 text = f.read(10) 과 같은 방식으로 읽을 양을..
*본문은 (앨런 다우니, 길벗, 2017)을 읽으며 이해한 내용을 뼈대로 하되, (김상형 저, 한빛미디어, 2018) 및 경희대 '웹파이썬 프로그래밍' 수업 내용을 바탕으로 글 내용을 보충하였습니다. 1. 클래스와 객체 1) 프로그래머 정의 타입 = 클래스 class Point: '''2차원 공간에 점을 표현한다.''' Point 클래스를 정의하면 클래스 객체가 만들어진다. Point는 최상위 레벨에 정의되어 있으므로 전체 이름은 __main__.Point(IDLE에 Point라고 입력하면 class '__main__.Point')가 된다. 클래스 객체는 객체를 생성하는 공장과 같으므로, Point를 생성하고 싶다면 Point를 함수처럼 호출하면 된다. >>> blank = Point() >>> blan..