🌐 egopontem.com
<> github.com/marcpaq
Just a thought that popped into my head while editing more legacy doc. Totally unrelated.
Just a thought that popped into my head while editing more legacy doc. Totally unrelated.
civilian: So is a tech writer just a frustrated novelist?
me: No, but I've been asked many times to write fiction, and that's frustrating.
civilian: So is a tech writer just a frustrated novelist?
me: No, but I've been asked many times to write fiction, and that's frustrating.
Imagine trying out simple things then connecting them into more sophisticated things.
Lather, rinse, repeat until you have your own custom solution.
And there’s that sweet hit of dopamine each time you do it.
egopontem.com/blog/cli-sor...
Imagine trying out simple things then connecting them into more sophisticated things.
Lather, rinse, repeat until you have your own custom solution.
And there’s that sweet hit of dopamine each time you do it.
egopontem.com/blog/cli-sor...
I’m here to say that we can inform *and* entertain. Behold the proof that is this coffee table book! And it has my fave foods: processed food, olive oil, and bugs you can eat.
I’m here to say that we can inform *and* entertain. Behold the proof that is this coffee table book! And it has my fave foods: processed food, olive oil, and bugs you can eat.
other writers: “This 4-digit/seat proprietary knowledge base precisely duplicates our broken workflow. It should take about 3 months for the next 2 years.”
other writers: “This 4-digit/seat proprietary knowledge base precisely duplicates our broken workflow. It should take about 3 months for the next 2 years.”
me: They whined about Michelangelo taking too long too.
#revisereviserevise
me: They whined about Michelangelo taking too long too.
#revisereviserevise
There’s a big next step: Now you can easily process your doc set on the command line. Connect things together, see what works, see what doesn’t. Write more, let the machine do the fussing.
egopontem.com/blog/cli-sor...
There’s a big next step: Now you can easily process your doc set on the command line. Connect things together, see what works, see what doesn’t. Write more, let the machine do the fussing.
egopontem.com/blog/cli-sor...
egopontem.com/blog/cli-cat...
egopontem.com/blog/cli-cat...
passo.uno/tech-writing...
passo.uno/tech-writing...
```
head -qn1 *.csv | uniq
```
Merge them (with a single column header):
```
head -qn1 *.csv | uniq && tail -qn+2 *.csv
```
And sort them:
```
head -qn1 *.csv | uniq && tail -qn+2 *.csv | sort
```
I could go on.
```
head -qn1 *.csv | uniq
```
Merge them (with a single column header):
```
head -qn1 *.csv | uniq && tail -qn+2 *.csv
```
And sort them:
```
head -qn1 *.csv | uniq && tail -qn+2 *.csv | sort
```
I could go on.
egopontem.com/blog/tech-wr...
egopontem.com/blog/tech-wr...