From 7f8c1e3c4590800224a8d548ce2c2a2cf2f805ee Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Wed, 6 Oct 2021 13:29:09 +0200 Subject: [PATCH] fix: Expand a bit on the README --- README.md | 9 ++++++-- pages/listOfResearchOutputs.json | 36 ++++++++++++++++---------------- 2 files changed, 25 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 620e103..dcd958d 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,17 @@ +## About +This repository creates a react webpage that allows to extract a utility function from possibly inconsistent binary comparisons + ## Object structure -The core structure is json array of objects. Only the "name" attribute is necessary; the id is also internally necessary but it's created on the fly if it doesn't exist. The reason that ids are needed is that comparing objects is annoying. +The core structure is json array of objects. Only the "name" attribute is required; the id is also internally required but it's created on the fly if it doesn't exist. The reason that ids are needed is that comparing objects is annoying. I think that one object must have the `isReferenceValue` property as true, but I'm not sure. + ``` [ { "id": 1, "name": "Peter Parker", "someOptionalKey": "...", - "anotherMoreOptionalKey": "..." + "anotherMoreOptionalKey": "...", + "isReferenceValue": true }, { "id": 2, diff --git a/pages/listOfResearchOutputs.json b/pages/listOfResearchOutputs.json index 1b29e1d..6dcdbcd 100644 --- a/pages/listOfResearchOutputs.json +++ b/pages/listOfResearchOutputs.json @@ -1,39 +1,39 @@ [ { - "name": "A comment on setting up a charity", - "url": "https://forum.effectivealtruism.org/posts/3PjNiLLkCMzAN2BSz/when-setting-up-a-charity-should-you-employ-a-lawyer?commentId=YNKNcp6nKqxqkZgCu" + "name": "A comment on setting up a charity", + "url": "https://forum.effectivealtruism.org/posts/3PjNiLLkCMzAN2BSz/when-setting-up-a-charity-should-you-employ-a-lawyer?commentId=YNKNcp6nKqxqkZgCu" }, { - "name": "Extinguishing or preventing coal seam fires is a potential cause area", - "url": "https://forum.effectivealtruism.org/posts/2nrx8GdtobScoAZF8/extinguishing-or-preventing-coal-seam-fires-is-a-potential" + "name": "Extinguishing or preventing coal seam fires is a potential cause area", + "url": "https://forum.effectivealtruism.org/posts/2nrx8GdtobScoAZF8/extinguishing-or-preventing-coal-seam-fires-is-a-potential" }, { "name": "Shallow evaluations of longtermist organizations", "url": "https://forum.effectivealtruism.org/posts/xmmqDdGqNZq5RELer/shallow-evaluations-of-longtermist-organizations" }, { - "name": "Categorizing Variants of Goodhart's Law", - "url": "https://arxiv.org/abs/1803.04585" + "name": "Categorizing Variants of Goodhart's Law", + "url": "https://arxiv.org/abs/1803.04585", + "isReferenceValue": true }, { - "name": "The Vulnerable World Hypothesis", - "url": "https://nickbostrom.com/papers/vulnerable.pdf" + "name": "The Vulnerable World Hypothesis", + "url": "https://nickbostrom.com/papers/vulnerable.pdf" }, { - "name": "The Global Priorities Institute's Research Agenda", - "url": "https://globalprioritiesinstitute.org/research-agenda/" + "name": "The Global Priorities Institute's Research Agenda", + "url": "https://globalprioritiesinstitute.org/research-agenda/" }, { - "name": "Superintelligence", - "url": "https://en.wikipedia.org/wiki/Superintelligence%3A_Paths%2C_Dangers%2C_Strategies" + "name": "Superintelligence", + "url": "https://en.wikipedia.org/wiki/Superintelligence%3A_Paths%2C_Dangers%2C_Strategies" }, { - "name": "Thinking Fast and Slow", - "url": "https://en.wikipedia.org/wiki/Thinking%2C_Fast_and_Slow" + "name": "Thinking Fast and Slow", + "url": "https://en.wikipedia.org/wiki/Thinking%2C_Fast_and_Slow" }, { - "name": "The Mathematical Theory of Communication", - "url": "https://en.wikipedia.org/wiki/A_Mathematical_Theory_of_Communication" + "name": "The Mathematical Theory of Communication", + "url": "https://en.wikipedia.org/wiki/A_Mathematical_Theory_of_Communication" } -] - \ No newline at end of file +] \ No newline at end of file