| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- react-native
- adb connect
- ELECTRON
- vercel git lfs
- Can't resolve
- animation
- Failed to compiled
- adb pair
- react-native-dotenv
- 티스토리 성능
- custom printing
- rolldown
- Recoil
- github lfs
- html
- dvh
- device in use
- ffi-napi
- 이미지 데이터 타입
- camera permission
- Git
- silent printing
- camera access
- nextjs
- augmentedDevice
- electron-packager
- npm package
- github pdf
- github 100mb
- Each child in a list should have a unique "key" prop.
- Today
- Total
목록2022/06/14 (4)
Bleeding edge
리액트? CBD(Component Based Development) 요즘 웹이 다른 프로그램처럼 기능이 많아지면서, 구현해야하는 기능이 많아졌다. 이로 인해서 Javascript가 복잡해지면서 하나의 script.js에 모든 코드를 넣기가 어려워졌다. 이로 인해서 어떤 script 코드가 어떤 element를 제어하는지 파악하기 힘들어지고, 가독성이 떨어졌으며, 변수 선언 시 겹치지 않도록 신경을 써줘야하는 불편함이 생겼다. 해결책 : 여러개의 css와 js 파일로 분리를 하였다. 1) 어떤 element 2)그 element를 꾸미기 위한 style 3) 그 element 동작에 대한 script 1), 2), 3)을 묶음을 Component라고 한다. 리액트의 특징? 프론트엔드에서 하는 제어의 대부분..
https://leetcode.com/problems/longest-substring-without-repeating-characters/ Longest Substring Without Repeating Characters - 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 주어진 str으로 글자가 겹치지 않게 str을 붙여라!이다. 예시문자를 "abcabcbb"라고 하면 "abc" -> "abc" + "b"를 한다고하면 b가 이미 있기때문에 x! 그리고 단어를 ..
https://leetcode.com/problems/maximum-69-number/ Maximum 69 Number - 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 문제가 대소를 나타내는게 아닌 string에 대한 우선순위를 가지고 푸는 문제나, 무조건 한개는 바꿔야한다라고 하면 좋았을텐데... 지금 문제는 주어진숫자 6과 9를 서로 교환을 하는데 그중 한개를 바꿔서 가장 큰 숫자를 바꾸면된다. 즉, 첫번째로 만나는 6을 9로 바꾸고, 바꿀 것이 없다면 원..
https://leetcode.com/problems/counting-words-with-a-given-prefix/ Counting Words With a Given Prefix - 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 문제를 너무 어렵게 읽어서 어렵게 시도하다 틀리고 다시풀었습니다 ..-_ㅠ 문제는 아주 간단합니다 words가 prefix를 포함하고 있다면 한개씩 숫자를 더하여 return 하는 문제입니다. 1. count = 0 을 선언하고 wor..