분류 전체보기

    [codillity] kotlin - lesson3. FrogImp

    A small frog wants to get to the other side of the road. The frog is currently located at position X and wants to get to a position greater than or equal to Y. The small frog always jumps a fixed distance, D. Count the minimal number of jumps that the small frog must perform to reach its target. Write a function: class Solution { public int solution(int X, int Y, int D); } that, given three inte..

    [codillity] kotlin - lesson2. OddOccurrencesInArray

    A non-empty array A consisting of N integers is given. The array contains an odd number of elements, and each element of the array can be paired with another element that has the same value, except for one element that is left unpaired. For example, in array A such that: A[0] = 9 A[1] = 3 A[2] = 9 A[3] = 3 A[4] = 9 A[5] = 7 A[6] = 9 the elements at indexes 0 and 2 have value 9, the elements at i..

    [codillity] kotlin - lesson2. cyclicRotation

    An array A consisting of N integers is given. Rotation of the array means that each element is shifted right by one index, and the last element of the array is moved to the first place. For example, the rotation of array A = [3, 8, 9, 7, 6] is [6, 3, 8, 9, 7] (elements are shifted right by one index and 6 is moved to the first place). The goal is to rotate array A K times; that is, each element ..

    [codillity] kotlin - Lesson1. BinaryGap

    A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N. For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 has binary r..

    [Slack] slack bot message

    [Slack] slack bot message

    협업툴로 어떤 것을 사용하는지도 기업에선 꽤나 고민이 깊다. 그중에서 메신져로써는 Slack이 가장 흔하게 사용되는 듯 하고, 에자일 형식의 프로젝트 관련은 Jira를 많이 사용한다. 카카오톡이나 Discode 등에도 존재하듯, Slack에도 Bot이 있다. loging이나 error등을 빠르고 직관적이게 확인 할 수 있기 때문에 꽤나 활용하기 좋다. 우선 채널을 만든 후에, 채팅창 옆 +버튼을 눌러 봇을 추가시켜보자. 여기서 Webhook을 검색해주자. 클릭한 후 , 버튼을 눌러주자 추가할 채널을 선택해주면, ID와 이름 설정란이 나온다. Webhook URL을 복사해준 뒤, public static void sendSlackMessage(String text) { try { ObjectMapper m..

    naver cloud platform - MSA

    naver cloud platform - MSA

    네이버에서 진행하는 MSA 설명을 들을 기회가 있어 한 번 들어봤다. 근데 참 아쉽다.. 그림도 어수선하고 설명해주는 사람도 그다지 숙달된 느낌은 아니었다. 차라리 글이라도 영어로 되어있다면 오히려 구글링 하기 편하지 않았을까 싶다. 이건뭐 기술이름만 영어로 해놓으니 장단점 적어놓은게 기술 이기종성 이렇게 적어놓는데 진짜 한글이 훨씬 어렵다. 도메인 경계를 정의 하라는대 Service isolated -> DDD(Domain Driven Design) 이런식으로 말한다거나.. 말은 한글로 할지언정 문서까지 한글로 되어있으니 너무 난잡하고 용어혼동이 너무..

    [android-kotlin] firebase notification / message

    2021.07.27 - [프로그래밍 공부/Spring Boot] - [Java] spring boot - firebase message server [Java] spring boot - firebase message server 이제는 없으면 안되는 firebase. 웹에서 작성한 알림메세지를 서버로 전송하여 각각의 디바이스로 뿌려주는 간단한 코드를 작성하고자 한다. 대략 플로우는 이런식이다. Web ( notification UI/UX ) -> Spri ttubeoki.tistory.com 이전 포스팅에서 백단에서의 메세지요청을 만들었으니, 앱에서의 메세지받는 코드를 작성해보자. 우선 디펜던시부터 받아오고~ implementation platform('com.google.firebase:firebase..

    [java] spring boot oauth2 refresh token 고민

    local stragy 전략을 사용하다가, 모바일에서 문제가 터졌다. login을 하면 보통 token을 발급받고 retrofit interceptor에서 token을 심고 header로 보내는 방식이었는데, login을 안하고 상시 백그라운드 작업이 들어가면서 token 만료기간이 문제가 된 것. 이 문제를 해결하기 위해 retrofit auth 를 설정해 줄 수 있지만 ( 401이 떨어졌을때 token을 재발급 받아 다시 요청해 줄 수 있음 ) 현재는 발급 조건이 login에만 붙어있기 때문에 비밀번호를 받을 수는 없었고, 만료된 토큰을 서버단에서 체크 한 후 다시 발급해주는 로직이 필요했다. 하지만 현재 개발중인 서비스에서는 user 관련 테이블에 token값을 저장하지 않고 있었고 (jwt 인증만..