Why I'm a lazy person. I've never done zip compression for responses to clients (although...
Location: .vscode/settings.json Content: { // --- // Editor setting "editor.formatOnPaste":...
When I start working with legacy project. The first thing I need to do is to identify part of code...
Definitions Changelog ไฟล์ที่รวบรวมการเปลี่ยนแปลงไว้...
ใน NestJS document เค้าบอกเราว่า จะทำ IoC ใน NestJS ทำแบบนี้ // user/user.module.ts @Module({ ...
The client-side log is different from the server-side log because it didn't write into the file...
Node.js belowed v15 has a problem on Mac M1. We can't run legacy Node.js project with simply npm...
Actually we can write 2 functions: readFileAsArrayOfNumber and readFileAsArrayOfString, but I'm too...
just run find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}'; Enter...
Official Document Said That create app instance create auth instance then connect with...
Related Plugin eslint-plugin-react react/hook-use-state...
I have enough! My VSCode always autocomplete command that I don't need when I'm about to export...
When you're building a Typscript micro-frontend project with Webpack Module Federation, you might...
Short note about relation in UML class diagram. Relation and Dependency Can turn into...
Do not wasted time with native Date, use date-fns and go home! import { format, lastDayOfMonth }...
I HATE fixing these little ESLint errors and warnings (for example import order). I could ignore or...
Code: import { useRef, useEffect, useState } from 'react' import { Wrapper } from...
const mockNow = new Date() beforeEach(() => { sinon.useFakeTimers(mockNow.getTime()) }) ...
Poor man guide for DynamoDB. Since DynamoDB has some limitation on space and I want to use a basic...
Vite work greate on local development. But I got this error when build. 'request' is not exported...
Just run echo -n any string | shasum -a 256 | awk '{ print $1 }' Fin. Note AWK are not acronym of...
Playwright คืออะไร Playwright คือ e2e (end to end) testing framework ที่พัฒนาโดย Microsoft...
Why switch to yarn 3? super fast super fast super fast Why wait? just go! # let check...
As I mention in early post, I've been working on legacy project lately and always found an oldschool...
It's possible that we will do something wrong, well, we're all just human, we always do something...
บันทึกการเทรน facilitate ในวันหยุดยาวสิ้นปี T^T
What Normally (in my legacy code base) I've always found that my legacy code from the old...
วิธีการติดตั้ง Raspberry Pi และลง Kubernetes แบบ step by step
Problem When we use hooks useHistory of react-router-dom How to expect the history are...