본문 바로가기

전체 글305

80] 프로그래머스 문자열 반복해서 출력하기 fun main(args: Array) { val input = readLine()!!.split(' ') val s1 = input[0] val a = input[1]!!.toInt() for(i in 0 until a){ print(s1) } } https://postiveemblem.tistory.com/164 [Kotlin][5]코틀린 readline()과 자료형 변환 방법 안녕하세요. 오늘은 저번 타이머 함수 사용법에 이어서 readline()을 이용해 사용자에게 입력받는 법을 알아보려고 합니다. 또 입력 받은 모든 값을 스트링 값으로 반환하는 readline()을 어떻게 하면 postiveemblem.tistory.com 2023. 10. 8.
79] 프로그래머스 a와 b 출력하기 kotlin fun main(args: Array) { val (a, b) = readLine()!!.split(' ').map(String::toInt) println("a = $a") println("b = $b") } https://postiveemblem.tistory.com/164 [Kotlin][5]코틀린 readline()과 자료형 변환 방법 안녕하세요. 오늘은 저번 타이머 함수 사용법에 이어서 readline()을 이용해 사용자에게 입력받는 법을 알아보려고 합니다. 또 입력 받은 모든 값을 스트링 값으로 반환하는 readline()을 어떻게 하면 postiveemblem.tistory.com 2023. 10. 5.
Android] 삼성 최신폰 테스트하기 // Samsung remote test lab https://developer.samsung.com/remote-test-lab Samsung Developers The world runs on you. developer.samsung.com https://developer.samsung.com/remotetestlab/devices https://developer.samsung.com/remotetestlab/devices developer.samsung.com 최신폰도 테스트해 볼 수 있다. 종류도 다양 워치도 테스트 가능 APK 선택하면 remote 폰에서 설치되서 확인가능하다. 좋은 세상이다 2023. 8. 11.
안드로이드 서명만들기 앱 https://play.google.com/store/apps/details?id=com.odom.signmaker 서명만들기_무료 싸인만들기 - Google Play 앱투명배경 서명을 만들어보세요.play.google.com 간단하네👍🏻 2023. 8. 3.
Android] Sdk 33 onBackPressed / onBackPressedCallback private val callback = object : OnBackPressedCallback(true) { override fun handleOnBackPressed() { // 뒤로가기 클릭 시 실행시킬 코드 } } ... override fun onCreate(savedInstanceState: Bundle?) { ... this.onBackPressedDispatcher.addCallback(this, callback) } https://onlyfor-me-blog.tistory.com/522 [Android] targetSdkVersion 33 이후 onBackPressed() deprecated 이슈와 onBackPressedCallback() 사용법 미디엄을 눈팅하던 도중 흥미로운 포스팅을.. 2023. 7. 17.
텍스트로 그림 그려주는 사이트 #scribblediffusion #CreativeML 왼쪽 그림 대충그리고 설명 한줄 넣었더니 오른쪽 미친 그림이 나온다,. https://replicate.com/nitrosocke/archer-diffusion nitrosocke/archer-diffusion – Run with an API on Replicate Model weights: https://huggingface.co/nitrosocke/archer-diffusion Archer Diffusion This is the fine-tuned Stable Diffusion model trained on screenshots from the TV-show Archer. Use the tokens archer style in your prompts for the effect. Portraits re.. 2023. 7. 15.