Jim Cheung

Sunday, September 01, 2024

read this back in June, Start all of your commands with a comma

as the number of my tiny scripts grows, I finally decided to adapt the idea

Tuesday, September 03, 2024

Greppability is an underrated code metric

I have my own grep-like tool (cli and web) to help me navigate code base, it's much faster and flexible than using an IDE

however it has it's limitation, I'm trying to enhance it by treesitter, I've been collecting tools for testing later:

Wednesday, September 11, 2024

to check a distroless docker image:

FROM [image-id] AS src
FROM alpine:latest
COPY --from=src / /
CMD ["/bin/sh"]


for docker compose, use depends_on to control startup order and use profiles to run optional services

Blog Archive