| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
- github lfs
- silent printing
- electron-packager
- ELECTRON
- dvh
- Git
- augmentedDevice
- ffi-napi
- vercel git lfs
- github pdf
- custom printing
- Recoil
- npm package
- nextjs
- html
- Failed to compiled
- github 100mb
- animation
- react-native
- adb connect
- camera access
- adb pair
- 티스토리 성능
- rolldown
- react-native-dotenv
- Each child in a list should have a unique "key" prop.
- 이미지 데이터 타입
- camera permission
- Can't resolve
- device in use
- Today
- Total
목록2022/06/10 (5)
Bleeding edge
쨔잔! electron으로 shortcut key marker을 만들기 프로젝트를 오늘부터 시작하였다! 우선 electron의 기본 앱설치를 하기 위해서 git clone https://github.com/electron/electron-quick-start 를 설치하였다! SKM의 목표 이자 계획 1. 배경을 투명색으로 2. 화면을 맨위로 fixed 3. TODO list 처럼 단축키 입력하기 4. 그 키를 누르면 단축키부분이 focus처럼 반짝이기 + 고민 5. background에 유튜브재생(?)
필요성이 생긴 이유 오늘 자바스크립트 문제풀이를 하면서 다시금 Big O 의 중요성에대해서 느꼈다. 우선 오늘 문제풀이를 할 때 처음에는 Array를 통해서 접근하다가. Map으로 접근을 하였다. 우선 왜 Map을 사용하였는가? 라고 하기에 앞서 Array와 Object의 worst Big O를 비교하겠다 우선 Array Worst Big O 접근 O(1) index 0에 삽입 O(n) index 마지막에 삽입 O(1) 검색 O(n) 삭제 O(n) Object Worst Big O 삽입 O(1) 제거 O(1) 탐색(value를 이용한) O(n) 접근(key를 이용한) O(1) 여기서 보면 value를 이용하여 탐색을 하면 시간이 O(n)만큼 걸리는 걸 볼 수 있다. 따라서, value로 접근하는 것을 줄..
https://leetcode.com/problems/replace-elements-in-an-array/ Replace Elements in an Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 자체는 상당히 심플하다. nums에 있는 숫자를 operations에 주어진 arr에 따라 값을 바꾸도록한다 nums[0] 이 5라고 할 때, operation[n]이 [5, 4]라고 하면 nums[0]은 4로 바꾸는 문제이다. 이문제를 3번정도 풀이..
https://leetcode.com/problems/rearrange-characters-to-make-target-string/ Rearrange Characters to Make Target String - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제를 잘못이해해서 문제를 두번 풀었다.. 1. target에 주어진 알파벳 숫자를 카운트한다 2. s에 주어진 알파벳 숫자를 카운트한다. const maperMake = (target) => { let m..
https://leetcode.com/problems/min-max-game/ Min Max Game - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 처음에 억.. 어떻게하지? 하고 단순한데 뭔가 짜야할 방향이 보이지 않아 순간 멘붕을 했었다. 하지만, 차분하게 문제를 보니 문제를 푸는 방법이 생각났다. 1. nums의 length가 1이 나올 때까지 계속 내용물을 줄여야했다. 2. 내용물을 줄이는 loop문은 두가지가 존재해야했다. 2-1 index 0부터 ..