본문 바로가기

카테고리 없음

2020-06-19 12시 개발자 글 모음 | "Docker 를 사용해 Databas" 외 5개 이야기

6월 18일 - 1 by 김이삭

  • - 유적지 : 경기도 연천 전곡리
  • - 토기사용 (수확물 저장) : 많은 양의 토기가 필요하지 않았기 때문에 무늬가 있다
  • - 유적지 : 주로 큰 강 유역이나 해안 지역에 분포


6월 18일 - 2 by 김이삭

  • let ~ down : ~을 실망시키다
  • Any apartment will do as long as the rent is reasonable
  • Any apartment will do as long as the rent is reasonable


경험은 역행할 수 없다 - 인터렉션 디자이너의 내공 by 황성재

  • 나오면서 길에서 택시를 기다리는 건 바보 같은 일이 되어버렸다
  • 나오면서 길에서 택시를 기다리는 건 바보 같은 일이 되어버렸다
  • 말은 걷는 것보다 편했고 카메라는 그림을 그리는 것보다 편했다


Swift vs Kotlin — Which is better? by 김기수 about Swift,Kotlin

  • Swift vs Kotlin — Which is better
  • Swift vs Kotlin — Which is better?


Dataframe DB와 kdb+ by 김형준 about Python

  • Key-values (mappings between keys and values) You can use TileDB to store data in a variety of applications
  • The power of TileDB stems from the fact that any data can be modeled efficiently as either a dense or a sparse multi-dimensional array (even a dataframe and a key-value store)
  • connectivity and stream processing into one powerful platform PLATFORM CAPABILITIES Unified architecture time-series database streaming analytics real-time database historical data warehouse relational data


Docker 를 사용해 Database 간단하게 구축하기 (Mongodb) by 이바울 about Docker

  • version: '3' services: mongodb: image: mongo ports: - "${MONGO_PORT}:27017" volumes: - /Users/wool/Dev/mongodb:/data/db container_name: "docker-mongodb" env_file: -
  • $ docker exec -it docker-mongodb bash root@33045c9dba7a:$ mongo MongoDB shell version v4
  • tips 바로 인증하고 접속하기 > mongo -u username -p password —authenticationDatabase admin 바로 인증하고 admin 데이터베이스로 접속하기 > mongo admin -u username -p password —authenticationDatabase admin