일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PYTHON
- mysql
- insert
- Jupyter Notebook
- Materials
- appium
- openpyxl
- nohup
- ssh
- sshpass
- Jupyter
- STF
- rethinkdb
- STF_PortForwarding
- ubuntu
- 28015
- 실행권한
- SWIFT
- kitura
- centos
- ftp
- postgres
- appium server
- nGrinder
- postgresql
- create table
- port forwarding
- nmap
- perfect
- GoCD
- Today
- Total
don't stop believing
Odd-Even Sort입니다. 홀짝 정렬이라고도 합니다. 기본적으로 버블정렬과 같지만 홀수자리와 짝수자리를 나눠 비교해 정렬합니다. https://en.wikipedia.org/wiki/Odd%E2%80%93even_sort Odd–even sort - Wikipedia In computing, an odd–even sort or odd–even transposition sort (also known as brick sort[1][self-published source]) is a relatively simple sorting algorithm, developed originally for use on parallel processors with local interconnections. It is a..
CentOS7에 PostgreSQL을 설치하겠습니다. OS 버전부터 확인하고 가겠습니다. $ cat /etc/os-release NAME="Amazon Linux" VERSION="2" ID="amzn" ID_LIKE="centos rhel fedora" VERSION_ID="2" PRETTY_NAME="Amazon Linux 2" ANSI_COLOR="0;33" CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2" HOME_URL="https://amazonlinux.com/" AWS EC2 인스턴스 입니다. centos rhel fedora네요. 먼저 yum update를 해줍니다. $ sudo yum update -y Postgresql을 설치합니다. $ sudo yum in..
버블 정렬과 비슷한 계념으로 비교 대상을 배열의 앞과 뒤에서부터 시작하며 그 간격을 좁혀가며 정렬하는 방법입니다. https://en.wikipedia.org/wiki/Comb_sort Comb sort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Interval based sorting algorithm Comb sort is a relatively simple sorting algorithm originally designed by Włodzimierz Dobosiewicz in 1980.[1][2] Later it was rediscovered by Stephen L en.wikipedia.or..
가장 효율적인 정렬이라고 합니다. https://en.wikipedia.org/wiki/Quicksort Quicksort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search A divide and conquer sorting algorithm Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements o en.wikipedia.org 배열에서 기준이되는 피벗을 잡고 피벗보다 작은것을 왼쪽에 큰것을 오른쪽에 넣으..
scp보다 좀 더 기능이 많은 sftp도 있습니다. sftp도 ssh를 기반으로 실행되며 sftp로 remote server로 접속 후 get 또는 put 명령으로 파일일 내려받거나 올릴 수 있습니다. shell(interactive command) 명령도 사용할 수 있습니다. 먼저 sftp로 remote server에 접속합니다. $ sftp tongchun@10.10.0.118 tongchun@10.10.0.118's password: Connected to tongchun@10.10.0.118. sftp> sftp로 접속하면 sftp 프롬프트 창이 생성됩니다. sftp 프롬프트 창에서 ls -al, cd, mkdir 등의 interactive command를 실행할 수 있습니다. 사용할 수 있는 i..
간혹 Mac에서 서버(Linux)로 파일이나 디렉토리 전체를 업로드해야 할 때가 있습니다. 그럴때 scp (secure copy)를 사용합니다. ssh로 연결해 key 파일을 가자고 있다면 사용할 수 있습니다. scp는 ssh를 사용해 파일을 전달하게 됩니다. 기본적인 scp명령은 아래와 같습니다. scp [OPTION] [user@]SRC_HOST:]file1 [user@]DEST_HOST:]file2 간단하게 내 파일을 remote server에 전달할 때는 아래와 같습니다. 로컬 PC(Mac)에 있는 ngle.txt라는 파일을 10.10.0.56인 서버에 tongchun 계정으로 /home/tongchun/words/ 안으로 복사(업로드)합니다. $ scp ngle.txt tongchun@10.10..