Hal Shin
halshin.com
Hal Shin
@halshin.com
Founder at Overseed AI. Building in public. Sharing dev tips.
Currently building viwo-cli: https://github.com/OverseedAI/viwo
Be wary of magic numbers.

- The next reader has no clue why a number is that number.
- It's super hard to find in the codebase / update in all places

Instead:

- Assign to a variable and give it a meaningful name.
- Hoisting to the top of the file or refactor to a config file.

#programming
December 17, 2025 at 6:16 PM
Ever console.log'ed the... console?

I use these methods all the time:

- console.time() - easy way to time function calls
- console.table() - easy way to view a list of objects
- console.error() - easy way to view errors
December 10, 2025 at 10:48 PM