Hello World fun main() { println("Hello Kotlin") } 표준 출력을 위해 println() 메소드를 이용한다. 세미콜론을 사용하지 않아도 된다. Kotlin 1.3 버전부터는 매겨변수없이 main() 메소드를 작성할 수 있다. fun main(args: Array) { println("Hello Kotlin") } Kotlin 1.3 버전 이하에서는 main() 메소드에 매개변수로 Array 을 넣어줘야한다. Reference play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin Playground: Edit, Run, Share Kotlin Code Online play.kotlinlang.org
문제 [문제 설명] 정수 배열 numbers가 주어집니다. numbers에서 서로 다른 인덱스에 있는 두 개의 수를 뽑아 더해서 만들 수 있는 모든 수를 배열에 오름차순으로 담아 return 하도록 solution 함수를 완성해주세요. [제한사항] numbers의 길이는 2 이상 100 이하입니다. numbers의 모든 수는 0 이상 100 이하입니다. [입출력 예] numbers result [2,1,3,4,1] [2,3,4,5,6,7] [5,0,2,7] [2,5,7,9,12] 예시 설명은 아래 클릭 더보기 입출력 예 #1 2 = 1 + 1 입니다. (1이 numbers에 두 개 있습니다.) 3 = 2 + 1 입니다. 4 = 1 + 3 입니다. 5 = 1 + 4 = 2 + 3 입니다. 6 = 2 + 4..
MySQL 설치 Zabbix를 설치하기 전에 MySQL을 먼저 설치해야 함 # sudo apt update # sudo apt upgrade -y # sudo apt install -y mysql-server # sudo mysql_secure_installation 설치를 할때 보안 설정을 해줘야 하는데, 아래 참고 암호 검증 여부 VALIDATE PASSWORD COMPONENT can be used to test passwords and improve security. It checks the strength of password and allows the users to set only those passwords which are secure enough. Would you like to set..
기본으로 kr.archive.ubuntu.com 로 설정되어 있지만, 속도가 빠른편은 아니다. mirror.kakao.com로 변경하게 되면 apt로 패키지를 다운로드 받을때 꽤나 빨라진다 (체감상으로도 느껴짐) apt 저장소 변경하기 아래 sources.list 파일을 수정하자 $ sudo vi /etc/apt/sources.list kr.archive.ubuntu.com 를 mirror.kakao.com로 변경해보자 :%s/kr.archive.ubuntu.com/mirror.kakao.com/ 저장하고 apt 명령어를 수행해보자 $ sudo apt-get update mirror.kakao.com에서 패키지를 가지고 오는것을 확인 할 수 있다.
JFrog에는 Pro와 OSS 2가지 버전이 존재 Pro는 유로이면서, 지원해주는 기능이 더 많음 OSS는 오픈소스솔루션으로 무료버전이지만, 기본적인 기능만 제공해줌 설치하는 방법은 둘 다 동일하다. 본 글에서는 OSS 버전 설치하는 방법을 다룬다. JFrog OSS 버전 설치본 다운로드 아래 사이트에서 tar.gz를 다운로드받는다. jfrog.com/open-source/ JFrog Open Source Solutions for Developers and DevOps Experts JFrog provides open source solutions like package management, IDE plugins, and free centers for Java, Go, and C/C++, and supp..
네트워크 설정 처음 설정을 하게되면 아마(?) NAT으로 되어 있다. '어댑터에 브리지'로 설정한다. 그리고, VM을 실행한다. ifconfig 명령어로 IP 주소를 확인한다. 만약 ifconfig 가 안먹히면 아래 글 참고 2021/02/18 - [OS/Linux] - Ubuntu 20.04 에서 Command 'ifconfig' not found (net-tools) Ubuntu 20.04 에서 Command 'ifconfig' not found (net-tools) Ubuntu 20.04에서는 ifconfig 를 바로 사용할 수 없다. net-tools를 설치해줘야 사용할 수 있다. net-tools 설치 우선 패키지부터 업데이트한다. # sudo apt-get update # sudo apt-ge..
Ubuntu 20.04에서는 ifconfig 를 바로 사용할 수 없다. net-tools를 설치해줘야 사용할 수 있다. net-tools 설치 우선 패키지부터 업데이트한다. # sudo apt-get update # sudo apt-get upgrade 그리고, net-tools를 설치한다. # sudo apt-get install net-tools 설치 완료 후 ifconfig 명령어 재실행
VirtualBox 설치 아래 사이트에서 Virtual Box를 설치 www.virtualbox.org/ Oracle VM VirtualBox Welcome to VirtualBox.org! News Flash New January 19th, 2021VirtualBox 6.1.18 released! Oracle today released a 6.1 maintenance release which improves stability and fixes regressions. See the Changelog for details. Important November 16th, 2020We're hiring www.virtualbox.org 우분투 이미지 다운로드 releases.ubuntu.com/20.04/ Ub..
도커 설치는 아래 참고 2021/02/18 - [Docker] - Window 도커 3.1.0(Docker) 설치 Window 도커 3.1.0(Docker) 설치 Docker Installer 다운로드 아래 사이트에서 Installer 를 설치 www.docker.com/get-started Get Started with Docker | Docker Learn about the complete container solution provided by Docker. Find informati.. memostack.tistory.com Docker에서 Ubuntu 20.04 시작하기 아래 도커 명령어를 수행하여 컨테이너 생성 및 실행 > docker run -d --name ubuntu -p 22:22 -it..
Docker Installer 다운로드 아래 사이트에서 Installer를 설치 www.docker.com/get-started Get Started with Docker | Docker Learn about the complete container solution provided by Docker. Find information for developers, IT operations, and business executives. www.docker.com Docker Desktop 설치 방금 사이트에서 다운로드한 Installer를 실행하여 Docker Desktop을 실행한다. Close and restart를 누르면, 컴퓨터가 재실행되면서 정상적으로 Docker Desktop이 설치된다. 참고 위와 ..