글
github
css
mac
[flutter] 에러 Ignoring ffi-1.13.1 because its extensions are not built.
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
aws
rds
error
python
mysql
csv
excel
python
pdf
tip
tool
bootstrap
html
error
visual studio code
c++
error
visual studio code
c++
error
english
python
mac
virtualbox
deep learning
image
electron에 nedb를 연결...미해결
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
electron에 nedb를 연결. https://stackoverflow.com/questions/52235208/how-to-get-electron-app-to-connect-to-nedb 댓글: DB is create but I cannot interact with it from the renderer procss 내거도 db 생성되는 데 실행해서 interact 안됨 관련 링크 찾음 https://bug41.tistory.com/entry/Electron-%EC%9D%BC%EB%A0%89%ED%8A%B8%EB%A1%A0-DB-%EC%97%B0%EB%8F%99-nedb-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0
[css]Uncaught SyntaxError: Unexpected token '.' css
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
Uncaught SyntaxError: Unexpected token '.' css 착각함.. You css file is being processed as a javascript file. Are you sure the file is being included as a css file as in: < link href= "yourstyle.css" rel= "stylesheet" > and not < script src = "yourstyle.css" > </ script > https://stackoverflow.com/questions/65158024/uncaught-syntaxerror-unexpected-token-css
ui
mac
arduino
c++
error
opengl
domain
js에서 ==와 ===는 다르다
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
자꾸 까먹길래 관련링크 https://velog.io/@filoscoder/-%EC%99%80-%EC%9D%98-%EC%B0%A8%EC%9D%B4-oak1091tes JavaScript에서 문자열 비교를 할 때 `==`와 `===` 연산자 모두 사용할 수 있습니다. 하지만 두 연산자는 중요한 차이점을 가지고 있어요: - `==` (동등 연산자)는 값이 같은지 비교하기 전에, 두 비교 대상의 타입을 변환(형변환)해서 같은 타입으로 만든 후 값을 비교합니다. 이 때문에 예상치 못한 결과가 나올 수 있어요. - `===` (일치 연산자)는 값과 타입이 모두 같은지를 비교합니다. 타입 변환 없이 직접 비교하기 때문에, 더 엄격한 비교가 가능해요. ### 문자열 비교에 권장되는 방법: 문자열을 비교할 때는 `===`을 사용하는 것이 좋습니다. 이 방법은 예상치 못한 타입 변환을 방지하고, 값과 타입이 모두 같은 경우에만 `true`를 반환하기 때문에 더 정확한 비교가 가능해요. ### 예시: ```javascript const str1 = "Hello"; const str2 = "Hello"; const str3 = "hello"; console.log(str1 == str2); // true, 값이 같기 때문에 console.log(str1 === str2); // true, 값과 타입이 모두 같기 때문에 console.log(str1 == str3); // false, 값이 다르기 때문에 console.log(str1 === str3); // false, 값과 타입이 모두 다르기 때문에 ``` 이 예에서 `str1`과 `str2`는 값과 타입이 모두 같으므로, `==`와 `===` 모두 `true`를 반환합니다. 반면, `str1`과 `str3`은 값이 다르므로 두 연산자 모두 `false`를 반환합니다. 결론적으로, JavaScript에서 문자열을 포함한 모든 타입의 비교를 할 때는 가능한 `===`를 ...
python
Uncaught TypeError: Failed to resolve module specifier "path". Relative references must start with either "/", "./", or "../".
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
Uncaught TypeError: Failed to resolve module specifier "path". Relative references must start with either "/", "./", or "../". https://velog.io/@fgprjs/three.js%EC%97%90%EC%84%9C-index.html1-%EB%9D%BC%EC%9D%B8-%EC%98%A4%EB%A5%98-%EB%B0%9C%EC%83%9D%EC%8B%9C 이 문제 인거 같은데 아직 해결 못함 commonjs랑 esm을 혼용 해서 그런 것 같다
github
css
javascript
bootstrap
javascript
3d