1. Python 설치(MacOS 기준) homebrew를 통해 python3를 설치한다.brew install python3만약 python3 설치 시 아래와 같은 "Error: No developer tools installed." 에러가 발생한다면, 추가로 아래 명령어를 실행하고 다시 설치를 진행해주면 된다.xcode-select --install설치가 완료되면 python3 버전 명령을 실행해본다.python3 --version기본적으로 설치되는 python 버전은 2이기 때문에, python3를 설치한 경우에는 명령어를 python3, pip3 로 실행해줘야한다. 2. IntelliJ에 Python 플러그인 설치(MacOS 기준) IntelliJ IDEA > Settings > Plugins >..
문제원본 사이트: https://school.programmers.co.kr/learn/courses/30/lessons/258712문제 설명선물을 직접 전하기 힘들 때 카카오톡 선물하기 기능을 이용해 축하 선물을 보낼 수 있습니다. 당신의 친구들이 이번 달까지 선물을 주고받은 기록을 바탕으로 다음 달에 누가 선물을 많이 받을지 예측하려고 합니다.두 사람이 선물을 주고받은 기록이 있다면, 이번 달까지 두 사람 사이에 더 많은 선물을 준 사람이 다음 달에 선물을 하나 받습니다.예를 들어 A가 B에게 선물을 5번 줬고, B가 A에게 선물을 3번 줬다면 다음 달엔 A가 B에게 선물을 하나 받습니다.두 사람이 선물을 주고받은 기록이 하나도 없거나 주고받은 수가 같다면, 선물 지수가 더 큰 사람이 선물 지수가 더..
● 문제 상황 개발 환경에서는 서버 재기동 없이 변경사항을 바로 적용하기 위해 nodemon을 사용했는데, 실행 시 다음과 같은 오류가 발생했다. $ npm run dev > ui-project@1.0.0 dev > nodemon --watch 'client/**' --exec ts-node server/index.ts [nodemon] 2.0.15 [nodemon] to restart at any time, enter `rs` [nodemon] watching path(s): client/** [nodemon] watching extensions: ts,json [nodemon] starting `ts-node server/index.ts` [nodemon] Internal watch failed: E..
■ 오류 발생 스크립트를 이용해 Docker를 설치하는 도중 아래와 같은 오류가 발생했다. $ curl -fsSL https://get.docker.com/ | sudo sh # Executing docker install script, commit: 93d2499759296ac1f9c510605fef85052a2c32be + sh -c 'yum install -y -q yum-utils' Package yum-utils-1.1.31-42.el7.noarch already installed and latest version + sh -c 'yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo' Loaded..
■ 오류 발생 스크립트를 이용해 Docker를 설치하는 도중 아래와 같은 오류가 발생했다. $ curl -fsSL https://get.docker.com/ | sudo sh # Executing docker install script, commit: 93d2499759296ac1f9c510605fef85052a2c32be + sh -c 'yum install -y -q yum-utils' Package yum-utils-1.1.31-50.el7.noarch already installed and latest version + sh -c 'yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo' Loaded..
■ 참고 사이트 Docker Docs | Install Docker Engine on CentOS Docker Docs | Post-installation steps for Linux Docker Docs | Install Docker Compose ■ Docker 및 Docker Compose 설치 ● 스크립트로 설치 현재 일자 기준(2021.11.29) 가장 최신 버전의 Docker 및 Docker Compose를 설치합니다. Docker: 20.10.11 Docker Compose: 1.29.2 ※ Docker Compose의 경우, v2.1.1이 가장 최신 버전이긴 하지만 2.X는 기본 커맨드 자체가 달라졌기 때문에 1.x의 가장 최신 버전인 1.29.2로 설치함 # Docker(20.10.11)..
CentOS 7에서 jq를 설치할 때, yum을 이용해 jq를 설치하면 다음과 같은 오류가 발생한다. [hyper@localhost opt]$ sudo yum install -y jq Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.kakao.com * extras: mirror.kakao.com * updates: mirror.kakao.com No package jq available. Error: Nothing to do jq를 설치하기 위해서는 epel-release를 먼저 설치해주어야 한다. [hyper@localhost opt]$ sudo yum install -y epel-releas..
■ 문제 발생 CentOS 7에서 `yum`을 이용해 git client를 설치하려고 했는데 다음과 같은 오류가 발생했다. [hyper@localhost ~]$ sudo yum install git [sudo] hyper의 암호: Loaded plugins: fastestmirror Determining fastest mirrors Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 알 수 없는 오류" One of the configured repos..
■ 문제 원본 사이트: https://www.hackerrank.com/challenges/minimum-swaps-2/problem?h_l=interview&playlist_slugs%5B%5D=interview-preparation-kit&playlist_slugs%5B%5D=arrays Minimum Swaps 2 | HackerRank Return the minimum number of swaps to sort the given array. www.hackerrank.com 난이도: Medium 최대 스코어: 40 ● 문제 요약 중복되지 않은 연속된 정수들 [1, 2, 3, ..., n]로 구성된 정렬되지 않음 배열이 제공됨 두 요소를 교환할 수 있음 (swap. 스왑) 배열을 오름차순으로 정렬하..
참고 사이트: https://github.com/miiingo/nextcloud-v21.0-docker miiingo/nextcloud-v21.0-docker Nextcloud v21.0 기준 Docker 컨테이너를 이용한 실행 프로젝트. Contribute to miiingo/nextcloud-v21.0-docker development by creating an account on GitHub. github.com ■ 버전 설명 현재 최신버전인 latest 버전을 사용한다. (2021.06.28 기준) Nextcloud: 21.0.2.1 PostgreSQL: 13.3-1.pgdg100+1 ■ 기본 설정 데이터 보존을 위해 볼륨을 설정하는데, 여기에서는 호스트 경로와 볼륨 처리한다. Docker Vol..
참고 사이트: https://about.gitlab.com/install/#ubuntu Download and install GitLab Learn about the various GitLab installation packages and downloads for Ubuntu, Debian, Docker, Google Cloud, and many more. about.gitlab.com ■ 필수 dependencies 설치 및 구성 # 필수 dependencies 설치 및 구성 sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates tzdata perl # 이메일 알림 전송을 위한 Postfix 설치 sudo apt-..
■ 문제 원본 사이트: https://www.hackerrank.com/challenges/sherlock-and-valid-string/problem?h_l=interview&playlist_slugs%5B%5D=interview-preparation-kit&playlist_slugs%5B%5D=strings Sherlock and the Valid String | HackerRank Remove some characters from the string such that the new string's characters have the same frequency. www.hackerrank.com 난이도: Medium 최대 스코어: 35 ● 문제 요약 문자열 s가 주어짐 한 개의 문자는 제거 가능 모든..
■ 문제 원본 사이트: https://www.hackerrank.com/challenges/ctci-making-anagrams/problem?h_l=interview&playlist_slugs%5B%5D=interview-preparation-kit&playlist_slugs%5B%5D=strings Strings: Making Anagrams | HackerRank How many characters should one delete to make two given strings anagrams of each other? www.hackerrank.com 난이도: Easy 최대 스코어: 25 ● 문제 요약 첫 번째 문자열의 문자를 재배열하여 두 번째 문자열을 형성할 수 있는 경우 두 문자열은 서로의 애..
■ 문제 원본 사이트: https://www.hackerrank.com/challenges/alternating-characters/problem?h_l=interview&playlist_slugs%5B%5D=interview-preparation-kit&playlist_slugs%5B%5D=strings Alternating Characters | HackerRank Calculate the minimum number of deletions required to convert a string into a string in which consecutive characters are different. www.hackerrank.com 난이도: Easy 최대 스코어: 20 ● 문제 요약 문자 'A' 또는 ..
- Total
- Today
- Yesterday
- 암브로셔스
- Hyperledger Fabric
- Blockchain
- 직딩잇템
- 블록체인
- 문제풀이
- Hyperledger Indy
- 빅데이터 강의
- 빅데이터
- Private Data
- 빅데이터 기초
- docker
- 하이퍼레저 인디
- DOCs
- javascript
- 기초 of 기초 데이터 개념
- 하이퍼레저 패브릭
- 코딩테스트
- codility
- Hyperledger Fabric v1.1
- 빅데이터 교육
- ubuntu
- 블록 체인
- 하이퍼레저 페브릭
- ambrosus
- 코딜리티
- 알고리즘
- Hyperledger Fabric v1.2
- 어서와 데이터는 처음이지
- 코테
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |