HackerNews Readings
40,000 HackerNews book recommendations identified using NLP and deep learning

Scroll down for comments...

Sorted by relevance

jelliclesfarmonJan 3, 2020

Perhaps intuition is just fast thinking? To be able to connect bits and pieces of seemingly disparate information cogently?

I love flipping the pages of The Red Book. I am charmed by Jung’s calligraphy and art. Even if I don’t understand enough High German. The entire book is a work of art.

mapleoinonMay 12, 2009

I thought the Red Book was Quotations From Chairman Mao Tse-Tung

But anyway... What makes this book special? The website is not so great. Got a review maybe?

mboonOct 18, 2019

New members of our team are greeted with a "Hi, my name is mbo. Here's your desk, here's your copy of The Red Book, good luck."

https://www.manning.com/books/functional-programming-in-scal...

brudgersonOct 2, 2016

Ok, then I'd start with a bibliographic serach in The Red Book, though for something like ISAM, previous editions might also be relevant.

http://www.redbook.io/

tkxxx7onSep 22, 2016

We shouldn't trivialize Jung's and Myer's work because of the pop culture surrounding it. Psychological Types and it's surrounding works (though, I haven't read The Red Book yet) contain a great deal of insight.

brett40324onAug 23, 2017

If this is a serious undertaking, you should read 'the red book' http://www.redbook.io

AlexanderNullonAug 31, 2018

While Scala isn't a pure functional language there are some good resources for picking up FP related concepts with it (and it's what I recently moved over to so it's most recent for me). Scala with Cats did a pretty good job for me at describing things in relatable terms. "The Red Book" (Functional Programming in Scala) goes a bit more in depth on these concepts but has a pretty steep learning curve compared to the cats book.

Also check out anything Haskell/Eta/OCaml for server side (and probably also a bit of a steep learning curve) or if you're currently a front end developer CHECK OUT ELM NOWWWWWW. Core beginner concepts to youtube would be currying, higher order functions, and composition. Monads will come once you've mastered map/flatMap/reduce/fold chaining.

slazaroonSep 8, 2017

Am I the only one that jokingly thinks the book title might be just a little bit pretentious? Don't get me wrong, I love what this guy does, I follow him on Twitter, and I have no doubts that the book is great.

But the "color" books like the Red Book or the Orange Book have other actual names, and people just gave them the "color" name because they were classic references. It's like this one just presumes that it's as important as the others and has to have a classic name.

Disclaimer: This complaint is obviously not serious.

hoersonJune 9, 2015

Yeah sadly a lot of books from the former soviet union are still circulating with horrible translations (if any). I can't really give a recommendation either because I read it in german.

And truth to what you say about the glass bead game, the first 200 pages are a torture, but I still cherish it even for the metaphor alone. Do you know of any book that does a better job bringing that across? That'd be very interesting.

+ Edit to my post: Meant to put Finnegan's wake to Joyce, not Ulysses! (even thought that's a pretty decent mindbender in itself)

+ Some I forgot:

- C G Jung - The Red Book (get the readers edition)

- Nobody mentioned McKenna! 'True Hallucinations' for example. Skip everything to do with I Ching and Timewave.

- Illuminatus! trilogy was only mentioned once for some reason (but then horrible to read)

- Toffler - Third Wave

- Gibson - Neuromancer

- Hesse - Demian

- P K Dick - Electric Sheep

- J A West - Serpent in the sky

- R A Wilson - Prometheus Rising

and some awesomely trippy, mindbending 'children's books':

- Preußler - Krabat

- Lindgreen - Brothers Lionheart

- Ende - Momo

chaosphere2112onApr 4, 2015

This is something I'm constantly struggling with as I try and teach myself OpenGL. Tons of tutorials available, but many have little context or explanation about what it is that they're demonstrating, and I keep finding them via Google searches for how to use a specific function. I'm almost never trying to do what they're doing, just having some small degree of overlap. I've got a copy of the Red Book, and it's pretty handy, but man is that a big pile of "well, this is pretty close to what I want".

philix001onJan 19, 2019

Goetz Graefe [1] published interesting surveys on B-Trees, query optimization...

The Red Book can give you many ideas [2].

Mark Callaghan has been published a lot of stuff related to LSM recently [3].

[1] http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.219...

[2] http://www.redbook.io/

[3] https://smalldatum.blogspot.com/?m=1

pavlovonOct 12, 2013

I have a copy of C.G. Jung's The Red Book, which is also pretty strange:

http://en.wikipedia.org/wiki/Red_Book_(Jung)

I haven't bothered to try to read most of it, but it makes for a good conversation piece, at least. It's very big and, well, red. Jung's drawings are quite beautiful, his medieval-style handwriting is strangely intricate, and of course everybody knows Jung by name, so it has that aura of celebrity genius.

blobmanonJan 30, 2017

Vernon's Implementing DDD is an excellent supplementary book to Eric Evans', but it also works well as a Stand-alone book. I generally refer to them as "the Blue Book" (Evans) and "the Red Book" (Vernon). I still haven't read the Blue Book, but I will in due course. The Red Book has given me more than enough understanding of DDD to put it into practice in the workplace.

didibusonJune 16, 2021

> Conventional psychiatric drugs and talk therapy are backed up by decades of robust scientific evidence. This is not true, he notes, of the typical PANDAS therapies.

I think my issue with conventional psychiatric drugs and talk therapy is that they are what Tylenol is to a headache, they don't actually cure the condition, they simply mitigate the symptoms. So it's clear that conventional psychiatry has no clue of the root causes, and doesn't yet understand what exactly in the body or brain causes the symptoms. In that sense, I feel anything that can show a return to "normalcy" and has a root cause explanation, should be considered very seriously and researched deeply, over what simply mitigates symptoms.

> The long-term use of antibiotics especially worries him, because it could contribute to the problem of drug-resistant bacteria. This is still the mainstream position: The most recent edition of the Red Book, an exhaustive guide to childhood infectious diseases published every three years by the American Academy of Pediatrics, goes out of its way to recommend that children with PANS and PANDAS symptoms not be given an extended course of antibiotics.

That's a valid concern, but I feel someone curious (like me), just has to wonder, well why are the antibiotics needed for so long? What is it here that prevents them from actually getting rid of strep in the brain? Maybe there are alternatives to just permanent antibiotics dosing.

tedyoungonJune 6, 2016

The Red Book [1] (recently updated) is a good overview and has lots of useful references. Some might be too high-level, but this paper (really a short book!) is a good start at what makes up a database: "Architecture of a Database System"[2].

Keep in mind that the scope of a "database" can be huge, so you might want to start really small, e.g., writing a basic key-value store that can support things concurrent reads & write, isolation, etc. It all depends on what interests you.

--

[1] http://www.redbook.io/

[2] http://www.electricmonk.nl/data/freeitebooks/fntdb07-archite...

MaroonMay 12, 2009

http://www.amazon.com/review/RGXWU3TSSJ3RT/ref=cm_cr_rdp_per...

The text of the review:

This book is well-known in academic database circles as "The Red Book" (in fact, the editors maintain a useful web site at http://redbook.cs.berkeley.edu/) and is a canonical resource in those circles. It's primarily intended as a reader/textbook for a graduate course in database systems and has a heavy emphasis on implementation issues. It contains a fair number of classic papers that should be read by anybody who actually works on database engines as well as a number of more recent papers that should be read by anyone who does research in database systems. The usefulness for end-users of databases (i.e., application writers) is unclear.
The 3rd edition, in my opinion, improves upon the 2nd edition considerably. Of course, it freshens the paper selection in some areas. More importantly, it prunes the number of subject areas considerably, resulting in a more manageable collection (in more ways than one!). For example, a great deal of work was performed in the late 1980s and early 1990s in areas such as extensibility and active database management. By the late 1990s, the SQL3/SQL1999 train had already left the station - work still goes on in these areas, but at a greatly reduced rate. Conversely, data mining and decision analysis have become hugely important areas, and the new Red Book has a section on it.

If there's a place where this book "missed the boat," it would probably be in terms of applications. The editors cut the section on user interfaces and programming models and have always ignored unstructured/semistructured data models. In these days of the Web, this choice is questionable; on the other hand, a lot of the most reasonable work in these areas has in fact appeared since 1998, so it's a bit hard to criticize with any degree of fairness!

marcuaonJune 4, 2009

The notes for each day have a list of readings, including papers and readings from two books.

The canonical undergrad textbook is "Database Management Systems" by Ramakrishnan and Gehrke. I've often been confused by papers we read and gone to this book for a foundation before jumping back into the paper. There are a _lot_ of chapters I haven't read (namely the first few on ER diagrams, etc.), but the chapters on storage/indexing/query evaluation/transaction management/normalization are good if you read them a few times.

The graduate-level book is called "The Red Book" (http://redbook.cs.berkeley.edu/), and is a great source of foundational papers in the field. You can find most of the papers online, but the introduction gives you a good sense for the history and evolution of databases.

I hope this helps!

pavlovonSep 24, 2017

I use C.G. Jung's "The Red Book". It's imposingly large, very red, and full of impenetrable medieval-style German handwriting and disconcerting drawings documenting Jung's dreams and visions circa World War I. There is an English translation at the end, and if people ask, it's fair to pretend that I've read it because I do skim a few pages occasionally.
Built withby tracyhenry

.

Follow me on