From 4eb7e47eb7874324b8bef41917322a5359185d2b Mon Sep 17 00:00:00 2001 From: Pierre Neuvial Date: Tue, 22 Jul 2025 11:01:46 +0200 Subject: [PATCH 1/4] add 'authors' tag to FAQ --- blog/2023-03-24-others-languages/index.qmd | 1 + blog/2023-06-21-data/index.qmd | 4 ++-- blog/2023-06-21-long-running-code/index.qmd | 1 + blog/2023-07-04-what-reproducibility/index.qmd | 4 ++-- blog/2025-03-20-revised-github-process/index.qmd | 1 + 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/blog/2023-03-24-others-languages/index.qmd b/blog/2023-03-24-others-languages/index.qmd index fc53f52..f7f6bcc 100644 --- a/blog/2023-03-24-others-languages/index.qmd +++ b/blog/2023-03-24-others-languages/index.qmd @@ -4,6 +4,7 @@ title: 'I use a different language than Python, R or Julia: would Computo accept date: '2023-03-24' description: Describe how to handle other languages than R, Julia or Python categories: +- authors - reproducibility - code format: diff --git a/blog/2023-06-21-data/index.qmd b/blog/2023-06-21-data/index.qmd index 454c6ab..fa73fdc 100644 --- a/blog/2023-06-21-data/index.qmd +++ b/blog/2023-06-21-data/index.qmd @@ -1,9 +1,9 @@ --- title: I have large or sensible data. How should I proceed? date: '2023-06-21' -description: Describe how to handle large or sensible data files when submitting to - Computo +description: Describe how to handle large or sensible data files when submitting to Computo categories: +- authors - reproducibility format: html: diff --git a/blog/2023-06-21-long-running-code/index.qmd b/blog/2023-06-21-long-running-code/index.qmd index 79f6611..2770ece 100644 --- a/blog/2023-06-21-long-running-code/index.qmd +++ b/blog/2023-06-21-long-running-code/index.qmd @@ -3,6 +3,7 @@ title: My data analysis takes several hours/days/weeks... How to address the iss date: '2023-06-21' description: Discuss the reproducibility for long-running code categories: +- authors - reproducibility format: html: diff --git a/blog/2023-07-04-what-reproducibility/index.qmd b/blog/2023-07-04-what-reproducibility/index.qmd index 03d13ef..8e906b9 100644 --- a/blog/2023-07-04-what-reproducibility/index.qmd +++ b/blog/2023-07-04-what-reproducibility/index.qmd @@ -1,9 +1,9 @@ --- title: What is expected exactly in terms of reproducibility? date: '2023-07-04' -description: Discuss the different kinds of reproducibility at play in Computo, and - what is expected from the authors. +description: Discuss the different kinds of reproducibility at play in Computo, and what is expected from the authors. categories: +- authors - reproducibility format: html: diff --git a/blog/2025-03-20-revised-github-process/index.qmd b/blog/2025-03-20-revised-github-process/index.qmd index b8a88fb..276e3de 100644 --- a/blog/2025-03-20-revised-github-process/index.qmd +++ b/blog/2025-03-20-revised-github-process/index.qmd @@ -4,6 +4,7 @@ date: '2025-03-20' description: Describe how to render your article, activate your gh-page and publish your contribution online categories: +- authors - reproducibility format: html: From b188d97eee68b6816ef5c8aaad4365bac6727f2a Mon Sep 17 00:00:00 2001 From: Pierre Neuvial Date: Tue, 22 Jul 2025 11:47:58 +0200 Subject: [PATCH 2/4] Add FAQ entry to describe the review process using OpenReview --- .../index.qmd | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 blog/2025-07-22-openreview-process-overview/index.qmd diff --git a/blog/2025-07-22-openreview-process-overview/index.qmd b/blog/2025-07-22-openreview-process-overview/index.qmd new file mode 100644 index 0000000..e8fdbbd --- /dev/null +++ b/blog/2025-07-22-openreview-process-overview/index.qmd @@ -0,0 +1,24 @@ +--- + title: 'OpenReview: how does the peer review of a Computo paper work?' + date: '2025-07-22' +description: Describe the review process using OpenReview +categories: +- authors +- reviewers +format: + html: + toc: true +page-layout: article +--- + + +Here is a step-by-step overview of the Computo reviewing process based on [OpenReview](https://openreview.net/): + +- **Submission**: the authors link to git repository and HTML/PDF version of the manuscript +- Editorial management: the editorial board decides whether the paper is appropriate for review +- **Review** (typically 8 weeks): see our [Reviewer guidelines](/guidelines-reviewers) +- **Rebuttal**: discussion and revision period (6 weeks, but extendable): + - discussion between authors and reviewers, upon which the reviewers will make their final recommendation. + - if necessary the authors should update their submission +- **Recommendation** by reviewers: accept/leaning accept/leaning reject/reject +- **Official decision** by the editor: possible decisions are accept/minor revision/rejection (possibly with invitation to resubmit). There is no "major revision" option. From 6b68006dbf6b16f7de51ed05e3f7b28cddb0034e Mon Sep 17 00:00:00 2001 From: Pierre Neuvial Date: Tue, 22 Jul 2025 12:00:07 +0200 Subject: [PATCH 3/4] fix YAML header --- blog/2025-07-22-openreview-process-overview/index.qmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blog/2025-07-22-openreview-process-overview/index.qmd b/blog/2025-07-22-openreview-process-overview/index.qmd index e8fdbbd..a36fd44 100644 --- a/blog/2025-07-22-openreview-process-overview/index.qmd +++ b/blog/2025-07-22-openreview-process-overview/index.qmd @@ -1,13 +1,13 @@ --- - title: 'OpenReview: how does the peer review of a Computo paper work?' - date: '2025-07-22' +title: 'OpenReview: how does the peer review of a Computo paper work?' +date: '2025-07-22' description: Describe the review process using OpenReview categories: - authors - reviewers format: html: - toc: true + toc: true page-layout: article --- From 7d398b9ecaf5da3dcfa713299feeeb5489538ca5 Mon Sep 17 00:00:00 2001 From: Pierre Neuvial Date: Tue, 22 Jul 2025 12:02:18 +0200 Subject: [PATCH 4/4] minor changes --- blog/2023-03-24-others-languages/index.qmd | 3 +-- blog/2025-07-22-openreview-process-overview/index.qmd | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/blog/2023-03-24-others-languages/index.qmd b/blog/2023-03-24-others-languages/index.qmd index f7f6bcc..c5809e1 100644 --- a/blog/2023-03-24-others-languages/index.qmd +++ b/blog/2023-03-24-others-languages/index.qmd @@ -1,6 +1,5 @@ --- -title: 'I use a different language than Python, R or Julia: would Computo accept my - contributions?' +title: 'I use a different language than Python, R or Julia: would Computo accept my contributions?' date: '2023-03-24' description: Describe how to handle other languages than R, Julia or Python categories: diff --git a/blog/2025-07-22-openreview-process-overview/index.qmd b/blog/2025-07-22-openreview-process-overview/index.qmd index a36fd44..84bbb8a 100644 --- a/blog/2025-07-22-openreview-process-overview/index.qmd +++ b/blog/2025-07-22-openreview-process-overview/index.qmd @@ -11,10 +11,9 @@ format: page-layout: article --- - Here is a step-by-step overview of the Computo reviewing process based on [OpenReview](https://openreview.net/): -- **Submission**: the authors link to git repository and HTML/PDF version of the manuscript +- **Submission**: the authors provide a link to git repository and HTML/PDF version of the manuscript - Editorial management: the editorial board decides whether the paper is appropriate for review - **Review** (typically 8 weeks): see our [Reviewer guidelines](/guidelines-reviewers) - **Rebuttal**: discussion and revision period (6 weeks, but extendable):