diff --git a/content/posts/2023-03.md b/content/posts/2023-03.md
index e8a65d7c9..835251524 100644
--- a/content/posts/2023-03.md
+++ b/content/posts/2023-03.md
@@ -164,6 +164,12 @@ value.replace("","").replace("", "").replace("","
```
- I uploaded the 350 items to DSpace Test so Peter and Abenet can explore them
+- I exported a list of authors, affiliations, and funders from the new items to let Peter correct them:
+
+```console
+$ csvcut -c dc.contributor.author /tmp/new-items.csv | sed -e 1d -e 's/"//g' -e 's/||/\n/g' | sort | uniq -c | sort -nr | awk '{$1=""; print $0}' | sed -e 's/^ //' > /tmp/new-authors.csv
+```
+
- Meeting with FAO AGRIS team about how to detect duplicates
- They are currently using a sha256 hash on titles, which will work, but will only return exact matches
- I told them to try to normalize the string, drop stop words, etc to increase the possibility that the hash matches
@@ -172,4 +178,10 @@ value.replace("","").replace("", "").replace("","
- I said I prefer to write a small script for her that will check the first author and first affiliation... I could do it easily in Python, but would need to put a web frontend on it for her
- Unless we could do that in AReS reports somehow
+## 2023-03-09
+
+- Apply a bunch of corrections to authors, affiliations, and donors on the new items on DSpace Test
+- Meeting with Peter and Abenet about future OpenRXV developments, DSpace 7, etc
+ - I submitted an [issue on MEL asking them to add provenance metadata when submitting to CGSpace](https://github.com/CodeObia/MEL/issues/11173)
+
diff --git a/docs/2023-03/index.html b/docs/2023-03/index.html
index aff01e3ec..b1715f92b 100644
--- a/docs/2023-03/index.html
+++ b/docs/2023-03/index.html
@@ -16,7 +16,7 @@ I finally got through with porting the input form from DSpace 6 to DSpace 7
-
+
@@ -38,9 +38,9 @@ I finally got through with porting the input form from DSpace 6 to DSpace 7
"@type": "BlogPosting",
"headline": "March, 2023",
"url": "https://alanorth.github.io/cgspace-notes/2023-03/",
- "wordCount": "1336",
+ "wordCount": "1433",
"datePublished": "2023-03-01T07:58:36+03:00",
- "dateModified": "2023-03-07T17:15:26+03:00",
+ "dateModified": "2023-03-08T18:53:32+03:00",
"author": {
"@type": "Person",
"name": "Alan Orth"
@@ -294,6 +294,10 @@ pd.options.mode.nullable_dtypes = True
value.replace("<jats:sub>","").replace("</jats:sub>", "").replace("<jats:sup>","").replace("</jats:sup>", "")
I uploaded the 350 items to DSpace Test so Peter and Abenet can explore them
+
I exported a list of authors, affiliations, and funders from the new items to let Peter correct them: