Slashdot Mirror


Geek Books as Holiday Gifts

Sybelius writes "Wired News is running a story that recommends a half dozen good books as holiday gifts. It's a much more inspired list than the one recently offered by Amazon. According to the reviewer, the books chosen are ones that 'any techno-loving, systems-tinkering, hardware-hacking person would love, but that even those who can't program the clock on their VCR will find quite readable.' Do Slashdot readers have any other recommendations for titles that fit this requirement?"

202 comments

  1. Computer Graphics: Principles and Practice in C by glrotate · · Score: 3, Interesting

    Computer Graphics: Principles and Practice in C

    by James D. Foley, Andries van Dam

    Get a geek interested in graphics and learn from the classic.

    1. Re:Computer Graphics: Principles and Practice in C by fireboy1919 · · Score: 4, Insightful

      I wasn't aware that there was anyone who actually felt that three dimensional discrete calculus and C programming are both less difficult to understand than a VCR.

      Go you!

      But if you're going there, why not go ahead and get the master work on algorithms, Numerical Recipes, which is now available in C,C++, and Fortran versions. This, just like your suggestion, is hardcore programmers brainfood, not fluff.

      For softer stuff, may I suggest O'Reilly books about scripting languages? It doesn't really matter which one. Pick one. Ruby, perl, python, etc. They give a good introduction to modern programming libraries, while not getting the newbie bogged down in having to write algorithms that are more complicated than they can deal with.

      --
      Mod me down and I will become more powerful than you can possibly imagine!
    2. Re:Computer Graphics: Principles and Practice in C by forkazoo · · Score: 1

      I haven't been able to figure out how to set the clock in my car, or set any presets. I don't have a VCR, so I can't compare precisely the difficulty involved, but I'm sure it's similar. That said, I agree with the GP that's an excellent book. I might also suggest Shirley's Fundamentals of Computer Graphics, and Savachenko's 3D Graphics Programming, which I picked out of a bargain bin and was quite pleased with for the discount price.

      That said, anybody have a good link to instructions on how to program the radio in my '02 Saturn?

    3. Re:Computer Graphics: Principles and Practice in C by SILIZIUMM · · Score: 1

      Try reading the book that came with your car, mabye ?

    4. Re:Computer Graphics: Principles and Practice in C by Anonymous Coward · · Score: 0

      You must be joking, right? Numerical Receipes is a terrible book for numerical work. The C and C++ versions are there for show, but all of the example codes are translated line by line from the fortran version. In fact, they are so lazy that instead of updating their C version so that arrays start from 0 instead of 1, they just created a special function so that the array bounds work out in C. The text is exactly the same and there are no new examples from the Fortran version. The variable names they use in their examples are meaningless and to top it off, they do not allow you to use their code in any application as it is still copyrighted by them. It's like buying a cookbook and not allowing you to cook from it! Stay away, you have been warned.

    5. Re:Computer Graphics: Principles and Practice in C by fbform · · Score: 1

      why not go ahead and get the master work on algorithms, Numerical Recipes, which is now available in C,C++, and Fortran versions. This, just like your suggestion, is hardcore programmers brainfood, not fluff.

      I don't know if that was supposed to be funny. If you were serious, I'd like to strongly dissuade you from using NR in production code. Don't get me wrong - NR is an excellent teaching aid and it's excellent for getting the concept. It's a very good book to read in an advanced undergrad course on numerical techniques, but please don't use it in production code. For one thing, the C version is a bad hack of the Fortran version, which means that all subscripts run from 1 to N, instead of 0 to N-1, and all arrays are one element longer than they need to be, with the array[0] element not being used. For another, some chapters leave a lot to be desired. In my personal experience, the functions to solve partial differential equations were badly designed (they assume you have Dirichlet boundary conditions throughout, without allowance for Neumann or mixed).

      You should read reviews like this one before you advocate NR.

      Summary: NR discusses the algorithms well, and it's written in an eminently readable style. Its code however is not production grade, and should not be used if you have any better libraries.

      --
      Time flies like an arrow. Fruit flies like a banana.
    6. Re:Computer Graphics: Principles and Practice in C by Anonymous Coward · · Score: 0

      Affiliate link awaaaayyyy!!!

      Yeah, this story was practically made for you, wasn't it? I bet you've been praying for another chance to hawk some books.

    7. Re:Computer Graphics: Principles and Practice in C by fireboy1919 · · Score: 1

      I don't think we were discussing what books you should pull code from, were we? That's not the subject on the door, anyway.

      You are inferring that because I said that there are versions of this book in C,C++, and Fortran that I meant that you should use the code from the book. I did not say this. What I said was that it's a good book to learn from, as you have agreed.
      There were a lot of times looking through the book that I remember thinking "why did they do it that way? It's certainly convoluted."

      You're wrong about the waste of memory, though. Go look again. Whenever they do new/malloc operations, they assign the pointer to an address that is one less than the address given so that the allocated array runs from 1 to n (accessing 0 would be illegal). While this is not convention, it is reasonable. This part adds fairly negligable expense, assuming you can remember that this is what they're doing. Optimizing compilers don't have any problem with this kind of range stuff, either, since the result is still linear, so this will most likely result in no difference at all.

      I've used the same trick myself (making bigger images that have legal coordinates such as (-3,-10) ) with image mosiacs so I didn't have to translate the coordinate system.

      Still, a lot of the algorithms themselves (not the code, usually) are useful exactly the way they are without variation even in production environments (the ubiquitous one that springs to mind is the Gaussian method with pivoting). You just have to keep in mind that the book is thirty years old, and you're going to be doing things the way that they've always been done, which is not necessarily the best way. You can write something using the Numerical Recipe, profile, and then get a different method than the recipe if that's what's sucking your cycles.

      --
      Mod me down and I will become more powerful than you can possibly imagine!
    8. Re:Computer Graphics: Principles and Practice in C by Anonymous Coward · · Score: 0

      cloudkj (685320) is a total spammer. 99% of his postings are affiliate links to amazon.com! Look at his posting history if you need proof. Mod this spamming scum down.

    9. Re:Computer Graphics: Principles and Practice in C by forkazoo · · Score: 1

      None did. I got the car used, and it didn't have the original manuals. :)

  2. Books? That's so 2003! by ErikTheRed · · Score: 4, Informative

    Give them a subscription to Safari.

    --

    Help save the critically endangered Blue Iguana
    1. Re:Books? That's so 2003! by wk633 · · Score: 3, Insightful

      or ACM (www.acm.org) which includes a pretty good online libary. Not as complete as Safari, but a pretty good deal for $99/year.

    2. Re:Books? That's so 2003! by blackcoot · · Score: 1

      for what i do, having access to the acm library is far more useful than safari (but then i'm a research scientist, your mileage may vary ;-))

    3. Re:Books? That's so 2003! by Fahrenheit+450 · · Score: 1

      Yeah, that would be great if O'Reilly hadn't started resting on their laurels and let their collection stagnate.

      Oh look honey... another 400 "Hacks" books. Oooohhh... "Grits 'n' Gravy Hacks"! And "1974 Ford Pinto Hacks"!

      --
      -30-
  3. Referrer flood by emcron · · Score: 5, Funny

    Let the flood of amazon.com referrer links begin! :-) -- Gotta love it when people try to make $0.83 off slashdot

    1. Re:Referrer flood by IO+ERROR · · Score: 0, Offtopic

      Last weekend I made $5.01 off of slashdot readers just clicking on my sig and then wandering around my site and buying stuff. And I didn't post any referral links, just the usual trolls and off-topic flamebaiting. Fortunately I have a day job.

      --
      How am I supposed to fit a pithy, relevant quote into 120 characters?
    2. Re:Referrer flood by davesplace1 · · Score: 1

      Very funny, $0.83 cents a book can add up with a big crowd like SlashDot. Rumor has it that most SlashDoters can even read.

    3. Re:Referrer flood by Archon-X · · Score: 1

      Perhaps maybe then you'd prefer Adult DVD Link, why not.

  4. Re:Books are for gays by Godman · · Score: 1

    Hmmm, its getting to the point now where the first post on any given slashdot story is automatically modded -1.

    --
    I have this really funny quote that I like to put here. Unfortunately, there's this really annoying thing called a char
  5. Harry Potter by Zordas · · Score: 1

    The Harry Potter series is excelent for kids (Adults too).

    1. Re:Harry Potter by miyako · · Score: 2, Insightful

      Actually, I'd second this. I spent a lot of time resisting the pressure to read the Harry Potter books, but I finally broke down and borrowed the first book from a friend of mine, and I have to say that now I have the entire series of books, and found them all to be quite enjoyable.
      While the reading level of the books is certainly going to be low, and not present much of a challenge to adult readers, JK Rowling manages to do an amazing job of creating a great story and an immersive world with the limited complexity of the language that she uses. In fact, this is one of the nice things about this series, it's a very easy and at the same time engrossing read, so I can get through a book relatively fast. There is also a lot of very subtle humor in the books, especially the laters ones once the series was proving popular to adults as well as kids, that is clearly targeted at an older audience.
      These books are especially good for people with kids, because it is one of the few book series that the parents and the kids can equally enjoy.

      --
      Famous Last Words: "hmm...wikipedia says it's edible"
    2. Re:Harry Potter by Anonymous Coward · · Score: 0

      J.G. Ballard is excellent as well. I reccomend _The Atrocity Exhibition_ as a great gift for kids(adults too).

    3. Re:Harry Potter by Kerstyun · · Score: 0
      I spent a lot of time resisting the pressure to read the Harry Potter books, but I finally broke down and borrowed the first book from a friend of mine, and I have to say that now I have the entire series of books, and found them all to be quite enjoyable.
      That's how Saten wins - one sole at a time.

      I will pray for your salvation and so should you.

      --
      Keep the whitehouse white, vote Trump & Palin 2020.
    4. Re:Harry Potter by pjt33 · · Score: 1
      That's how Saten wins - one sole at a time.
      Who's this Saten person - some guy with a foot fetish?
    5. Re:Harry Potter by bint · · Score: 1
      I "broke down" and read the first book, but gave up after that. Not that it was particularly bad, just it felt very much like a book for children, which wasn't much of surprise. There are so many better writers and books and I just didn't think the books were worth the time. I'd prefer fantasy written by Tolkien, Donaldson and Hobb. Much better written *and* with good stories.


      IMO, of course.

  6. The Ultimate Hitchhiker's Guide by JNighthawk · · Score: 5, Interesting

    All of my friends have always told me that the Hitchhiker's Guide to the Galaxy is an awesome book, but I've always had other things on my reading list already. I'm finally done reading the Wheel of Time series and everything by Raymond E. Feist, so I asked for The Ultimate Hitchhiker's Guide for Christmas. I wonder now, if after hearing "The meaning of life is 42." a million times I'll think it's still funny when reading the books.

    --
    Wheel in the sky keeps on turnin'.
    1. Re:The Ultimate Hitchhiker's Guide by Anonymous Coward · · Score: 0
      "The meaning of life is 42." a million times I'll think it's still funny when reading the books.

      You won't. The massive overuse of this joke has made it totally lame and irritating. Like the Stone Henge scene in Spinal Tame, the final moment when you see the original is a total-anticlimax.

      -Steve (posting AC to avoid retaliation from HG2G fanboys)

    2. Re:The Ultimate Hitchhiker's Guide by JNighthawk · · Score: 1

      Heh. The sad part is I never found it funny in real life either.

      --
      Wheel in the sky keeps on turnin'.
    3. Re:The Ultimate Hitchhiker's Guide by fishmasta · · Score: 1

      But the meaning of life isn't 42. 42 is the answer to the question of life, the universe, and everything.

    4. Re:The Ultimate Hitchhiker's Guide by Geoffreyerffoeg · · Score: 1

      I'm finally done reading the Wheel of Time series

      You are never done reading WoT. I'm assuming you're done with the 10 books + 1 prequel that are out. As far as I know, Robert Jordan plans to write at least 2 more books and 2 more prequels. He hadn't earlier mentioned the third prequel, so you never know if he'll add more to his schedule. He might even do another 15 books on some other story arc: Hawkwing's exploits, Lews Therin's story, another Age he hasn't mentioned...there's a lot to be explored.

      Read and find out, I guess.

    5. Re:The Ultimate Hitchhiker's Guide by Anonymous Coward · · Score: 0

      I can't believe people are still giving that guy money.

    6. Re:The Ultimate Hitchhiker's Guide by davesplace1 · · Score: 1

      Yes you will still think its funny after reading the book. The Hitchhiker's Guide to the Galaxy would make a great gift. Thanks for solving my gift giving problems this year :)

    7. Re:The Ultimate Hitchhiker's Guide by Jardine · · Score: 1

      You are never done reading WoT. I'm assuming you're done with the 10 books + 1 prequel that are out. As far as I know, Robert Jordan plans to write at least 2 more books and 2 more prequels.

      Robert Jordan will keep writing WoT books until he dies, leaving everyone hanging on a cliffhanger ending from the last book he's written.

    8. Re:The Ultimate Hitchhiker's Guide by Geoffreyerffoeg · · Score: 1

      I can't believe people are still giving that guy money.

      Me neither. I just checked out the 9th book from the public library. Other than the researchers, who'd want to read these books more than once? Reading the sequels is enough repetition....

      (The library's purchases don't count.)

    9. Re:The Ultimate Hitchhiker's Guide by bfields · · Score: 1
      I wonder now, if after hearing "The meaning of life is 42." a million times I'll think it's still funny when reading the books.

      It's not a lot more than a long series of one-liners, but I still think it's very funny. (Though the "42" thing is one of the few that never struck me as that funny, and I'm mystified as to why it gets repeated so much.)

      --Bruce Fields

    10. Re:The Ultimate Hitchhiker's Guide by Anonymous Coward · · Score: 0

      Spinal Tame?

    11. Re:The Ultimate Hitchhiker's Guide by DirePickle · · Score: 1

      I believe Robert Jordan's own words were somewhere along the lines of, "As long as it keeps making money, I'll keep writing the WoT."

    12. Re:The Ultimate Hitchhiker's Guide by goon+america · · Score: 1

      Yes, but what is the question that 42 is the answer to?

    13. Re:The Ultimate Hitchhiker's Guide by doublebackslash · · Score: 1

      I am getting more books the x-mass than any other present, I think. Many of which are the bofh books. Google for it, the colum is at the reg. H2G2 is GREAT. the best book(s?) I've ever read. I too own the Ultimate Hitch Hiker's Guide, and though the end... NM, read it. Also get some Mark Knophler under your belt, it will make one scene in So Long and Thanks for all the Fish a ot more touching. "The record got to the good bit." Douglas Adams not only was a great writer, but the best satirist that this world has been blessed with enduring.
      --
      "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move."

      --
      md5sum /boot/vmlinuz
      d41d8cd98f00b204e9800998ecf8427e /boot/vmlinuz
    14. Re:The Ultimate Hitchhiker's Guide by moranar · · Score: 1

      Yes, yes it is. I still re-read it whenever I have time (I have the omnibus edition comprising the five books).

      --
      "I think it would be a good idea!"
      Gandhi, about Internet Security
    15. Re:The Ultimate Hitchhiker's Guide by Xiaran · · Score: 1

      Whats six by nine?

    16. Re:The Ultimate Hitchhiker's Guide by Bastard+of+Subhumani · · Score: 0

      I always thought there was something fundamentally wrong with the universe.

      --
      Only three things are certain; death, taxes, and apocryphal quotations - Ben Franklin.
    17. Re:The Ultimate Hitchhiker's Guide by Kevin+DeGraaf · · Score: 1

      Sorry, this is way offtopic, but I don't see any other way to get a message to you (Geoffreyerffoeg).

      Please email me, via the contact form on my website, if you get a chance.

      --
      We have more to fear from the bungling of the incompetent than from the machinations of the wicked.
  7. Hitchhiker's Guide to the Galaxy by bigberk · · Score: 1

    Douglas Adams' classic geek book, I'm buying it for a geek girl. I found that Chapters (Canada) sells the entire trilogy in 4 parts for $6 or so. Yeah, I'm a cheap geek. I've already received the shipment, it really is the whole damn set of books for $6.

    1. Re:Hitchhiker's Guide to the Galaxy by fireboy1919 · · Score: 2, Informative

      If you've got someone who has already read Adam's extremely small collection of works (including HHGTG and the Dirk Gently books, his "we picked up all the clippings of stuff he wrote and put it into a book," and "Starship Titanic" based on his video game), then they might also like Terry Pratchett's books.

      He tells a ripping good yarn, almost all parodies, usually insightful, and always funny. His most famous series is the Discworld books, of which there are 30 or so.

      Reading through these books my favorite author slowly switched from Douglas to Pratchett. The humor style is almost the same, but Pratchett's a little more optimistic about the nature of life, which I find refreshing.

      --
      Mod me down and I will become more powerful than you can possibly imagine!
    2. Re:Hitchhiker's Guide to the Galaxy by Anonymous Coward · · Score: 0

      It's actually a trilogy in five parts.

    3. Re:Hitchhiker's Guide to the Galaxy by miu · · Score: 1

      I second Pratchett, at his best he is incredible. If buying for a gift I'd suggest staying away from the earliest stuff (which can be so dark and sarcastic they are not enjoyable for many people) and his very latest stuff (which suffers from sickening amounts of American style sentimentality). Good books to start with are probably "Guards, Guards" (Ankh-Morpak night watch), "Soul Music" (Death and his relatives), and "Maskerade" (Lancre witches).

      --

      [Set Cain on fire and steal his lute.]
    4. Re:Hitchhiker's Guide to the Galaxy by Chess_the_cat · · Score: 2, Informative

      She can't be that big of a geek if she didn't already own them. BTW, the reason that set is so cheap is because it's missing the fifth volume: Mostly Harmless.

      --
      Support the First Amendment. Read at -1
    5. Re:Hitchhiker's Guide to the Galaxy by parlyboy · · Score: 1
      BTW, the reason that set is so cheap is because it's missing the fifth volume: Mostly Harmless.

      Most of us would pay more to pretend that Mostly Harmless was not part of the "trilogy"...

    6. Re:Hitchhiker's Guide to the Galaxy by belg4mit · · Score: 1

      Actually you left out a few. I've not yet managed to find The Meaning of Liff and its sequel but I hear its good. Last Chance to See is still in print (or was recently) and is a really excellent work.

      --
      Were that I say, pancakes?
    7. Re:Hitchhiker's Guide to the Galaxy by fluffybacon · · Score: 1

      Mort?? For anyone who likes dark and sarcastic I'd recommend Robert Rankin.

      --
      It's not big, but it's clever!
  8. Re:Books are for gays by cbrocious · · Score: 4, Funny

    Thank you sir. If it weren't for non-readers like yourselves (or "non-gays" from your post) we wouldn't have people to pump our gas, wash our windows, and do other trivial but neccesary jobs. I salute you.

    --
    Disconnect and self-destruct, one bullet at a time.
  9. Code by IceFox · · Score: 1, Troll
    I recently picked up "Code: The Hidden Language of Computer Hardware and Software" by Charles Petzold amazon link. It was a very enjoyable read that tells the history of computers came to be. Not the last 20 years history, but most of the book is from 1600-1960's with a little bit out the modern computer. Very enjoyable read. Inspired me to make my own relays out of wire and a two bit adder. :)

    -Benjamin Meyer

    --
    Do you changes clothes while making the "chee-chee-cha-cha-choh" transformation sound?
  10. Classics of CS by nkh · · Score: 3, Informative

    The Art of Computer Programming (Donald Knuth) and the dragon book on compilers of course (I'm reading the first and I will buy the second in a few days). If you don't like mathematics, a good book on functional programming will make your brain all warm inside!

    1. Re:Classics of CS by PostItNote · · Score: 2, Interesting

      A new edition of the dragon book is coming out in about a year. It's starting to show its age, my compilers prof says that there aren't any good, current books, and that if you want a good compilers book you should wait until the next edition of the dragon book.

      TAOCP is still great, however.

    2. Re:Classics of CS by pdiaz · · Score: 1
      Agreed with the dragon book:Don't buy it now. It's quite old now and as the parent says, a new edition is due "early"


      About TAOCP...it's a though book. And it fits in the definition of "classic" (a book that everyone talks about but very few have read ;-). I find the "Introduction to Algorithms" (sec. ed), by Cormen et al much more comprehensive and easy to read. Also, "Algorithms in C", by Sedgewick, is another fine book. And of course, one of my favourites: "Programming Pearls", by Jon Bentley (take the updated second edition)

      --
      Make It Secret . Free JavaScript implementation of AES for your browser
    3. Re:Classics of CS by PostItNote · · Score: 1

      Agreed about TAOCP. It's a tough read. I don't find Cormen (The Big White (now greenish) Book of Algorithms)that easy to read. Oddly enough, Garey and Johnson (A Guide to the Theory of NP-Completeness) is totally readable.

      Different strokes for different folks.

      Another book to check out is the Feynamn Lectures on Computation. Full of neat ideas explained in his inimitable style.

    4. Re:Classics of CS by Anonymous Coward · · Score: 0

      The dragon book hasn't been updated in 25 years.

      There is a new version called "21st century Compilers" by the same authors (more or less). It is supposed to be coming out soon.

      You might want to wait on the old dragon book and get something else instead.

  11. Why not just transfer the /. domain to Wired? by Anonymous Coward · · Score: 0

    All Michael ever does is link to them in just about every fucking "story" he posts.

  12. What I don't like about Safari by baywulf · · Score: 3, Informative

    If you surf too fast through a book they will warn you that a bot may be reading the webpages and they may cancel your account if it happens too often.

  13. I'd like to get.... by elid · · Score: 0, Troll

    Twisty Little Passages by Nick Montfort Just a Geek by Wil Wheaton

  14. Off the top of my Brain.. by Anonymous Coward · · Score: 1, Insightful

    Anything by Terry Pratchett!

    His Discworld Series, or the Book Good Omens.

  15. Schaum's Outline Series by kurtb149 · · Score: 1

    Any of the Schaum's Outline Series books. The are inexpensive and teach the subject in the best way possible: require the student to solve problems.

    --
    http://www.x2ii.info/
  16. Forget tinkering by EEBaum · · Score: 2, Informative

    Get them a good piece of geek fiction. Hitchhiker's Guide, LOTR, Asimov, Arthur C Clarke, etc.

    --
    -- I prefer the term "karma escort."
    1. Re:Forget tinkering by Anonymous Coward · · Score: 0

      One Word: DUNE

  17. sorry about that missing line break by Anonymous Coward · · Score: 0

    nt

  18. Follow-up Webpage of GOOD book referrals? by Anonymous Coward · · Score: 0

    It would sure be nice if a webpage of really
    GOOD books that people recommend could be
    put up somewhere on /. rather than have to
    sort through all the replies this question
    will generate.

  19. A Short History of Nearly Everything by plumpy · · Score: 4, Interesting

    I'd highly recommend Bill Bryson's A Short History of Nearly Everything. I found it because it was one of Powell's "favorite new titles of the season".

    It covers (briefly) the history of the earth, the universe, Physics and Chemistry. If you know your science, you probably won't learn a lot from it, but the fun part is the way he covers the personalities behind all the discoveries. I'd say at least 2/3 of the book is brief biographies of hundreds of people you probably haven't heard of.

    The writing style is very casual, easy to understand even for non-science nerds, and (most surprisingly) pretty funny. It's not very expensive either. I'd reccomend this book to just about anyone with a casual interest in science (even if that interest is so casual that they haven't sought out science books before).

    1. Re:A Short History of Nearly Everything by Xeo+024 · · Score: 1

      I second that recommendation.

      It truly is a great book, I haven't had a chance to finish it yet, but it'll definitely keep you hooked.

    2. Re:A Short History of Nearly Everything by tartarugo · · Score: 1

      I love Bryson's books - I think I've bought most of them. I really was looking forward to reading SHoNE, but was greatly disappointed.

      Although it purports to be a condensed history of science, it's actually highly focused on geology to the detriment of other arguably more influential branches of science. The book is sprinkled with anecdotes surrounding the protagonists of some major discoveries. However, Bryson falls short when he tries to explain the concepts and ideas that have shaken and shaped scientific thought. Being a physicist by training, I was thorougly unimpressed by his explanation of relativity and quantum mechanics.

      Perhaps if the book was named something like "The men that shaped science", I might be less disappointed, but I think that it is undeniable that this not one of Bryson's most compelling works.

  20. poetry? by chocolatetrumpet · · Score: 3, Interesting

    I know this is off the beaten path, but...

    any poetry by Octavio Paz, translated into your native language if you don't speak Spanish.

    I just love his stuff.

    Here's a sample:

    Between going and staying the day wavers,
    in love with its own transparency.
    The circular afternoon is now a bay
    where the world in stillness rocks.

    All is visible and all elusive,
    all is near and can't be touched.

    Paper, book, pencil, glass,
    rest in the shade of their names.

    Time throbbing in my temples repeats
    the same unchanging syllable of blood.

    The light turns the indifferent wall
    into a ghostly theater of reflections.

    I find myself in the middle of an eye,
    watching myself in its blank stare.

    The moment scatters. Motionless,
    I stay and go: I am a pause.

    Translated by Eliot Weinberger

    --
    Spoon not. Fork, or fork not. There is no spoon.
    1. Re:poetry? by Anonymous Coward · · Score: 0

      Zzz.

  21. Two classic accessible books by Anonymous Coward · · Score: 2, Interesting

    Cuckoo's Egg
    Takedown

    1. Re:Two classic accessible books by Anonymous Coward · · Score: 0

      Both are excellent. I also liked Jonathan Littman's "The Fugitive Game", which was published nearly at the same time as "Takedown". The same Mitnick story told from two different perspectives and it was worthwhile to read them both.

      YMMV.

  22. CSS Zen Garden by Khuffie · · Score: 1

    I'd highly recommend CSS Zen Garden, from the makers of csszengarden. It's not out yet, but I'd recommend it to any webdesigner out there.

  23. Just a Geek by brasten · · Score: 2, Informative

    Wil Wheaton... Great gift for geeks and non-geeks...

    1. Re:Just a Geek by WizardRahl · · Score: 1

      a good stud for your pet klingons

    2. Re:Just a Geek by brasten · · Score: 1

      I got rid of my pet Klingons... Too much territory marking... yuck.

    3. Re:Just a Geek by E-Rock-23 · · Score: 1

      I'll second that :D

      --
      Blog Prophyts - Right On, Man
  24. Eric S. Raymond by Chonine · · Score: 1

    I've been reading a lot of Eric S. Raymond's content off of his web site lately, and a lot of it is very interesting. The Art of Unix Programming or The Cathedral and the Bazaar would be a great gift.

  25. Oreilly's Mind Hacks by phoxix · · Score: 1

    Pretty good book, I ended up getting a copy for a fellow geek friend.

    It took me a while to find a copy in NYC, but I finally found a store that had it.

    Clinky Link

  26. Better idea by Turn-X+Alphonse · · Score: 1, Offtopic

    ASK!

    Theres no "Perfect book", you need to know peoples intrests and it's not difficult to just ask what they'd like. It says you buying something they don't want, then they will do the same for you and you both get what you want and theres none of that "Oh yea I love it.. cough fire lighter", type of thing.

    --
    I like muppets.
  27. Comment removed by account_deleted · · Score: 0

    Comment removed based on user account deletion

  28. Art of Machinima by gToon · · Score: 2, Interesting

    Paul Marino's excellent book on making machinima would be a good Christmas gift for the geeks among us. Not only to you get a superb overview of machinima and it's history, you also get step by step tutorials and all of the programs you need to make your own films on the included CD. I'ts also got a funny, laid-back style that will make you laugh while you are trying to figure out the tutorials. *****

  29. books by Phil246 · · Score: 2

    C++ for dummies
    Java for dummies
    * for dummies ...

    1. Re:books by mongoose(!no) · · Score: 1

      WildCard for dummies? Do you mean grep for Dummies? I think /. readers are a bit above the For Dummies series, they aren't the greatest books to learn a computer language from, the best way is tutorials from the internet. A good one is http://www.hetland.org/python/instant-hacking.php for python. Get them a book about the history of computers or some thing about theory on encryption.

    2. Re:books by Phil246 · · Score: 1

      was more referring to the entire " for dummies " range :)
      Personally i found them handy in getting to grips with something totally new

  30. Re:Books are for gays by zlyoga · · Score: 1

    yea because all that reading of books makes them happy:)

  31. How could they have missed it? by koreaman · · Score: 1

    The freely available online Unix System 7 Manual!

  32. What's a VCR? by Anonymous Coward · · Score: 1, Funny

    I read about them once, but not sure what they are for....

    1. Re:What's a VCR? by robfoo · · Score: 1

      The VCR was an early predecessor of the DVD player. Lower in quality, and only programmable by a select few..
      You can find a picture here

  33. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  34. I know an ideal book... by Psychotext · · Score: 1

    ...but it's not out yet. It's called "101 ways to get laid".

    :)

    --
    People that believe in their opinions don't post AC.
    1. Re:I know an ideal book... by Anonymous Coward · · Score: 0

      I'd settle for one.

    2. Re:I know an ideal book... by Garabito · · Score: 1
      You don't need a book for that. Just this FAQ

      It's really worth reading. Most of it is useful, except for some NLP crap that I consider to be BS.

      But just reading the FAQ or the newsgroup posts won't get you laid. You have to start putting those techniques in practice; which could be intimidating or be seen as difficult to introverted or shy people (which I think most /.ers are at some degree)

    3. Re:I know an ideal book... by orthogonal · · Score: 1
      ...but it's not out yet. It's called "101 ways to get laid".
      I'd settle for one.

      Ok, but that one'll cost you $101 dollars.

      First, look in the phone book under "Escorts, blind and unable to smell Dorito dust...."
    4. Re:I know an ideal book... by Psychotext · · Score: 1

      Good one. You know, if the geeks put in half as much effort to learning the opposite sex as they do learning the latest and greatest programming language I reckon they'd probably do fine! ;)

      --
      People that believe in their opinions don't post AC.
  35. Standard Book List by Anonymous Coward · · Score: 0

    A few years back just before Christmas I asked some usenet folks (cup I think it was) what they recommended and posted a few books as examples. After about 20 replies I camp up with my standard book list.

  36. Personally by MrHanky · · Score: 3, Informative

    I want The LaTeX Companion by Frank Mittelbach, Michel Goossens et al. LaTeX is a seriously cool piece of software for text publishing -- and far from easy to use, if you want to exploit its full potential (it's not difficult to produce simple but good looking documents, that's almost automagic). From what I've heard, this book is among the best on the subject. Too bad the title makes it sound like a condom.

    So Santa, if you read this: Please, please, please!

    1. Re:Personally by WillAdams · · Score: 1

      Agreed. (But I bought it for myself as a late birthday present before it came out and had to wait an extra week or two for Amazon to ship it).

      However, please bear in mind that TLC2e is more of a reference text than a beginner's manual / guide --- it's indispensable for understanding LaTeX's error messages and fairly good for understanding an overview of LaTeX (esp. as an overview of what's on CTAN with the new material in this edition), but to learn it you may want another text (and to understand the internals you'll want to typeset (or download) a copy of the literate source for LaTeX: The Program.

      On the bright side, if you wait a little bit you should get a second printing which has a _lot_ of errata fixed (see http://www.latex-project.org for the list).

      William

      --
      Sphinx of black quartz, judge my vow.
    2. Re:Personally by jayed_99 · · Score: 1

      You might want to start off with Guide to LaTeX by Helmut Lopka and Patrick Daly. It's got the same publisher (Addison-Wesley) and is a book about using LaTeX. The LaTeX companion (from what I gathered by perusing it in the bookstore earlier tonight) is more about packages that provide additional functionality to the base system.

      I've only had a chance to scan through bits and pieces since I brought it home, but Guide to LaTeX seems to be an excellent book that is a great starting place for learning about LaTeX.

      If I had more disposable income I would have bought both of them. I've already seen places in the Guide that refer to the Companion.

    3. Re:Personally by jayed_99 · · Score: 1

      Guide to LaTeX is the "beginner's manual / guide" in the series. (I hesitate to call two books a series, but, hey). I just bought it tonight, and it looks great.

    4. Re:Personally by WillAdams · · Score: 1

      Correct, but to nitpick there's also the LaTeX Graphics Companion (not recently updated) and the LaTeX Web Companion in the series.

      William
      (who really should buy the rest of the books in the series)

      --
      Sphinx of black quartz, judge my vow.
    5. Re:Personally by MrHanky · · Score: 1

      Thanks. Yes, Guide to LaTeX seems to be a better starting point, but I've used LaTeX for a while now (written a ~120 page thesis), so I figured I needed more of a reference book. But then again, there are lots of things in LaTeX that I don't understand, but that I can get to work anyway, somehow. It's not unlikely that I need better understanding of the basics.

  37. What about the classics? by meganthom · · Score: 2, Insightful

    Asimov (maybe I Robot would be a good choice with the crappy movie out), Stephenson, Gibson, Nevin, etc.

    I just started reading Ringworld, and I absolutely love it.

    For the physicist/chemist/engineer in your life, I'd recommend the CRC Handbook of Chemistry and Physics. It's a great reference, and a book we would rarely buy for ourselves...

    --
    Live free or die
    1. Re:What about the classics? by d3m057h3n35 · · Score: 1

      I went with Stephenson's Quicksilver for my brother, who is less into scifi and more into fantasy, historical fiction, etc., and Heinlein's immortal classic The Moon is a Harsh Mistress for a friend with one eye always on the stars. I hope they'll be enjoyable for them, they certainly were for me.

    2. Re:What about the classics? by m50d · · Score: 1

      OT but why do you say the movie was crappy? It wasn't as deep as it could have been, but it was better than most action films I've seen. The vertical spinning thing was such a logical evolution I was amazed the Wachowskis (sp?) didn't do it in one of their sequels, but instead they did the awful "now it's slow - now it isn't" thing in the hundred Smiths fight. Maybe we can claim I Robot as Matrix 3, it's far superior to the sequels we did get.

      --
      I am trolling
    3. Re:What about the classics? by dasunt · · Score: 1

      Agreed.

      "I, Robot" the movie had one main problem for non-Asimov fans -- the blatent advertisements at the beginning.

      For Asimov fans, it an additional problems. There is a corruption of the Susan Calvin character -- in the books and the movie, she seems to be socially non-aware, but for different reasons. In the books, she appears to have rejected spending time to learning the nuances of human interaction, instead, focusing on robots. In the movie, she appears to be more clueless about human interaction.

      That being said, its not a bad movie, and is probably the closest that Hollywood would get to spirit of Asimov's work.

      It has an impossible murder in the beginning, which is very Asmovian ("Tales of the Black Widowers", anyone?). The solution to the murder requires an understanding of the SF setting (see "The Caves of Steel" and "The Naked Sun", amoung others). Robots can and have disregarded the three laws (such as Cutie (QT-1) in "Reason" and others) or have formulated rather harsh and drastic solutions when faced with protecting humanity (the Zeroth Law in "Robots and Empire"). It even has the main character who suffers from a "Frankenstein complex" and later learns to deal with it.

      Sure, it isn't based on a specific story, and it doesn't seem to fit into the chronology of Asimov's universe, but it is the closest mainstream movie that we'll see of Asimov's work.

      I think that a major problem with geeks' perception of the movie is that it was sold as an action adventure movie. Thus we go out and highlight the flaws in "I, Robot" while ignoring surfboarding elves and dwarf tossing in a certain other movie.

      In short, we want to hate "I, Robot".

  38. Programming Ruby by Dave Thomas by Anonymous Coward · · Score: 0

    If your giftee is interested in learning programming but "hasn't gotten around to it yet", get them this book. If they use a Mac they have Ruby on their computer already and can start tinkering.

    I recommend this book because it is the best intro to programming I've read in a long time, partly because Ruby is such a nice elegant language, but also because it is a really well-written book. It starts out with an overview and then recovers the same ground but with more detail. So it's like a tutorial and a reference all rolled into one.

    I can't recommend it highly enough!

  39. Earth from Space by Anonymous Coward · · Score: 0

    Earth from Space would be my first choice. Very interesting book, with great images of Earth taken from (you guessed it) space. If you want something funny, a good choice is How To Clone The Perfect Blonde: Using Science To Make Your Wildest Dreams Come True

  40. Hardware Hacking Projects for Geeks by The+Lurker+King · · Score: 0

    It's an O'Reilly book by Scott Fulman

    Definitely fits the topic.

  41. Bastard Operator from Hell by IO+ERROR · · Score: 1

    If I were going to give anyone a book, it would be from the Bastard Operator from Hell series. The poor clueless users who can't even program their VCR need to know what they're in for if they cross one of us....

    --
    How am I supposed to fit a pithy, relevant quote into 120 characters?
  42. Brian Greene by Anonymous Coward · · Score: 1, Informative

    Not sure if this qualifies as a GEEK book per se, but Brian Greene's The Elegant Universe and The Fabric of the Cosmos are excellent qualitative descriptions of modern physics. You won't be able to solve any physics problems after reading them but pretty much anyone can at least gain some insight into how physicists think the world works.

    A little heavy on the analogies (IMO) but overall I'd say Greene is more eloquent and clear than Hawking.

  43. Old skool, Still valuable by Anonymous Coward · · Score: 0
    At a time when Larry Wall was best known for his awesome news reader, rn, and even more awesome patch program, there was Jon Bently. These books contains Jon's Programming Pearls essays from the Communications of the ACM.

    http://tinyurl.com/44yspProgramming Pearls by Jon Bently
    http://tinyurl.com/5k9o4More Programming Pearls by Jon Bently

    If you're even a little bit of a programmer, you'll be glad to have read these books. The second edition of Programming Pearls is online for your reading pleasure at http://www.cs.bell-labs.com/cm/cs/pearls/

  44. For Geeks to be: by eskayp · · Score: 1

    Point & Click Linux, by Roblimo
    -- includes Simply Mepis CD
    -- includes DVD video of GUI rudiments
    -- 270 pages of Mepis usability HowTo

    Bought my gift copy @ Walmart.com
    for a budding noob at work.
    Tested it myself, liked what I found.
    Next year I buy him beer!

    Looks like an effective way to turn MS
    prisoners into Open Source advocates.
    The book -- not the beer!
    Well maybe that too.

    --
    I didn't desert Windows; Windows deserted me: BSOD
  45. Some the cool books on my shelf... by JoeCommodore · · Score: 4, Interesting
    Here are some that grace my bookshelf, some may be way out of date. But in genral they are all interesting.

    Computer history & Culture:

    Hackers - Steve Levey (an all time favorite!)

    Fire in the Valley - Frieberger & Swaine (also a favorite)

    Hacker's Dictionary - Eric s. Raymond (give to your techno-poser friends)

    Computer - a history of the information machine - Campbell-Kelly and Asprey

    Digital Deli: The Comprehensive, User-Lovable Menu of Computer Lore, Culture, Lifestyles and Fancy - Lunch Group, Steve Ditlea (late 70s - 80s computer Lore)

    the Compleat Computer - Van Tassel (60s - early 70's computer lore!)

    Tabletop Fare:

    High Score! Illustrated History of Video Games - Osborne Books

    Arcade Treasures - Bill Kurtz (hard to gdet but a good one for arcade buffs)

    Computers - Ain illustrated History - Christian Wurster

    Cookbooks:

    Giga Bites - the official guide to hacker cuisine - Jenz Johnson (hacker oriented recipies)

    Quick Bytes: Computer Lover's Cookbook - Diane Pfifer (more traditional recipies with computerish sounding names)

    Alternative Reading (when you are in tech overload):

    The Big Book of [Urban Ledgends|Hoaxes|Vice|Loosers|Conspiracy| etc.] - Paradox Press (these are comic anthologies covering various fringe subjects, very fun!)

    the Book of Zines, readings from the fringe - Chip Rowe (zines are limited-run home-made magazines, zine anthologies pluck out some of the more interesting/juicy bits).

    ZINES! vols. I and II - V.Vale or V/Search

    Temp Slave - Jeff Kelly (Great for the out of work or recent graduate! from the Zone of the same name))

    Thrift Score - Al Hoff (the guide to being an informed thrifter, from the Zine of the same name)

    For Movie Fans:

    Golden Movie Retriever - Gale Group (love the genre lists in the back)

    the Phsychotronic Video Guide - Michael J Weldon (a good Fringe cinema Guide)

    Nightmare of Ecstasy: Life and Art of Edward D. Wood - Rudolph Grey (about Ed Wood, the most notable hacker of the film industry, his work may not be pretty, but he did it.)

    Some Fiction:

    Colossus, Fall of Colossus, and Colossus & the Crab - D.F. Jones (one of the better computer ruling the world tales).

    Wizard's Bane - Rick Cook (Sword and Sorcery Fantasy with a computer hacker bent, entertaining)

    Microserfs ~ Douglas Coupland (a semi-fictional view of the Microsoft Culture)

    Totally Retro:

    Basic Computer Games (series) - David H. Ahl - (Lots of simple terminal-based BASIC games, maybe give to the PHP/Perl programmer looking to put something fun on thier site)

    Starship Simulation - Roger Garrett (a bold multi-computer Star Trek like, simulation concept written in pseudocode)

    What do you do after you hit RETURN - or the P.C.C.'s First Book of Computer Games - People's Computer Company (retro Whole Earth Catalog meets BASIC Computer Games tabletop fare!)

    --
    "Enjoy what you're doing! If it becomes drudgery, you're doing it wrong!" - Jim Butterfield
    1. Re:Some the cool books on my shelf... by MourningBlade · · Score: 1

      I'm happy to see someone refer to Microserfs! That's an incredible book.

      I keep trying to get friends to read it, it's quite short - but for some reason they avoid it like the plague. Even when I tell them it wasn't written by Microsoft.

    2. Re:Some the cool books on my shelf... by Psychotext · · Score: 1

      Can't comment on most of those, but I've read "High Score!" and it really was excellent.

      --
      People that believe in their opinions don't post AC.
    3. Re: Some the cool books on my shelf... by gidds · · Score: 1
      Hacker's Dictionary - Eric s. Raymond (give to your techno-poser friends)

      Merely a snapshot of the continually-evolving Jargon File.

      The Big Book of [Urban Ledgends|Hoaxes|Vice|Loosers|Conspiracy| etc.]

      Again, more up-to-date stuff can be found at Snopes, The Straight Dope, The Urban Legends Research Centre, Hoaxkill, The Museum of Hoaxes, &c.

      Nothing wrong with dead-tree books, of course, but nice to know of alternatives.

      --

      Ceterum censeo subscriptionem esse delendam.

  46. The Making of the Atomic Bomb by Scott+Ransom · · Score: 3, Interesting

    by Richard Rhodes is one of (if not the ) best book that I have ever read. It has something for everyone, but it is especially suitable for geeks as it details the development of quantum mechanics and atomic physics, before diving into one of the most amazing engineering projects ever undertaken by mankind.

    And it is written incredibly well also.

    Highly recommended.

    1. Re:The Making of the Atomic Bomb by tooba · · Score: 1

      Let me add a hearty hear hear. The Making of the Atomic Bomb is easily the most interesting history/physics/engineering book I have ever read. The way the author describes the discoveries made by the pioneers of nuclear physics is simply riveting. It even inspired me to take a nuclear engineering course as one of my electives next semester.

  47. made $50 last time by ylikone · · Score: 1

    I have now made a bit over $50 from a slashdot post from the amazon top-ten book thread. But I was lucky, as my post was close to the top and got moderated +5 early on. It's the first time I've made money from posting.

    --
    Meh.
    1. Re:made $50 last time by Anonymous Coward · · Score: 0

      "Step 5 ..." has been discovered...

  48. If Geek happens to be a grad student... by Anonymous Coward · · Score: 0

    The first dead-tree collection of Jorge Cham's "Piled Higher and Deeper", put out a year or two ago. Good for laughing/crying about the academic life or scaring away potential grad students.

    Disclaimer: I'm just a lazy AC, not a shill!

  49. Duh by ylikone · · Score: 1

    Yeah, Harry Potter books were big... BACK IN 2001! The new hotness is the "Series of Unfortunate Events" kids books.

    --
    Meh.
    1. Re:Duh by Class+Act+Dynamo · · Score: 1

      I just saw the movie with Jim Carrey. It certainly was entertaining, but it could have been better. Are the books better? Also, I just read the Potter books last week. I enjoyed them and see why the caught the interest of children and adults alike.

      --
      My other computer is a Jacquard loom.
  50. Too much fiction for me by krumms · · Score: 4, Funny

    As it happens, Ash is an enthusiastic quantum-computing amateur ... a retired British physicist who turns out to be more than 4 billion years old ... Ash modifies his quantum computer into a time machine and teleportation device.

    With the help of his new girlfriend, Melody ...



    Okay, I can believe a basement quantum-computing whiz kid, the 4 billion year old physicist and time travel, but a girlfriend? Pull the other one!
  51. Griffiths! by TheManFromMars · · Score: 1

    Geek books you say? Well look no further than Introduction to Quantum Mechanics and Introduction to Electrodynamics, both authored by David Griffiths. If you are feeling particularly ambitious there is always the phone book.

  52. The forgotten title.... by BorisSkratchunkov · · Score: 1

    Zork I: The Forces of Krill

  53. childrens propaganda by ylikone · · Score: 2, Funny

    Nice to the see that the Christmas spirit is alive with you helping out at the shelter by reading extremist right-wing wacko books to the little abused children. You'll have them full of greed and ignorance in no time! Good luck! GO AMERICA!

    --
    Meh.
  54. A better geek computer book list! by ylikone · · Score: 1

    Here is a better top-ten list of recent geek computer books.

    --
    Meh.
  55. Bringing Down The House by Anonymous Coward · · Score: 0

    Not a g33k or h4x0r book per se, but Bringing Down The House: The Inside Story of 6 M.I.T. Students Who Took Vegas For Millions was a fun read. Sometimes it borders on cheesey, but it's a true story, and is a good David vs Goliath read.

    Plus, it's a story where you root for the geeks, and the geeks win. For a while, anyway...

  56. Transmission by divvy · · Score: 2, Interesting

    I would recommend Transmission by Hari Kunzru. It is the story of a virus writer, who unleashes a virus called Leela.exe -named after his favourite bollywood actress, and the actress herself who basks in the new found international glory as the namesake of the virus. Pretty interesting story of body shopping in U.S. and kitchy culture of bollywood.

  57. Don't Waste Money on Books! by Anonymous Coward · · Score: 0

    Send coal to the MPAA/RIAA.
    http://www.downhillbattle.org/coal/

  58. Anything by V. S. Ramachandran by FleaPlus · · Score: 1

    I recommend any book by V. S. Ramachandran. Really, anything written by him is a joy to read and packed with knowledge. His latest book is "A Brief Tour of Human Consciousness," which examines such interesting phenomena as phantom limbs, patients who insist that their poodles or mothers are imposters, synesthetes who see colors in numbers or flavors in sounds, and the root of consciousness in the human brain.

  59. Geek book by Anonymous Coward · · Score: 0

    Lucky Wander Boy -- worth it for the essay On Geeks alone.

  60. Games, Linus, & Crypto by McSnickered · · Score: 2, Interesting

    The 3 most enjoyable books I've read in the last five years are:

    1. Masters of Doom - the story of John Carmack & John Romero's creation of the game Doom. From their teenage years to their ultimate breakup (sniff).

    2. Just For Fun by Linus Torvalds - Just a very interesting autobiography about a normal guy who creates a software revolution.

    3. The Code Book - gives a history of cryptography with a lot of great info about modern public-key cryptography. Really fun book.

    --
    They call me the working man. I guess that's what I am.
  61. List of Books for Software Development by under_score · · Score: 2, Informative

    NOTE: blatant self promotion.

    I maintain a list of books and other resources for all sorts of people who work in the software development field including of course, programmers, managers, executives, testers, etc.

    Software Resources

    The list is heavily weighted towards Agile software development.

  62. Good books are Good Thing (tm)!!! by Anonymous Coward · · Score: 0
  63. Godel, Escher, Bach by saddino · · Score: 2, Interesting

    IMHO, there is no better geek book. Sure, it's dated. And sure, it's hefty. But no one has ever so fully embraced the ideas of recursive logic and number theory in sample, in writing and in wit. It's a treasure -- and if you're a geek and haven't read it (or tried to read it) then you don't know what being a geek is.

    On Amazon of course. 777 pages of awesome stuff.

  64. Web Design by Anonymous Coward · · Score: 0

    Don't Make Me Think: A Common Sense Approach to Web Usability
    by Steve Krug. http://www.amazon.com/exec/obidos/tg/detail/-/0789 723107/104-2190378-0727921?v=glance

  65. Passion sells.. by digital.prion · · Score: 1

    Give them the Picture book versi0n of the "Kama Sutra" and a box of "Go Lucky".

    .. What the hell.. just send em and email with this as the "Happy Wishes" link: http://users.forthnet.gr/ath/nektar/kma/main.htm .btw .. does this count as pr0n?

    --
    Smile.
  66. Find the Bug by AdamBa · · Score: 1
    Allow me to recommend a great book for any programmer: Find the Bug . The book has the source code to 50 short programs, each with one single bug hidden within; the challenge for the reader is to find that bug. This combines the problem-solving challenges of a Martin Gardner book with real training in debugging and code reading. Great stuff for propellerheads, and best of all the book provides enough information about the languages used (C, Python, Java, Perl, and assembler) that programmers of all stripes can play along, no matter what their previous experience.

    Yeah, I know, it was written by me, but I really think it is a great geek gift.

    Failing that, let me recommend the Demon Princes books by Jack Vance (volume 1 and volume 2). The best SF I know. "...the kind of quick, paradox-savoring intelligence -- the capacity, present even among men of power, to forget caution in the love of ironic wit and abstract thought" - Adam Gopnik.

  67. Just so you know. by Anonymous Coward · · Score: 0

    I am modding down any of you dumb motherfuckers who post a referral link.

  68. Ayn Rand by Anonymous Coward · · Score: 0

    Atlas Shrugged

    That's #1 on the must-read list.

    #2 is "The Bell Curve"

    Read those two, and all the rest of the world will be ordered for you, for life.

  69. As a self-taught coder, I highly recommend by jayed_99 · · Score: 1

    Mastering Algorithms with C

    Lacking a computer science degree, I didn't understand a lot of basic algorithms as well as I should -- some I didn't understand at all. I just used what worked even if something else might have worked better.

    Mastering Alorithms with C went a *looong* way toward teaching me the pros and cons of various sorts, trees, graphs and queues. (There's also nice sections on compression and encryption).

    The explanations are very thorough. It helps to have at least a minimal understanding of C, but you can get a lot out of the book without it. Lots of pretty pictures and diagrams for the visually inclined.

    If you don't have a formal education in computer science, I recommend that you run out and buy this book right now -- you'll be doing yourself a huge favor.

  70. Shadows of Forgotten Ancestors by ImaLamer · · Score: 1
    "Shadows" is a great book written by Carl Sagan and Ann Druyan that takes you all through evolution and not only answers questions but makes the reader more interesting in asking a few of their own. Asks big questions like "Who are we?" and "Where did we come from?"
    Amazon Link to purchase (I don't get paid for this)

    Amazon Review
    From Publishers Weekly
    In a leisurely, lyrical meditation on the roughly four-million-year span since life dawned on Earth, Sagan and Druyan ( Comet ) argue that territoriality, xenophobia, ethnocentrism, occasional outbreeding and a preference for small, semi-isolated groups are elements in a survival strategy common to many species, including Homo sapiens. Yet society's problems, they assert, increasingly demand global solutions and require a dramatic, strategic shift which the authors optimistically believe humankind is capable of achieving. This engaging, humane odyssey offers a stunning refutation of the behavioristic worldview with its mechanistic notion that animals (except for humans) lack conscious awareness. Writing with awe and a command of their material, the husband-wife team cover well-trod terrain while they discuss the evolution of Earth's atmosphere and life forms, the genetic code, the advantages of sexual reproduction. The last third of the book, dealing with chimpanzees, baboons and apes, is the most interesting. Sagan and Druyan find chimps' social life "hauntingly familiar" with its hierarchy, combat, suppression of females and chimps' remarkable ability to communicate through symbols. First serial to Parade.
    Copyright 1992 Reed Business Information, Inc.


    Then when you got that down read The Lucifer Principle by Howard Bloom which explores human nature and it's effect on history...
    From Publishers Weekly
    The "Lucifer Principle" is freelance journalist Bloom's theory that evil-which manifests in violence, destructiveness and war-is woven into our biological fabric. A corollary is that evil is a by-product of nature's strategy to move the world to greater heights of organization and power as national or religious groups follow ideologies that trigger lofty ideals as well as base cruelty. In an ambitious, often provocative study, Bloom applies the ideas of sociobiology, ethology and the "killer ape" school of anthropology to the broad canvas of history, with examples ranging from Oliver Cromwell's reputed pleasure in killing and raping to Mao Tse-tung's bloody Cultural Revolution, India's caste system and Islamic fundamentalist expansion. Bloom says Americans suffer "perceptual shutdown" that blinds them to the United States' downward slide in the pecking order of nations. His use of concepts like pecking order, memes (self-replicating clusters of ideas), the "neural net" or group mind of the social "superorganism" seem more like metaphors than explanatory tools.
    Copyright 1994 Reed Business Information, Inc.
  71. Offtopic? by ylikone · · Score: 1

    How the hell is this offtopic? It is a link to a post about 3 good computer books! How much more ontopic can I get? Geesh!

    --
    Meh.
    1. Re:Offtopic? by Anonymous Coward · · Score: 0

      It's the closest to -1, Fuck You You Money-Grubbing Asshole as Slashdot has, so it has to do.

  72. Re:Books are for gays by Anonymous Coward · · Score: 0

    Your an idiot. just by posting you've proven you can not only read but that you know what a book is this makes me wonder, Have you ever read a book?

  73. food for geeks by belmolis · · Score: 1

    Well, in my experience geeks like Chinese food, so I suggest The Eater's Guide to Chinese Characters by the late James McCawley, a linguist and connaisseur of Chinese food. It teaches you to read Chinese menus. Long out of print, it was reprinted last year. You can get it from the publisher (link above) or Barnes and Noble.

  74. random grab-bag by Anonymous Coward · · Score: 0

    - Learning Perl
    - The Hobbit
    - Le Petit Prince (The Little Prince)
    - Snow Crash
    That's all I can think of in the "light" reading department. Hardcore geeks might like also:
    - Programming Perl
    - Lord of the Rings + Silmarilion
    - The Design and Implementation of the 4.4 BSD Operating System
    - anything by Richard Stevens
    - OpenBSD 3.6 official cdrom set, t-shirt, poster, etc. :)

  75. Not a science geek, but... by Anonymous Coward · · Score: 0

    Surely ou're Joking, Mr. Feynman! is a greeeeaat book. someone also mentioned A Short History of Nearly Everything. also very good.

    and I'm not much of a science geek, but these were great. also Bad Astronomy. i walked away after reading that feeling like i knew sooo much.

  76. Amazon's book selection... by yooHoo202 · · Score: 1
    Amazon's selects aren't that great. I was loooking at their site earlier today and their "best new movies" was a pretty lackluster list.

    This gift-finder is a bit more personal - but I'll still procrastinate until Christmas Eve.

    Bring on the crowds...

  77. Pickaxe 2 by Anonymous Coward · · Score: 0

    Pickaxe 2, otherwise known as Programming Ruby, the Pragmatic Programmers' Guide, 2nd edition, came out a couple of months ago, and is a brilliant intro and reference to a really cool language.

  78. Revisionist history by Anonymous Coward · · Score: 0
    Revolutionary history: January 1984 launched the revolution, and the results are sitting right there in front of you. Whatever hardware and operating system you choose to use, "Every computer today is basically a Macintosh, a very different type of computer from those that preceded it," according to Steve Wozniak, co-founder of Apple Computer, in his foreword to Revolution in the Valley by Andy Hertzfeld ($25).

    That's not so much revolutionary history as revisionist history. It would be more accurate to say "every computer today is basically a Xerox Star" which got its start in 1976. Today, Macs owe more to Unix workstations than they do to the original Mac.

  79. Interconnections, 2nd Edition, by Radia Perlman by anti-NAT · · Score: 1

    Classic book on networking. I wish it had been the first or second book I'd bought on networking, not the 20th or so.

    --
    The Internet's nature is peer to peer - 20050301_cs_profs.pdf
    1. Re:Interconnections, 2nd Edition, by Radia Perlman by anti-NAT · · Score: 1

      Great interview with Radia about the book at The Poetry of Protocols : Radia Perlman Discusses Interconnections.

      --
      The Internet's nature is peer to peer - 20050301_cs_profs.pdf
  80. Playboy by Anonymous Coward · · Score: 0

    A subscription. Pretty much everyone I know who fits the description given would like that!

  81. Re:FYI by Anonymous Coward · · Score: 0

    Thanks, I will! Remove your affiliate garbage, I mean, you money-grubbing shit.

  82. My next order... by Kris_J · · Score: 1
    I've got an order in at the local bookstore at the moment. When I pick it up, my next set of books will be:These are from a list in the latest Adbusters. I usually get my fiction suggestions from Cory Doctrow's bOINGbOING. So Yesterday was the best recent suggestion.
  83. O'Reilly Factor for Kids is #1 on NY Times by Anonymous Coward · · Score: 0

    O'Reilly Factor for Kids, the book that you deride, is actually now #1 on the New York Times' bestsellers list.

    1. Re:O'Reilly Factor for Kids is #1 on NY Times by Anonymous Coward · · Score: 0

      And Mein Kampf is #2.

  84. Books As Gifts by Anonymous Coward · · Score: 0

    The Elements Of Style
    Strunk and White

    Any mage who writes code, documentation or user manuals in English simply must read and implement the rules of this book.
    Failure to do so will not enhance the geekness of the technologist. Such failure will validate other's assumptions of their sloth, poor education and contempt for the un-geeky masses.

  85. Programming In Prolog... by Anonymous Coward · · Score: 0

    by Clocksin & Mellish. The long-awaited third edition has just been released and has been rewritten to match the ISO Prolog standard.

  86. HELP ME FIND AN OLD BASIC BOOK FOR XMAS! by Anonymous Coward · · Score: 0

    I once learned programming from an OLD BASIC or variant book.

    Details:
    - I read it around 1993, but it could have been published before that period. It is at least 11 years old.
    - Small paperback
    - Green covers
    - On the front there are two kids. One boy and one girl, sitting in front of a TRS-80 model 3 or something that vaguely resembles it.
    - The book is a small paperback, the size of a story novel. About 3/4-1 inch thick.

    I'm desparately trying to find this book. I'd love to add it to my collection just for memory sake. For the love of me I don't remember any more details! It had some very simple BASIC games that involved goto statements like touring a mountain and having food supplies or something.

    Since this is slashdot I'm hoping and knowing at least 1 person will know this book. Please help me find my lost childhood memories for xmas! :D

    1. Re:HELP ME FIND AN OLD BASIC BOOK FOR XMAS! by JoeCommodore · · Score: 1
      Small paperback book on BASIC? Kind of sounds like a TAB book to me, maybe "A to Z book of BASIC Games", or something of that sort?

      Not familiar with the cover art so I can't help much further. though as another tip, eBay is a great place to start, search for BASIC GAME* and you will find a few books listed.

      --
      "Enjoy what you're doing! If it becomes drudgery, you're doing it wrong!" - Jim Butterfield
  87. Books as Holidayt Gifts!? beware... by Savatte · · Score: 1

    I gave my little brother gift certificate to waldenbooks for christmas last year, even though I knew he wanted a some videogame for his game cube. Now, not only does he think I'm geeky, but he resents me for my lame gift. Don't let this happen to you! Don't slide down to a lowre rung on the social ladder!

  88. May as well plug away... by mbrother · · Score: 1

    Hard science fiction, adventure, physics, astronomy, biology, artificial intelligence, and more good stuff like that. The hardcover has been available for a year, and the paperback will be out in a couple of weeks (right AFTER Christmas). I'm actually going to release Star Dragon in its entirety electronically at the end of the month as well. For more information and reviews (which were amazingly good), see my novel webpage. Thanks for checking it out!

    --
    Professor of Astronomy, Author of Spider Star & Star Dragon (Tor)
  89. You don't have to be a geek to appreciate Bryson.. by OldJohnno · · Score: 1

    I enjoyed his travel books - "Down Under" in particular often shows off his somewhat quirky humour...

  90. The Night is Large by M.G. by shadowmatter · · Score: 1

    "The Night is Large" by Martin Gardner is a diamond in the rough. I haven't heard it mentioned in any geek circles, but it's definitely for people who like to know a little bit about everything, or simply muse about it -- qualities I find pretty much everywhere in geeks.

    The book is a collection of Martin Gardner's essays from Scientific American and the New Yorker spanning the following topics: Physical Science, Social Science, Pseudoscience, Mathematics, The Arts, Philosophy, and Religion.

    Now I know some geeks may turn their noses up at quite a few of those topics -- but Gardner hardly makes any of them boring. He has such insight, such sharp focus on every topic -- no matter how wide-ranging it may be -- he can make you feel downright ignorant. But this only compels you to read more. You feel like you're reading from a true renaissance man.

    That, and the cover art is great. Search for it on Amazon.

    - sm

  91. bookpool.com by DigitalTechnic · · Score: 0

    is what I suggest.

  92. Re:FYI by Anonymous Coward · · Score: 0

    cloudkj is a total spammer. 99% of his postings are affiliate links to Amazon. Look at his posting history if you need proof. Mod this spamming scumbag down.

    Flames and trolling have always been a part of slashdot but people spamming slashdot with affiliate links like his (along with all that Free IPod!!! crap) are doing more to bring down slashdot than trolls and flames ever could.

  93. a couple from my own list by blackcoot · · Score: 1

    first off, don't buy geek books as gifts unless you're /certain/ they will be well received. kinda like buying a set of pans for your mother.

    anyhoo, on my list:

    "information theory and statistics" by kullback
    "fundamentals of digital image processing" by a.k. jain
    "digital video processing" by a.m. tekalp
    "calculus: early transcendental functions" by larson, hostetler, & edwards
    "principles of data mining" by d. hand, h. mannila, & p. smyth
    "elements of statistical learning" by t. hastie, et. al

    of course, that may well be a bit much for most ;-)

  94. Jakob Nieson by PinkTrousersScientis · · Score: 1

    "Designing Usability" is great. Anybody who uses the Internet can relate to it.

    Also any of the Steven McConnell's books are good. I have almost all of them.:)

  95. Re:buy them mein kampf -- kill the jews by tomjen · · Score: 1

    I have read that book. It sucks. Also you can it read to you online. Best way to falll asleep i have ever tried.

    --
    Freedom or George Bush
  96. Re:Best Books Still Use Paper by Kerstyun · · Score: 0
    Many of them have parents from China, and I read the first book with them. I want to give them the best chance to survive in this world.
    Nuke the gooks and take all there rice. The world has more'n enough hethen yellerbellies already.
    --
    Keep the whitehouse white, vote Trump & Palin 2020.
  97. Anal Sex For Beginners, volumes I-IX by Anonymous Coward · · Score: 0

    Definitely a geek icon.

  98. A few I can recommend by bob · · Score: 1

    Any of these will change the way you look at the world:

  99. The OZ Book - Concepts Techniques and Models by Anonymous Coward · · Score: 0

    1.) dude, you totally forgot Concepts, Techniques, and Models of Computer Programming, otherwise known as The Oz Book or SICP Vol.2.

    2.) C++ is for wankers; the most phoney attempt at OO ever. Java's got major problems too, but sometimes people have to codemonkey to eat -- and PHBs all want C++ or Java for precisely the reasons they're PHBs.

    3.) Python, imho, is a bit of a wank as well; basically "C++ or Java done right". but that very model of OO is faulty. give smalltalk and ruby a serious try sometime. (though squeak could stand to learn some lessons from multics / unix / emacs.)

  100. Codewise? by Fahrenheit+450 · · Score: 1

    What I'm looking for is a CS (not necessarily just programming) equivalent to Shirley O. Corriher's excellent Cookwise or Alton Brown's I'm Just Here for the Food: Food + Heat = Cooking, a couple of books that teach you about the chemistry of cooking at a very accessible level, in order to teach you how cooking works so you can successfully modify or create your own recipes, and not just giving you a list of recipes to follow.

    I suppose that SICP is sort of close, but it's not nearly as accessible as Cookwise (and much more boring)

    --
    -30-
  101. Feynman Lectures on Physics by Lawrence_Bird · · Score: 1

    classic 3 volume set that any science/math geek should have.

  102. Fiction books for the hacker in all of us by Techno-Hat · · Score: 1

    Here are a few fiction books for the hackers in all of us. These are reprints of classic series books dealing with inventors and the neat gadgets they used.

    Purple House Press has all three of The Mad Scientist's Club books reprinted, with the 4th (previously unpublished) available next year. No geek is truly complete without have read these.

    http://www.purplehousepress.com/msc.htm

    Let's not forget Tom Swift. The first 25 volumes of the Tom Swift Sr. series are available as free e-texts from Project Gutenberg. The hard to find Tom Swift and His Giant Telescope has been reprinted and can be purchased here.

    http://www.cafepress.com/wogglebug

    Does anybody know of any other classic series books being reprinted with inventions/hacking as the central theme?

  103. books? by areve · · Score: 1

    Do any of these books have pdf format so i can read them on my TFT?

  104. It is touching that you recommend this. by jotaeleemeese · · Score: 1

    Since Octavio Paz is one of the pillars of modern literature, in par with any wirter you can think about of the XXth century.

    Unfortunately poetry is hellishly difficult to translate, but better that than nothing.

    --
    IANAL but write like a drunk one.
  105. Fractal Geometry of Nature by kezze · · Score: 1

    The Fractal Geometry of Nature by Benoit B. Mandelbrot is definately worth reading.
    Your way of looking at things will change, so read carefully!

  106. Re:FYI by Anonymous Coward · · Score: 0

    Do what I do. Mail Amazon and complain.

    See how long that account lasts when enough people complain about it...

  107. Hard Boiled Wonderland and the End of the World by cinemabaroque · · Score: 1

    by Haruki Murakami, modern Japanese author. Very amazing, spectacularly existential, well translated to boot. Please read it, give it to others, you'll have a blast. (oh yeah, all of his books are good too, if you like vonnegut then you might get a kick out of his sense of reality)

    --
    00010111 always try everything twice
  108. WHEW! by lbmouse · · Score: 1

    When I first quickly scanned the headline, I thought it said "Greek Boys as Holiday Gifts".

  109. Affective Computing by FrenchyinCT · · Score: 1
    I'm reading Dr. Rosalind Picard's "Affective Computing" regarding the research she's done at MIT on the role emotions can play in robotics. Geeky stuff, but good for the feminist geek in your list who will admire a chickie-boo scientist who went against the grain of male-dominated uber-right-brained computer scientists and did the research anyway.

    Chix r00l!!!

  110. speaking of books by Anonymous Coward · · Score: 0

    Anyone have a current title for one that includes modPerl and Postgres?

    Everything I see is PHP and MySQL. For a beginner, there are plenty of how-to books for PHP and MySQL, and what appears to be a drought of books on modPerl and Postgres. Unless the books are old. Sure, there are docs out there. And I have a few of the online books on Postgres. But I don't see any like the PHP/MySQL set up this bookstore or other site examples books. And another thing, how about using Debian for the distro in some of these books, instead of always using Red Hat?

    Hair Trap Hair Salon New York