일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- postgresql
- ftp
- Jupyter
- STF
- openpyxl
- create table
- 실행권한
- insert
- perfect
- Jupyter Notebook
- appium server
- postgres
- ssh
- centos
- kitura
- STF_PortForwarding
- Materials
- sshpass
- nGrinder
- ubuntu
- appium
- 28015
- nmap
- mysql
- rethinkdb
- SWIFT
- PYTHON
- port forwarding
- GoCD
- nohup
- Today
- Total
목록분류 전체보기 (323)
don't stop believing
버블 정렬과 비슷한 계념으로 비교 대상을 배열의 앞과 뒤에서부터 시작하며 그 간격을 좁혀가며 정렬하는 방법입니다. 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..
왜 난쟁이 정렬이라고 했는지는 모르지만 처음 불릴때는 stupid sort라고 했다고 합니다. 성능면에서는 별로 좋지 못한 정렬 알고리즘입니다. https://en.wikipedia.org/wiki/Gnome_sort Gnome sort - Wikipedia Gnome sort (dubbed stupid sort) is a sorting algorithm originally proposed by an Iranian computer scientist Hamid Sarbazi-Azad (professor of Computer Engineering at Sharif University of Technology)[1] in 2000. The sort was first called stupid sort[2] (n..
칵테일 쉐이커 정렬 또는 양방향 버블 정렬이라고도 합니다. 버블 정렬에서는 오름차순일 경우 큰값을 찾아 오늘쪽 자리부터 채워나가게 됩니다. 이걸 양쪽으로 오가며 큰 값과 작은 값을 배열의 끝에서부터 채워오는 정렬입니다. https://en.wikipedia.org/wiki/Cocktail_shaker_sort Cocktail shaker sort - Wikipedia Cocktail shaker sort,[1] also known as bidirectional bubble sort,[2] cocktail sort, shaker sort (which can also refer to a variant of selection sort), ripple sort, shuffle sort,[3] or shuttle..
합병 정렬 또는 병합 정렬이라고 합니다. 재귀호출로 길이가 1인 배열로 분리시키고 분리된 배열을 비교해 순서를 바꿔주며 병합합니다. https://en.wikipedia.org/wiki/Merge_sort Merge sort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search A divide and combine sorting algorithm In computer science, merge sort (also commonly spelled mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most impl en...
제자리 정렬이라고도 합니다. 최소값을 배열의 가장 앞자리와 교체합니다. https://en.wikipedia.org/wiki/Selection_sort Selection sort - Wikipedia In computer science, selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) time complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted en.wikipedia.org Go로 구현한 코드입니다..
https://en.wikipedia.org/wiki/Bubble_sort Bubble sort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Simple comparison sorting algorithm Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list, compares adjacent pairs an en.wikipedia.org Buble Sort 알고리즘은 가장 간단하지만 성능은 그리 좋지 않은 알고리즘입니다. 각 배열의 앞자리와..
GoCD를 설치하고 처음 Pileline을 추가할 때 좀 헤맸습니다. 우선 문제는 아래와 같습니다. GoCD(go-server)를 설치한 서버에 go 계정은 있으나 home 디렉터리가 /var/go 였다는 것 (당황) 처음 go 계정으로 접속하니 /var/go 디렉터리에 권한이 없었다는 것. ssh-keygen 으로 퍼블릭키를 생성하고 gitlab에 등록해도 권한이 없다는 메시지가 나온 것 지금은 해결한 상태이며 처음부터 설명하겠습니다. 처음 Pipeline을 추가할 때 Materials를 추가해야 합니다. 사내에 있는 Git 서버와 연동할 프로젝트는 아래와 같습니다. ssh 경로 : git@gitlab.ngle.co.kr:marshmallow/APITutor.git http 경로 : http://git..