Skip to content

Commit

Permalink
Make changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarsotovalero committed Jan 2, 2025
1 parent e8e4c01 commit bcc9569
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 17 deletions.
4 changes: 2 additions & 2 deletions _posts/2021/2021-04-05-enhance-your-readme-with-asciinema.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ asciicast2gif -w 80 -h 30 demo.cast demo.gif
The previous command will produce a `demo.gif` file with 80 characters width and 30 lines of height.
It can be inserted in `README.md`, just as any other image:

{% highlight markdown linenos %}
```markdown
![demo](PATH_TO_FILE)
{% endhighlight %}
```

where `PATH_TO_FILE` is the path to your `demo.gif` file on GitHub.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ Once the artifacts and outcomes are reviewed, it is easier to readjust the goals
I have a template for the Friday report.
Here is an example:

{% highlight markdown linenos %}

```
From: Student
To: Supervisor
CC: Co-authors and Co-supervisors
Expand All @@ -134,7 +133,7 @@ QUESTIONS:
Cheers,
Student
{% endhighlight %}
```

[//]: # (One paragraph about the header)
The email is sent to the supervisor/s, all collaborators should be added in CC (e.g., co-authors and co-supervisors).
Expand Down
8 changes: 4 additions & 4 deletions _posts/2022/2022-01-29-how-to-write-a-good-paper-rebuttal.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ Rebuttals focus mostly on responding to negative points, don't let everyone forg

Here's an example:

{% highlight markdown %}
```
We thank the reviewers for their insightful and positive feedback!
We are encouraged that they find Foo to be a novel tasks (R1,2,3),
an important research problem (R1,2), appropriately positioned w.r.t
prior work (R1,3), and of value for the community (R1,2,3).
One primary concern was insufficient discussion of results. We agree.
We were constrained by space. We answer some specific questions below,
but will incorporate all feedback in the final version.
{% endhighlight %}
```

Notice the conversational nature of the example responses above.
The relaxed tone makes it easier for the PC chairs to read it.
Expand Down Expand Up @@ -127,12 +127,12 @@ You can use underscores (`_`) or dashes (`-`) to concatenate two words for the

Here is an example:

{% highlight markdown %}
```
Question-2-Reviewer-3:Is_Foo_in_your_paper_actually_a_Bar?
Answer-to-Reviewer-3:
Yes, your understanding is perfect.
Foo is a Bar with X and Z.
{% endhighlight %}
```

**\*NOTE:** Be cautious not abusing of this method, otherwise you may be at risk that PC chair will just delete your rebuttal.

Expand Down
8 changes: 4 additions & 4 deletions _posts/2023/2023-11-12-how-i-peer-review-research-papers.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Here are some (not so obvious) characteristics of bad reviews:

Here's a **real example** of a bad review from one of the co-reviewers of one of the papers I've reviewed:

{% highlight markdown linenos %}
```plaintext
Reviewer 1:
The article needs significant improvements in its writing,
as it is more similar to a technical report than a scientific article.
Expand All @@ -161,7 +161,7 @@ fragmented into many brief subsections. The Discussion section lacks
clarity, not adequately detailing the results presented. These, in
turn, are described very vaguely. Furthermore, most of the references
are old.
{% endhighlight %}
```

I think it's worth mentioning that reviewing papers is a selfless, unpaid act of true academic altruism.
It's primarily carried out by academics in their spare time, and these are people under limited time constraints and a lot of pressure to push forward their own research output.
Expand Down Expand Up @@ -191,7 +191,7 @@ So I recommend using Google Docs or similar instead of PDFs to write your review

Good reviews have a known structure that is easy to follow and understand, for example:

{% highlight markdown linenos %}
```
Title: [Paper's Title]
**Summary**
Expand Down Expand Up @@ -245,7 +245,7 @@ Example:
The paper is a valuable addition to the field of [field],
with potential implications for [applications].
I recommend acceptance after moderate revisions as outlined above.
{% endhighlight %}
```

It's a good practice looking at the reviewer's guidelines in each particular journal.[^1]
Sometimes they provide a list of specific questions that reviewers should answer when reviewing a paper.
Expand Down
3 changes: 1 addition & 2 deletions _posts/2024/2024-05-05-the-last-paper-myth.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ I would try to negotiate upfront the number of papers that are necessary and kee
Let your supervisor know.
It might be worth trying something like this:


{% highlight markdown linenos %}
{% highlight plaintext %}
Subject: Summary of our last meeting

Hi [Supervisor's Name],
Expand Down
3 changes: 2 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3483,7 +3483,8 @@ html[data-theme="dark"] {
--post-meta-index-color: hsl(0, 0%, 76%);
--blockquote-color: rgba(1, 38, 57, 0.8);
--blockquote-background-color: rgba(1, 38, 57, 0.8);
--main-background-color: #012639;
/*--main-background-color: #012639;*/
--main-background-color: #1c2128;
--main-text-color: hsl(0, 0%, 85%);
--main-link-color: hsl(0, 0%, 100%);
--link-decoration-color: #8F96CE;
Expand Down
2 changes: 1 addition & 1 deletion css/pygment_highlights_dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
.highlight .il { color: #bd93f9 } /* Literal.Number.Integer.Long */

/* Make line numbers unselectable: excludes line numbers from copy-paste user ops */
.highlight .lineno {color:rgba(0,0,0,0.3);padding: 0 10px;-webkit-user-select: none;-moz-user-select: none; -o-user-select: none;}
.highlight .lineno {color:rgba(255,255,255,0.3);padding: 0 10px;-webkit-user-select: none;-moz-user-select: none; -o-user-select: none;}
.lineno::-moz-selection {background-color: transparent;} /* Mozilla specific */
.lineno::selection {background-color: transparent;} /* Other major browsers */

0 comments on commit bcc9569

Please sign in to comment.