Update notes for 2019-09-27

This commit is contained in:
2019-09-27 01:20:09 +03:00
parent 71ed97ce53
commit a8f833a6c6
5 changed files with 36 additions and 11 deletions

View File

@ -59,7 +59,7 @@ Run system updates on DSpace Test (linode19) and reboot it
"@type": "BlogPosting",
"headline": "August, 2019",
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2019-08\/",
"wordCount": "2703",
"wordCount": "2770",
"datePublished": "2019-08-03T12:39:51\x2b03:00",
"dateModified": "2019-09-01T01:54:55\x2b03:00",
"author": {
@ -603,6 +603,13 @@ sys 2m27.496s
<li>I modified the patterns in my sed script so that those lines are not replaced and then the community list works again</li>
<li>This is actually not a problem at all because this metadata is only used in the HTML meta tags in XMLUI community lists and has nothing to do with item metadata</li>
</ul></li>
<li><p>Get a list of institutions from CCAFS&rsquo;s Clarisa API and try to parse it with <code>jq</code> and pass it through <code>csvcut</code> to add line numbers:</p>
<pre><code>$ cat ~/Downloads/institutions.json| jq '.[] | {name: .name}' | grep name | awk -F: '{print $2}' | sed 's/&quot;//g' | csvcut -l &gt; /tmp/investors.csv
</code></pre></li>
<li><p>I could potentially use this with reconcile-csv and OpenRefine as a source to validate our institutional authors against&hellip;</p></li>
</ul>
<!-- vim: set sw=2 ts=2: -->