dblotsky | 1 year ago | on: Greppability is an underrated code metric
dblotsky's comments
dblotsky | 5 years ago | on: Predictions Scorecard, 2021 January 01
[dancing] https://www.youtube.com/watch?v=fn3KWM1kuAw [cleaning clutter] https://www.youtube.com/watch?v=C8-w9eF24gU
dblotsky | 5 years ago | on: Getting rid of NPM scripts
1) I suspect GNU Make will be installed on any system where node code will run.
2) You don’t have to .PHONY anything that will never be a real file.
3) My bet is the Makefile will be shorter and clearer, but I am of course biased since I’m used to the syntax.
dblotsky | 5 years ago | on: Getting rid of NPM scripts
dblotsky | 5 years ago | on: Getting rid of NPM scripts
dblotsky | 5 years ago | on: Please – A cross-language build system
It kind of feels like the best trajectory is to start small with a general build system, and upgrade as needed? And then if you are confident the project will grow, starting with the specific build system fine too.
dblotsky | 5 years ago | on: Please – A cross-language build system
On that 30 minute note though: so, how big does the project need to be in order for Make not to be enough? And at that size, why wouldn’t the project invest the extra week it takes to get the Makefile correct?
dblotsky | 5 years ago | on: Please – A cross-language build system
dblotsky | 5 years ago | on: E. B. White’s “Plain Style” at 75
dblotsky | 5 years ago | on: E. B. White’s “Plain Style” at 75
dblotsky | 5 years ago | on: Baumol Effect
So if one industry demands more labor, all others will feel the rising price of labor?
dblotsky | 6 years ago | on: Programming trick questions
dblotsky | 6 years ago | on: Programming trick questions
dblotsky | 6 years ago | on: Comma Two Devkit
dblotsky | 6 years ago | on: Parcel – Fast, zero-configuration web application bundler
Real answer: probably, but a ton of production code is closed-source.
But why restrict to web apps? Most influential software projects in the world use Make.
dblotsky | 6 years ago | on: Parcel – Fast, zero-configuration web application bundler
dblotsky | 6 years ago | on: Parcel – Fast, zero-configuration web application bundler
Takes just as long to learn, and is transferrable everywhere.
dblotsky | 6 years ago | on: Powerful Statement of Resistance from a College Student on Trial in Moscow
dblotsky | 6 years ago | on: Powerful Statement of Resistance from a College Student on Trial in Moscow
dblotsky | 6 years ago | on: Powerful Statement of Resistance from a College Student on Trial in Moscow
I think the benefit of having one symbol exist in only one domain (e.g. “user_request” only showing up in the database-handling code, where it’s used 3 times, and not in the UI code, where it might’ve been used 30 times) reduces more cognitive load than is added by searching for 2 symbols instead of 1 common one.