Add "How to Read a Paper" to bibliotheca
This commit is contained in:
parent
704ab14f09
commit
b9f737d80e
2 changed files with 22 additions and 4 deletions
|
@ -1,3 +1,5 @@
|
|||
# Books
|
||||
|
||||
@book{sicp,
|
||||
author = "Harold Abelson and Gerald Jay Sussman and Julie Sussman",
|
||||
title = "Structure and Interpretation of Computer Programs",
|
||||
|
@ -19,6 +21,9 @@
|
|||
author = "Stephen Boyd",
|
||||
year = "2018",
|
||||
}
|
||||
|
||||
# Papers
|
||||
|
||||
@article{candea2001,
|
||||
title = "Recursive Restartability: Turning the Reboot Sledgehammer into a Scalpel",
|
||||
author = "George Candea, Armando Fox",
|
||||
|
@ -27,8 +32,14 @@
|
|||
}
|
||||
|
||||
@article{tcollide,
|
||||
title = "T-Collide: A Temporal, Real-Time Collision Detection Technique for Bounded Objects",
|
||||
author = "Erin J. Hastings, Jaruwan Mesit, Ratan K. Guha",
|
||||
year = "2004",
|
||||
url = "https://www.cs.ucf.edu/~jmesit/publications/T-Collide%20CGAIDE%202004.pdf",
|
||||
title = "T-Collide: A Temporal, Real-Time Collision Detection Technique for Bounded Objects",
|
||||
author = "Erin J. Hastings, Jaruwan Mesit, Ratan K. Guha",
|
||||
year = "2004",
|
||||
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",
|
||||
}
|
||||
|
|
|
@ -48,6 +48,13 @@ Not much to say about this, everyone should have read SICP.
|
|||
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)
|
||||
|
||||
> 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.
|
||||
|
|
Loading…
Reference in a new issue