Added readings 2021-01-21. Happy New Year!

This commit is contained in:
Dakota Blair 2021-01-20 23:04:28 -05:00
parent 334e57d634
commit 986c29ecf4
2 changed files with 21 additions and 2 deletions

View File

@ -16,6 +16,7 @@
<li>
<a href="#readings">Readings</a>:
<ul id="reading-years">
<li><a href="#2021">2021</a></li>
<li><a href="#2020">2020</a></li>
<li><a href="#2019">2019</a></li>
<li><a href="#2018">2018</a></li>
@ -112,7 +113,12 @@
<dd>grep -P</dd>
</dl>
<dl>
<dt>Join files using a tab separator</dt>
<dt>Join files with a tab separator</dt>
<dd>pr -Jmt file1 file2</dd>
<dd>paste file1 file2</dd>
</dl>
<dl>
<dt>Join files with a tab separator on a common field</dt>
<dd>join -t $'\t' file1 file2</dd>
</dl>
<dl>
@ -121,7 +127,7 @@
</dl>
<dl>
<dt>Redirect stderr to stdout for use in pipelines</dt>
<dd>cat -c 2>&amp;1 >/dev/null | sed 's/././g'</dd>
<dd>cat -c 2>&amp;1 >/dev/null | sed 's/.//g'</dd>
</dl>
<dl>
<dt>Simple system benchmarks</dt>

View File

@ -5,6 +5,19 @@ The play links of [~jonbell](/~jonbell) inspired the publication of this list.
Links can break in many ways, so if you see one that is broken please let me
know and I should be able to recover it, or at worst remove it.
## 2021<a id="2021" name="2021"></a>
### 2021-01-21 <a id="2021-01-21" name="2021-01-21"></a>
- [Three Reasons Fungi Are Not Plants](https://asm.org/Articles/2021/January/Three-Reasons-Fungi-Are-Not-Plants)
- [Rent-a-person in Tokyo](https://mainichi.jp/english/articles/20210111/p2a/00m/0dm/016000c)
- [Improve your virtual eye contact](https://michaelnaimark.medium.com/a-cheap-simple-hack-for-improving-your-online-classtime-experiences-802071cd34c1)
- [Decentralized social network wishlist](https://carter.sande.duodecima.technology/decentralized-wishlist/)
- [plain text accounting](https://plaintextaccounting.org/)
- [uses of TCPKeepAlive](https://anderstrier.dk/2021/01/11/my-isp-is-killing-my-idle-ssh-sessions-yours-might-be-too/)
- [the textfile directory](http://www.textfiles.com/directory.html)
- [Look and say sequence (2021-01-11)](https://en.wikipedia.org/wiki/Look-and-say_sequence)
## 2020<a id="2020" name="2020"></a>
### 2020-12-21 <a id="2020-12-21" name="2020-12-21"></a>