JetBrains에서 단축키 화면에 표시해주는 기능
Presentation Assistant를 켜면 된다.예전에는 key promoter X 깔고 presentation assistant 플러그인도 별도로 깔아서 설정했는데 이제는 JetBrains에서 제공해준다.IntelliJ/WebStrom/DataGrip 등등 다 잘 된다.다시 설정하려니까 까먹어서.. 기록..
Presentation Assistant를 켜면 된다.예전에는 key promoter X 깔고 presentation assistant 플러그인도 별도로 깔아서 설정했는데 이제는 JetBrains에서 제공해준다.IntelliJ/WebStrom/DataGrip 등등 다 잘 된다.다시 설정하려니까 까먹어서.. 기록..
PromiseJavaScript의 비동기 처리를 위한 표준 객체서버로부터 데이터를 가져오는 요청을 할 경우 -> 작업이 완료될 때 까지 코드 실행 멈추지 않도록 함 -> 비동기 처리-> 미래에 완료될 작업에 대한 결과를 처리할 수 있는 객체다.작업이 성공했는지 실패했는지에 따라 다른 결과를 반환한다.3가지 상태 Pending (대기 중): 초기 상태로, 아직 작업이 완료되지 않은 상태.Fulfilled (이행됨): 작업이 성공적으로 완료되어 결과를 반환한 상태.Rejected (거부됨): 작업이 실패하여 에러를 반환한 상태.Promise 사용법const myPromise = new Promise((resolve, reject) => { const success = true; // 예시로 성공과 실패를 ..
그냥 내가 볼려고 메모한 것..Feign Client Spring Cloud Feign을 의존성에 추가합니다.인터페이스에 @FeignClient 어노테이션을 사용해 API를 선언합니다.@FeignClient(name = "exampleClient", url = "https://example.com")public interface ExampleClient { @GetMapping("/resource/{id}") ExampleResource getResourceById(@PathVariable("id") Long id); @PostMapping("/resource") ExampleResource createResource(@RequestBody ExampleResource resourc..
https://www.hackerrank.com/challenges/a-very-big-sum/problem?isFullScreen=true A Very Big Sum | HackerRankCalculate the sum of the values in an array that might exceed the range of int values.www.hackerrank.comHackerrank > A Very Big Sum 문제배열을 효율적으로 잘 더하는 방법.Java 8 이상public static long aVeryBigSum(List ar) { return ar.stream().mapToLong(Long::longValue).sum();}Kotlinfun aVeryBigSum(ar: Array)..
https://www.hackerrank.com/challenges/compare-the-triplets/problem?isFullScreen=true Compare the Triplets | HackerRankCompare the elements in two triplets.www.hackerrank.com이 문제 풀다가 정리한 것 (HackerRank > Compare the Triplets)문제 상황아래와 같은 int형 배열이 있을 때,int shortArray[] = new int[2];int longArray[[] = new int[12345];각 언어에서 어떻게 list로 변환하느냐?근데 언어에 따라 List -> 배열로 바꾸는 것도 있음.Java 7길이가 짧은 배열 -> Arrays.asLi..