active questions tagged books - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T22:51:10Zhttp://stackoverflow.com/feeds/tag/bookshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809052/book-style-website-how-to-have-different-links-on-each-page0book style website, how to have different links on each page?dean nolan2009-11-27T14:21:03Z2009-11-28T20:30:55Z
<p>I am creating a website that is to have a book style layout. So you turn the pages and they fold over. I have this working in JQuery for images.</p>
<p>What I am looking to do is have clickable links on the pages so that I can jump to a page further in the "book" or even to another site.</p>
<p>Does anyone know the best way to go about this or have any examples to help out?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1813379/book-recommendations-for-christmas1Book Recommendations for ChristmasThe Pixel Developer2009-11-28T18:51:00Z2009-11-28T20:01:15Z
<p>Christmas is upon us and as usual I have no idea what I want. So instead of having my parents waste their money on something useless I've decided I would like some programming books.</p>
<p>My main programming preference is PHP, but I am moving away from that to become a better programmer. (Moving to C), I still use PHP in my day to day job so keep that in mind.</p>
<p>I am specifically interested in Object Oriented Programming (particularly design patterns) and lower level programming (so pointers, binary, ascii, etc ...).</p>
<p>If you post suggestions for other languages I shall update the discussion.</p>
http://stackoverflow.com/questions/1812307/please-suggest-a-good-net-webservice-book0please suggest a good .NET Webservice bookWondering2009-11-28T11:29:15Z2009-11-28T11:44:21Z
<p>Dear All,
can u please suggest a good .NET webservice book? I do have basic knowledge in web service.</p>
http://stackoverflow.com/questions/871354/bjarnes-new-book-anyone-done-the-exercises7Bjarne's new book - anyone done the exercises?20th Century Boy2009-05-16T00:28:55Z2009-11-28T07:26:35Z
<p>I'm doing the exercises in Stroustrup's new book <a href="http://www.stroustrup.com/Programming/" rel="nofollow">"Programming Principles and Practice Using C++"</a> and was wondering if anyone on SO has done them and is willing to share the knowledge? Specifically about the calculator that's developed in Chap 6 and 7. Eg the questions about adding the ! operator and sqrt(), pow() etc. I have done these but I don't know if the solution I have is the "good" way of doing things, and there are no published solutions on Bjarne's website. I'd like to know if I am going down the right track. Maybe we can make a wiki for the exercises?</p>
<p>Basically I have a token parser. It reads a char at a time from cin. It's meant to tokenise expressions like 5*3+1 and it works great for that. One of the exercises is to add a sqrt() function. So I modified the tokenising code to detect "sqrt(" and then return a Token object representing sqrt. In this case I use the char 's'. Is this how others would do it? What if I need to implement sin()? The case statement would get messy. </p>
<pre><code>char ch;
cin >> ch; // note that >> skips whitespace (space, newline, tab, etc.)
switch (ch) {
case ';': // for "print"
case 'q': // for "quit"
case '(':
case ')':
case '+':
case '-':
case '*':
case '/':
case '!':
return Token(ch); // let each character represent itself
case '.':
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
{
cin.putback(ch); // put digit back into the input stream
double val;
cin >> val; // read a floating-point number
return Token('8',val); // let '8' represent "a number"
}
case 's':
{
char q, r, t, br;
cin >> q >> r >> t >> br;
if (q == 'q' && r == 'r' && t == 't' && br == '(') {
cin.putback('('); // put back the bracket
return Token('s'); // let 's' represent sqrt
}
}
default:
error("Bad token");
}
</code></pre>
http://stackoverflow.com/questions/1806050/good-bison-books-recommendation2Good Bison Books RecommendationNathan Campos2009-11-26T23:03:12Z2009-11-28T00:20:47Z
<p>Hello,<br />
I'm now going to do the things right, now I'm going to learn how to develop a compiled language using Bison by books, then I want some books recommendations(better if I can have they for Kindle).</p>
http://stackoverflow.com/questions/1809463/best-tool-for-writing-an-programming-book0Best tool for writing an Programming Book? [closed]walkthedog2009-11-27T15:50:37Z2009-11-27T15:58:02Z
<p>Well, this is not directly programming related! But a friend of mine wants to write a book about programming. Now he asked me if I knew a good software for this, because Word crashes 10 times a day on his machine, and OpenOffice is just very chunky and slow. Also none of them seem to have any useful support for including Code Listings (examples) with useful syntax highlighting or at least some sort of support for inserting code (i.e. indicating line breaks with arrows that turn around, line numbers, etc). Latex is out of question since it's incredible hard to use and has no really useful feature for including tables. It's a mess.</p>
<p>Maybe some IT authors are here who can give some hints what tools they use. That would be great!</p>
http://stackoverflow.com/questions/1804560/good-ethical-hacking-book3Good ethical hacking bookXinus2009-11-26T16:12:51Z2009-11-27T12:50:21Z
<p>What is the best book to start learning ethical hacking ? </p>
http://stackoverflow.com/questions/1754891/is-there-any-good-book-or-website-where-i-can-learn-php-regular-expressions7Is there any good book or website where I can learn php regular expressions?hkshambesh2009-11-18T10:04:50Z2009-11-27T10:48:47Z
<p>Any recommendations, as I need to learn regular expressions to search for specific string and replace using specific operators. I have looked at the php functions such as preg_match && preg_replace and understood how they work but all I need is to be more familiar with the operators for expressions. Thanks.</p>
http://stackoverflow.com/questions/165473/are-programming-books-a-necessity-nowadays6Are programming books a necessity nowadaysJobi Joy2008-10-03T02:45:36Z2009-11-27T09:07:38Z
<p>Do you think video blogs/screen-casts/podcasts are the best instruments to learn new stuffs in the programming than a book. Nowadays almost everyone has a hand held device like iPod or Zune to hear/watch conveniently. </p>
http://stackoverflow.com/questions/301478/what-books-and-sites-should-managers-of-programmers-read6What books and sites should managers of programmers read?Robert Wagner2008-11-19T10:28:16Z2009-11-27T04:43:29Z
<p>What books should someone who manages programmers read? This includes supervisors, internal customers and project managers. Vote for what you think or add it if it doesn't exist.</p>
http://stackoverflow.com/questions/1806466/did-you-have-ego-problems-with-reading-books-of-headfirst-series2Did you have ego problems with reading books of `Headfirst` series? [closed]claws2009-11-27T02:08:12Z2009-11-27T04:23:03Z
<p>Hello,</p>
<p>I never read any headfirst book. I just borrowed 'Headfirst Java' from my friend. I've conflicting opinions.</p>
<ol>
<li>C'mon I'm not a kid or or idot so stupid that I have to understand things from book filled with pictures and all that <code>dude</code> language.</li>
<li>But its fun to read. I absolutely love those pictures. Even my little sister in 6th grade sits beside while reading this book. Yeah, though I don't want to say it willingly, but I love this book. :D</li>
</ol>
<p>Did you also have similar problems? I'm willing to learn "Design Patterns" and I want to get this "HeadFirst Design Patterns". Is it a good book?</p>
http://stackoverflow.com/questions/366317/good-data-structures-text-book3Good Data Structures text bookVinay2008-12-14T08:49:34Z2009-11-27T04:04:09Z
<p>Which is the best book on Data structures to refer to?</p>
http://stackoverflow.com/questions/1769876/recommend-book-on-human-computer-interaction0Recommend book on Human Computer Interactiontheburningmonk2009-11-20T11:26:29Z2009-11-26T21:21:08Z
<p>Hi, I'm looking for a good book to read on HCI over the xmas holidays, is there a particular book you would recommend on this topic?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer71What development book made the most impact on you as a developer?Chris Canal2008-09-16T13:48:48Z2009-11-26T20:24:21Z
<p>For me, <a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really helped my move on as a developer.</p>
<p>What book really made an impact of how you work as a developer?</p>
<p>Note: <strong>One book per answer</strong>; upvote any you agree with ;o)</p>
http://stackoverflow.com/questions/457757/what-is-the-best-python-book-for-experienced-programmers15What is the best python book for experienced programmers?VoidPointer2009-01-19T14:31:58Z2009-11-26T11:14:43Z
<p>I am a fairly experienced programmer, mostly C, C++, Java and C#...
Can you recommend any Python books that would help me to get the most out of my existing experience? Many Python books I have read good reviews about seem to be aimed at the novice programmer - I'd like to find something that "gets right down to business".
There are many good resources on the web of course but I would like to have a real book that possibly goes a bit into detail about specific concepts, techniques and patterns that are specific to python.</p>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/412482/resources-for-moving-to-python">Resources for moving to Python</a></li>
<li><a href="http://stackoverflow.com/questions/142834/best-python-book-for-a-lifelong-php-developer">Best Python book for a lifelong PHP developer?</a></li>
<li><a href="http://stackoverflow.com/questions/356161/python-coding-standards-best-practices">Python coding standards/best practices</a></li>
<li><a href="http://stackoverflow.com/questions/918/how-to-learn-python-good-example-code">How to learn Python: Good Example Code?</a></li>
</ul>
http://stackoverflow.com/questions/1422882/can-anyone-recall-my-favorite-childhood-programming-book2Can anyone recall my favorite childhood programming book?John DeHope2009-09-14T17:22:54Z2009-11-26T10:54:35Z
<p>Way back in the late 80s I was learning to program on my Tandy 2000 which had <em>two</em> 5.25" disk drives. My grandmother bought be a programming book from Radio Shack. It was a great book about BASIC and I really enjoyed it. I was hoping somebody might recall the title, author, etc?</p>
<ul>
<li>It looked kind of like this book <a href="http://stackoverflow.com/questions/832941/what-was-your-first-programming-book/832951#832951">http://stackoverflow.com/questions/832941/what-was-your-first-programming-book/832951#832951</a></li>
<li>It was current as of the late 80s maybe 1990 or so</li>
<li>It was not a game programming book, it was on programming in general</li>
<li><strong>Most of all</strong> I recall each chapter began with a funny cartoon that the author or somebody had drawn, to demonstrate the principle of the chapter</li>
<li>The cover was gray as in that link, but had a bigger computer drawn on it, and maybe a man also</li>
</ul>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1802309/shell-scripting-book0Shell scripting bookSachin Chourasiya2009-11-26T08:36:37Z2009-11-26T08:55:04Z
<p>Please recommend a good book to start with the shell scripting and then going ahead to have in depth and precise knowledge of shell scripting.</p>
http://stackoverflow.com/questions/780978/opencl-books-tutorials4OpenCL books/tutorials?StfnoPad2009-04-23T09:34:26Z2009-11-26T07:11:39Z
<p><hr /></p>
<h2>Is there any openCL books out there? or in the pipeline?</h2>
<p><hr /></p>
<h2>Any online openCL tutorial?</h2>
<p><hr /></p>
<p>I already looked at the usual pages like khronos/nvidia dev/opengl.org/ati dev/siggraph slides. <em>Any other help or pointer is welcome</em> :-D <strong>Thanks!</strong></p>
http://stackoverflow.com/questions/905490/whats-a-good-advanced-mysql-book-to-read2Whats a good advanced Mysql book to read?Yegor2009-05-25T05:53:34Z2009-11-25T19:03:27Z
<p>Im looking to expand on the knowledge I already have. Whats a good book to do that? </p>
http://stackoverflow.com/questions/1799065/safari-books-online-mobile-version-1Safari Books Online - Mobile Version.cdpnet2009-11-25T18:38:04Z2009-11-25T18:38:04Z
<p>Hi,</p>
<p>Has anybody read Safari Books online on Zune HD? Or Could someone please try it on their Zune HD...It's m.safaribooksonline.com</p>
<p>I'm considering buying Zune HD to read it, thinking OLED screen might be better.
Or iPod Touch is a better choice?</p>
<p>One more question... Is there any cheaper way to get this subscription? I'm good with limited no. of books per given time.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1797718/is-the-practice-of-programming-by-brian-w-kernighan-still-a-good-book1Is `The Practice of Programming` by Brian W. Kernighan still a good book?randy2009-11-25T15:31:26Z2009-11-25T15:41:38Z
<p>I want to improve my programming style, best practices, and have gerenal overivew of big opensource project. One of my friends suggested me to get this book:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/020161586X" rel="nofollow"><code>The Practice of Programming</code> by Brian W. Kernighan</a></p>
<p>Amazon has good ratings but the book is pretty old. There might be good books available. </p>
<p>Can any one please tell me if its worth of every penny? or should I get some other book?</p>
http://stackoverflow.com/questions/1682000/best-book-for-getting-up-to-speed-on-ruby-on-rails1Best book for getting up-to-speed on Ruby on RailsJohn Stewart2009-11-05T16:55:31Z2009-11-25T13:26:47Z
<p>I am planning to travel this weekend (long 23 hour flight) so my mission is that by the time I get off that plane I want to be able to start developing on ROR.</p>
<p>I am very well versed in PHP/.NET/Java so I don't think picking up Ruby would be that hard. However, I would like to get some input from those who made the transit from PHP/Java world to ROR. </p>
<p>So please recommend me a book that can help me achieve this goal.</p>
<p><hr></p>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/83784/rails-books">http://stackoverflow.com/questions/83784/rails-books</a></li>
<li><a href="http://stackoverflow.com/questions/55574/learning-ruby-on-rails">http://stackoverflow.com/questions/55574/learning-ruby-on-rails</a></li>
<li><a href="http://stackoverflow.com/questions/149060/what-are-your-favorite-ruby-on-rails-books-and-why">http://stackoverflow.com/questions/149060/what-are-your-favorite-ruby-on-rails-books-and-why</a></li>
<li><a href="http://stackoverflow.com/questions/1386469/best-ruby-and-ruby-on-rails-books">http://stackoverflow.com/questions/1386469/best-ruby-and-ruby-on-rails-books</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/ruby-on-rails+books">And a few others</a></li>
</ul>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read570What is the single most influential book every programmer should read?NotMyself2008-08-04T23:50:22Z2009-11-25T10:23:16Z
<p>If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?</p>
<p>I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.</p>
<p>Suggest your programming books</p>
http://stackoverflow.com/questions/1790991/books-on-programming-aspects-of-seo0Books on programming aspects of SEO?JoshJordan2009-11-24T15:56:41Z2009-11-24T18:52:59Z
<p>I'm looking to pick up a book that discusses search engine optimization from the programmer's perspective. Any ideas?</p>
http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering5Recommended Books for Software EngineeringRonnie Liew2008-09-25T05:12:15Z2009-11-24T18:05:35Z
<p>What would be a recommended book for Software Engineering? </p>
<p>The book should be covering the various stages involved in software development process, covering topics such as:</p>
<ul>
<li>requirement gathering</li>
<li>use cases</li>
<li>domain model</li>
<li>functional specifications</li>
<li>architecture design</li>
<li>testing</li>
<li>deployment</li>
</ul>
<p>It should be a book that would help someone to understand the various processes, include examples of good documentation of <em>use cases</em>, <em>domain modeling</em>, <em>architecture design</em> etc., explain about how the various steps help in the development of the software. </p>
<p>Not so much on the code writing or the people-management aspect, more on the documentation, design stages, planning prior to actual coding. </p>
<p>Targeted audience should be a technical lead/architect/manager.</p>
http://stackoverflow.com/questions/1777392/good-books-on-software-engineering-for-web-apps1Good books on Software Engineering for web apps?heyjude2009-11-22T01:03:52Z2009-11-24T15:25:20Z
<p>Hi, could you guys recommend good Software Engineering books for web apps?</p>
<p>[Edit]
Thank you for the replies! I forgot to mention that I'm aiming to develop in PHP. Keep those suggestions coming and thanks a bunch! :)</p>
http://stackoverflow.com/questions/1789591/design-patterns-in-net0Design Patterns in .NET [closed]unknown (google)2009-11-24T11:53:01Z2009-11-24T12:30:50Z
<p>What good resources are out there for learning Design patterns in C# and the .NET Framework?</p>
http://stackoverflow.com/questions/1007756/learning-c-and-windows-forms-yet-another-book-thread4Learning C# and Windows Forms, yet another book threadanno2009-06-17T15:24:39Z2009-11-24T07:05:52Z
<p>(If you want to close this thread for duplicate, I don’t think this question is redundant cause I’ve done my/some homework :)</p>
<p>I know this subject has come up before :) . I’ll be learning C# and Windows Forms this summer so I’m starting to buy some books. I’ve decided to treat them separately and buy a book about each one.</p>
<p>I spent the last 2 days skimming through the available literature and made my choices but I still have some doubts.</p>
<p><strong>Windows Forms</strong></p>
<p><em>Windows Forms in Action</em> by Erik Brown
<strong>VS</strong>
<em>Windows Forms 2.0 Programming</em> by Chris Sells</p>
<p>I think I’ll go with Brown Book, but I’m not sure. Any advice? My GUI skills come from the the Petzold...</p>
<p><strong>C#</strong></p>
<p><em>Essential C# 3.0 For .NET</em> by Mark Michaelis <strong>VS</strong> <em>Pro C# 2008 and the .NET 3.5 Platform</em> by Andrew Troelsen</p>
<p>I’m leaning towards Michaelis. I like formal presentations and containers! I’m in love with my C++ vectors, lists ... Any advice? </p>
<p><strong>EDIT</strong></p>
<p>Thanks for all the answers. I'll sleep on it and choose tomorrow. </p>
<p><strong>NEW EDIT</strong></p>
<p>After not sleeping, I've just ordered <em>Windows Forms 2.0 Programming</em> and <em>Essential C# 3.0</em>. I choose this last one after reading some chapters and founding it quite to my taste, Pro C# 2008 seems to contain too much information for a first contact with C#. I'll dig into the other propositions, when I'm ready. Again, thanks to all.</p>
http://stackoverflow.com/questions/335203/for-an-introduction-to-domain-driven-design-should-one-read-evans-or-nilsson2For an introduction to Domain Driven Design, should one read Evans or Nilsson?Erik Öjebo2008-12-02T19:50:19Z2009-11-23T21:08:12Z
<p>When ever domain driven design is discussed, recommendations are almost always made to read <a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">Applying Domain Driven Design and Patterns</a> by Jimmy Nilsson and <a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">Domain Driven Design</a> by Eric Evans.</p>
<p>Ideally, one would read them both, but for someone who is new to DDD, which of the books above gives the most bang for the buck/hour in a heads up comparison?</p>
http://stackoverflow.com/questions/1778845/book-for-learning-wpf0Book for learning WPFAm2009-11-22T14:30:07Z2009-11-23T15:19:01Z
<p>I have read this <a href="http://stackoverflow.com/questions/59954/what-is-the-best-book-for-learning-wpf">question</a>.</p>
<p>My question is whether <a href="http://rads.stackoverflow.com/amzn/click/0672328917" rel="nofollow">WPF Unleashed</a> is still the most recommended (since the question is over a year old)?</p>
<p>Also, what do you think about <a href="http://rads.stackoverflow.com/amzn/click/1430210842" rel="nofollow">WPF Recipes</a> or <a href="http://rads.stackoverflow.com/amzn/click/1590599551" rel="nofollow">Pro WPF</a>?</p>