softwareunderground / 52things

52 Things You Should Know About Geocomputing
102 stars 61 forks source link

In Praise of Small Tools, or a short Ode to the Command­Line (chapter 1) review #72

Closed mycarta closed 4 years ago

mycarta commented 4 years ago

The last "problem" in the first sentence does not sound right. "approach" perhaps?

Given the huge scope of geological problems, it is not reasonable to assume that all problems can be solved using large, monolithic problems.

Other than that, I like the chapter. Is it worht mentioning sometihng like cookiecutter? https://github.com/cookiecutter/cookiecutter

mycarta commented 4 years ago

From: https://github.com/softwareunderground/52things/issues/77

The first line of code in this article contains an error: cat data.csv | grep ­i ‘sio2’ > silica.csv

this should be (note dash in the grep flag). cat data.csv | grep ­-i ‘sio2’ > silica.csv

mtb-za commented 4 years ago

I am not sure about CookieCutter. It seems more like a means to get started on projects more easily, rather than specifically for small command-line utilities. Looks useful though!

mycarta commented 4 years ago

Thanks for the corrections and bio