Home
Taelim's blog
Cancel

Array, List 다루기

Array 기본 // import import java.util.Arrays; // 선언 String[] weeks = {"월", "화", "수", "목", "금", "토", "일"}; // 길이 String[] weeks = {"월", "화", "수", "목", "금", "토", "일"}; for (int i=0; i<weeks.length...

Git Error : refusing to merge unrelated histories

Password 저장 git config --global credential.helper store ### 한 번 git pull을 해주면서 비밀번호를 입력하면 저장된다 git pull Git 에러 warning: LF will be replaced by CRLF 해결방법 ### core.autocrlf 기능 꺼주기 git config --glob...

Git Command & Git Ignore - 1

Password 저장 git config --global credential.helper store ### 한 번 git pull을 해주면서 비밀번호를 입력하면 저장된다 git pull Git 에러 warning: LF will be replaced by CRLF 해결방법 ### core.autocrlf 기능 꺼주기 git config --glob...

Python에서 사용할만한 code refactoring library등

참조 링크 Pylint

Kubernetes - (Intro)

내용 작성 중

Linux(Ubuntu) 사용법

NTFS disk(Windows용 format)를 mount하여 사용하기 ### Install package: ntfs-3g sudo apt-get update sudo apt-get install ntfs-3g ### Create mount point sudo mkdir /media/windows ### Check disk whether it i...

앞으로의 블로그 컨텐츠는...?

컨텐츠 업로드 방식 끊어서, 내용 단위 별로 기존에는 Python이면 Python, RDBMS면 RDBMS로 묶어서 컨텐츠를 입력했다. 묶어서 입력하니 보기가 불편하고, 스크롤이 길어지는 단점이 존재한다. 이제부터는 블로그도 어느정도 구축 됐겠다, 각 카테고리에 맞춰서 제목에 번호를 입력하든(연재글이면), 여러 방법을 통해 한 글에는 하나의 내용만...

MongoDB의 메모리 사용량이 과도할 경우 해결 방법(Ubuntu)

MongoDB의 Memory 할당량 설정 https://stackoverflow.com/questions/6861184/is-there-any-option-to-limit-mongodb-memory-usage

Node.js, NPM, etc...

node.js 특징 javascript 기반(V8 엔진) 런타임 Event 기반 Non-blocking I/O 모델(libuv) npm을 통한 라이브러리 제공 Single thread 기반 Event 기반? Event listener에 callback 함수를 등록해 놓음 Event 발생 시 callback 함수가 호출...

Pandas 사용법

Module Import import pandas as pd 기본적인 Dataframe 형성 및 출력(from MSSQL record 객체) ### Dataframe 형성 mssql_data = get_record() ### Record를 가져오는 것으로 가정 df = pd.DataFrame.from_records(mssql_data, columns...