Add "How to Read a Paper" to bibliotheca

This commit is contained in:
Talia 2020-11-04 09:05:24 +01:00
parent 704ab14f09
commit b9f737d80e
2 changed files with 22 additions and 4 deletions

View file

@ -1,3 +1,5 @@
# Books
@book{sicp, @book{sicp,
author = "Harold Abelson and Gerald Jay Sussman and Julie Sussman", author = "Harold Abelson and Gerald Jay Sussman and Julie Sussman",
title = "Structure and Interpretation of Computer Programs", title = "Structure and Interpretation of Computer Programs",
@ -19,6 +21,9 @@
author = "Stephen Boyd", author = "Stephen Boyd",
year = "2018", year = "2018",
} }
# Papers
@article{candea2001, @article{candea2001,
title = "Recursive Restartability: Turning the Reboot Sledgehammer into a Scalpel", title = "Recursive Restartability: Turning the Reboot Sledgehammer into a Scalpel",
author = "George Candea, Armando Fox", author = "George Candea, Armando Fox",
@ -32,3 +37,9 @@
year = "2004", year = "2004",
url = "https://www.cs.ucf.edu/~jmesit/publications/T-Collide%20CGAIDE%202004.pdf", url = "https://www.cs.ucf.edu/~jmesit/publications/T-Collide%20CGAIDE%202004.pdf",
} }
@article {how-to-read-a-paper,
title = "How to Read a Paper",
author = "S. Keshav",
url = "https://web.stanford.edu/class/ee384m/Handouts/HowtoReadPaper.pdf",
}

View file

@ -48,6 +48,13 @@ Not much to say about this, everyone should have read SICP.
Papers Papers
---------------------------------------- ----------------------------------------
### [How to Read a Paper](https://web.stanford.edu/class/ee384m/Handouts/HowtoReadPaper.pdf)
> Researchers spend a great deal of time reading research papers. However, this
> skill is rarely taught, leading to much wasted effort. This article outlines a
> practical and efficient three-pass method for reading research papers. I also
> describe how to use this method to do a literature survey.
### [Memory Cache and Lisp](https://people.eecs.berkeley.edu/~fateman/papers/cachelisp.pdf) ### [Memory Cache and Lisp](https://people.eecs.berkeley.edu/~fateman/papers/cachelisp.pdf)
> Here we concentrate on automatic rearrangement of data, and examine the belief, common in some technical circles, that modern generational copying garbage collectors (GC) will improve data caching by relocating and compressing data, as a matter of normal processing. > Here we concentrate on automatic rearrangement of data, and examine the belief, common in some technical circles, that modern generational copying garbage collectors (GC) will improve data caching by relocating and compressing data, as a matter of normal processing.