본문 바로가기

개발~30

Kotlin 소개 인프런~ 윤재성의 Google 공식 언어 Kotlin 프로그래밍 시작하기 https://www.inflearn.com/course/%EA%B5%AC%EA%B8%80-%EA%B3%B5%EC%8B%9D-%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0/dashboard 자바 개발자를 위한 코틀린 입문(Java to Kotlin Starter Guide) https://www.inflearn.com/course/java-to-kotlin/dashboard https://kotlinlang.org/ [Kotlin Programming Language kotlinlang.org](https://kotlinlang.org/) Kotlin 언어 특징 .. 2022. 12. 10.
자주 사용하는 카프카 명령어 broker1.url.com:9092,broker2.url.com:9092 : 사용자가 생성한 broker url 입니다. 여기서는 2개 입니다. my-custom-topic : 사용자가 생성한 topic 명 입니다. my-custom-group-id : 사용자가 생성한 group id 명 입니다. 토픽 목록 조회 > ./kafka-topics.sh --bootstrap-server broker1.url.com:9092,broker2.url.com:9092 --list 토픽 생성 > ./kafka-topics.sh --create --bootstrap-server broker1.url.com:9092,broker2.url.com:9092 --replication-factor 2 --partitions 2.. 2021. 11. 4.
Go tour https://tour.golang.org/welcome/1 package main import "fmt" func main() { fmt.Println("Hello, 세계") }Internal Directories Code in or below a directory named "internal" is importable only by code in the directory tree rooted at the parent of "internal". Here's an extended version of the directory layout above: /home/user/go/ src/ crash/ bang/ (go code in package bang) b.go foo/ (go code in pac.. 2021. 8. 9.
IntelliJ에서 자주 쓰는 Git 명령어(feat. JIRA) 저는 보통 IntelliJ 단축키를 이용해서 Git을 사용합니다. 그런데 가끔 터미널에서 Git 명령어를 쓸 때가 있습니다. IntelliJ에서 제가 자주 사용하는 단축키와 터미널에서 사용하는 단축키를 공유하려고 합니다. 단축키는 mac 기준입니다! IntelliJ에서 단축키는 Preferences...(⌘,) -> Keymap 에서 확인할 수 있습니다. IntelliJ 단축키를 이용한 Git 커밋 : ⌘K ( $ git commit -am '커밋메세지' ) 커밋하기 위해 단축키를 입력하면 아래와 같은 창이 뜹니다. 파일의 변경 내용을 볼 수 있고, 어느 브랜치에서 작업한지도 표시됩니다. 또한 커밋 메세지도 입력할 수 있습니다. 파일을 더블 클릭해서 커밋하기 전에 파일 내용을 다시 확인하고, 수정할 수도.. 2021. 5. 24.