목록DEVELOPMENT (31)
JS Coding
안녕하세요. 오늘은 GitHub에 있는 프로젝트 Repositoris 를 가져오는 걸 하려고 합니다. 일단 GitHub에서 주소를 code를 눌러 가져옵니다. https://github.com/ GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea... github.com Code를 눌러서 HTTPS를 복사합니다. 저장하고 싶어하는 폴더를 만들고 폴더에 들..
Git 가입 Git 홈페이지 https://github.com/ 홈페이지에 들어가서 일단 회원가입 진행 GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea... github.com 회원가입 후 Git Bash 설치 ( 소스코드 나중 작성) https://git-scm.com/downloads/ 들어가서 사양에 맞게 다운로드 Git - Downloads D..
1. STS 4 설치 다운로드 밑에 링크를 클릭 후 다운로드 받아 압축 파일 압축풀기로 원하는 경로 선택 진행 https://spring.io/tools Spring | Tools spring.io SpringToolSuite4 클릭 실행 Spring initializer를 활용하여 프로젝트 생성 하거나 sts4 내 Spring Starter Project로 하여 의존성 추가 후 프로젝트를 만들며 여기서 Lombok을 추가하면 실행이 되어야 하지만 STS4 업데이트 되면서 Lombok을 따로 설치 해줘야 하는 상황이 온다. https://projectlombok.org/ 에 링크에 들어가 lombok.jar를 다운 받고 명령 프로토콜을 권리자 권한으로 실행 한다. ( ** 여기서 lombok.jar가 있..
두 개의 서버(=요청을 처리하는 기계)가 있습니다. Node.js로 만들어 진 거 하나, 일반 서버 하나 이렇게 두 개가 있다고 가정해봅시다. 이 서버는 동일한 작업을 수행하는 서버입니다. 예를 들어 CGV 페이지라고 생각해봅시다. 손님이 예매할 영화의 티켓 수를 얘기(요청)하면 CGV 페이지의 서버가 요청을 받고 티켓을 줍니다(응답). 손님은 서버가 준 티켓을 받습니다. 일반 서버의 경우 손님이 4명 있다고 생각해봅시다. 1번째 손님은 티켓 1장을 요구해서 서버가 티켓 1장을 줬습니다. 2번째 손님은 1번째 손님이 가기를 기다렸다가 차례가 되면 예매를 합니다. 1장을 요구하고 서버에게 1장을 받고 갑니다. 그런데 3번째 손님이 200장을 예매합니다. 그러면 서버는 200장의 티켓을 준비하고, 3번째 손..
public class SortExample { public static void main(String[] args) { BubbleSort bubble = new BubbleSort(new int[] { 27, 15, 90, 63, 56, 70 }); System.out.println(Arrays.toString(bubble.source)); int[] sortedArray = bubble.sort(); System.out.println("버블정렬 결과 : " + Arrays.toString(sortedArray)); SelectionSort selection = new SelectionSort(new int[] { 27, 15, 90, 63, 56, 70 }); sortedArray = selecti..