분류 전체보기
-
Exercism - Twofer (with.Kotlin)문제풀이/Exercism 2019. 7. 16. 00:41
[문제] Two-fer or 2-fer is short for two for one. One for you and one for me. Given a name, return a string with the message: One for X, one for me. Where X is the given name. However, if the name is missing, return the string: One for you, one for me. Here are some examples: NameString to return Alice One for Alice, one for me. Bob One for Bob, one for me. One for you, one for me. Zaphod One for ..
-
GitHub - AndroidCheatAndroid 2019. 7. 14. 10:28
https://github.com/13mile/AndroidCheat 13mile/AndroidCheat Contribute to 13mile/AndroidCheat development by creating an account on GitHub. github.com 현재 회사에서 만든 소스를 오픈소스 프로젝트로 운영중입니다. 안드로이드 개발시나 테스트시 편의성을 제공하는 코드를 분리하여 라이브러리 형태로 만들었습니다. JitPack 형태로 배포 중입니다. Setup dependencies { implementation 'com.github.13mile:androidcheat:0.0.27' } 운영해보면서 점차 확장해 볼 생각입니다.
-
Koin Sample Test codeAndroid 2019. 7. 14. 10:17
https://github.com/DNights/KoinSampleTest DNights/KoinSampleTest Contribute to DNights/KoinSampleTest development by creating an account on GitHub. github.com Koin Sample code 입니다. 아직 실무에 써본적이 없어서 Sample 로 만들어 보면서 공부중입니다. DI를 써보면서 개념도 같이 공부중입니다. 차후 정리하면서 올릴 예정입니다. [참고 내역] https://insert-koin.io/ insert-koin.io a smart Kotlin dependency injection framework insert-koin.io https://github.com/Agusta..
-
exercism submit 방법문제풀이/Exercism 2019. 7. 10. 22:10
https://dnight.tistory.com/entry/exercism-%EC%84%A4%EC%B9%98-%EB%B0%A9%EB%B2%95 exercism 설치 방법 https://exercism.io Exercism Code Practice and Mentorship for Everyone. Level up your programming skills with 1,879 exercises across 38 languages, and insightful discussion with our dedicated team o.. dnight.tistory.com exercism 설치방법에 대해서는 이전에 작성해둔 글을 참고 해주시기 바랍니다. Kotlin의 HelloWorld 라는 튜토리얼을 예로 들겠습니다...
-
exercism 설치 방법문제풀이/Exercism 2019. 7. 9. 11:07
https://exercism.io Exercism Code Practice and Mentorship for Everyone. Level up your programming skills with 1,879 exercises across 38 languages, and insightful discussion with our dedicated team of welcoming mentors. Exercism is 100% free forever. exercism.io exercism 이라는 code 교육을 도와주는 솔루션 입니다. 언어는 C 부터 java , kotlin, javascript, switft 등등 SQL 이나 Bash 도 있습니다. 가입후 화면을 보면 자신이 배우고 싶은 언어를 선택 할 수 있..
-
구름Level - 시험성적 평균과 등급구하기문제풀이/Goorm Level 2019. 7. 9. 09:32
구름 Level 이라는 서비스를 이용해서 문제풀이를 해보고 있습니다. https://level.goorm.io/ 구름LEVEL 난이도별 다양한 문제를 해결함으로써 SW 역량을 향상시킬 수 있습니다. level.goorm.io 문제의 내용은 위 링크에서 "시험성적 평균과 등급구하기"로 검색하여 확인하시기 바랍니다. 제출 코드 (Kotlin) import java.util.Scanner fun main(args: Array) { val input = readLine() print(testOutput(input.toString())) } fun testOutput(input: String) : String{ val 성적 = input.split(" ") if(성적[0].toInt() < 0 || 성적[0].t..
-
MVC , MVP , MVVMAndroid 2019. 7. 6. 01:39
MVC, MVP , MVVM 모델을 잘 설명하는 코드인것 같다 https://github.com/ericmaxwell2003/ticTacToe ericmaxwell2003/ticTacToe A simple tic tac toe app, to illustrate the use of MVC, MVP, and MVVM architectures to organize the application. - ericmaxwell2003/ticTacToe github.com 실제로 git를 보면 mvvm , mvp , mvc 로 branch가 나눠져 있어 같은 코드를 각 패턴별로 어떻게 변경되는지 확인 할 수 있다. [MVC] 코드 구성이 간단하게 되어있다. controller에 기능이 몰빵되어 있다. 프로그램의 복잡도가..
-
구름Level - Hello Goorm ! 문제풀이문제풀이/Goorm Level 2019. 7. 4. 15:17
구름 Level 이라는 서비스를 이용해서 문제풀이를 해보고 있습니다. https://level.goorm.io/ 구름LEVEL 난이도별 다양한 문제를 해결함으로써 SW역량을 향상시킬 수 있습니다. level.goorm.io 문제의 내용은 위 링크에서 Hello Goorm ! 검색하여 확인하시기 바랍니다. 제출 코드 (Kotlin) import java.util.Scanner fun main(args: Array) { val input = readLine() test(input.toString()) } fun test(input: String){ val num = input.toInt() for(i in 1..num){ println("Hello Goorm !") } } 간단하게 입력수 만큼 Hello G..
-
-
라즈베리 파이 3 B/B+ gitlab 설치DevOps 2019. 6. 29. 23:48
1. 메일 서버 셋팅 sudo apt install curl openssh-server ca-certificates postfix apt-transport-https 2. 설치 셋팅 curl https://packages.gitlab.com/gpg.key | sudo apt-key add - sudo curl -o /etc/apt/sources.list.d/gitlab_ce.list "https://packages.gitlab.com/install/repositories/gitlab/raspberry-pi2/config_file.list?os=debian&dist=jessie" && sudo apt-get update 3. gitlab apt-get으로 설치 sudo apt-get instal..