From b9f737d80e96d565976ce0ca9a47c3faa0babda9 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Wed, 4 Nov 2020 09:05:24 +0100 Subject: [PATCH] Add "How to Read a Paper" to bibliotheca --- bibliotheca.bib | 19 +++++++++++++++---- bibliotheca.md | 7 +++++++ 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/bibliotheca.bib b/bibliotheca.bib index 278b1ad..64dafbc 100644 --- a/bibliotheca.bib +++ b/bibliotheca.bib @@ -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", } diff --git a/bibliotheca.md b/bibliotheca.md index f033b88..bb08ba1 100644 --- a/bibliotheca.md +++ b/bibliotheca.md @@ -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.