Recent posts

Three.js RGBAFormat vs RGBFormat

less than 1 minute read

2023.04.06. v0.151.3 기준으로 Three.js의 버전이 올라가면서 더이상 THREE.RGBFormat API를 사용할 수 없게 되었다.

Three.js RGBAFormat vs RGBFormat

less than 1 minute read

As of 2023.04.06, with the version bump in Three.js to v0.151.3, the THREE.RGBFormat API can no longer be used.

unix zip exclude directory

less than 1 minute read

소스 코드를 압축할 때 .git 디렉토리나 node_modules을 포함할 필요는 없다. 제외하자.

unix zip exclude directory

less than 1 minute read

When you compress source code, there’s no need to include the .git directory or node_modules. Let’s exclude them.

react-query mutationCache subscribe 사용 예시

less than 1 minute read

react-query에서 특정 mutation을 수행하고, mutation이 완료될 경우 특정 함수를 실행하려면 어떻게 해야할까? react-query는 mutation을 수행할 때마다 mutationCache를 update한다. 따라서 mutationCache의 변경을 subsc...