Software Books
Related Subjects: Adobe Microsoft
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

Queuing mechanisms for the beginnerReview Date: 2000-04-24
The New Testament complementing Kleinrock's OldReview Date: 1999-12-05
Practical Queueing AnalysisReview Date: 2001-06-05
UK/European Edition is also available, and is in stock.Review Date: 1999-03-16
UK edition is availableReview Date: 2000-03-08

Used price: $25.00

Wonderful book for both novice and expert!Review Date: 2006-12-13
Online VS. Hardcopy versionReview Date: 2006-01-31
To understand DNS and BIND get this book!Review Date: 2005-12-12
Definitely the Best!Review Date: 2006-07-06
Aitchison leads the reader through detailed installation of BIND on Linux, FreeBSD and even Windows (ISC has an installer for Windows in its portfolio), after which common DNS tasks are discussed (how to delegate a subdomain, how to define SPF records, etc. read it on-line here) as well as a chapter on tools.
The third part of the book is dedicated to securing DNS configurations with topics ranging from simple administrative issues (chroot jails) through securing DNS updates and zone transfers with TSIG and DNSSEC.bis which is covered very extensively in chapter 11.
Chapters 12 and 13 provide extensive commented references on BIND configuration and Zone files. There is of course plenty of on-line reference information on these two topics (including the author's very good DNS for Rocket Scientists) but I like to have reference information on hardcopy (in the event my DNS servers fail, and I can't reach the on-line documentation :-) )
In part 5 the author shortly covers programming with the BIND API and the resolver libraries, and he follows that with an interesting chapter on DNS Messages and Records, good to have if you want to sniff your way through DNS traffic.
The publisher's web site carries a sample chapter as well as the source code to the book which is also available in TAR format on the author's web site together with complementary information and pointers to further resources.
My only complaint about this otherwise excellent book is that on two or three occasions I read a paragraph that I thought I'd just read before; some duplication must have taken place (or I was tired). For the next edition, I'd like to read a chapter on interoperability between BIND and Microsoft Windows DNS servers, specifically regarding DNSSEC.
This book is an absolute must have for anybody who needs to understand DNS in the first place (irrespective of the implementation he or she plans to use), and it is a must have for a systems administrator who is either intending to deploy or has already deployed BIND 9.3. I wish I'd read this book before the first mentioned above.
GREAT Book about DNS and BIND!!Review Date: 2005-11-30
http://www.netwidget.net/books/apress/dns/notes.html
I also found this book *much* more useful as the first, because of the fact that it is much more up-to-date!
I can recommend this book to everyone, who
*) wants to install/configure/start/maintain a DNS server
*) wants to get informed about the Domain Name System in general
Up to now, this book is really an insiders' tip!!

Used price: $24.50

for javascript or server side language developersReview Date: 2008-03-30
For JavaScript developers:
The book covers how to write good clean object oriented code in JavaScript. It introduces concepts that are not present in JavaScript along with how to simulate them. The sections on when to use a given pattern are well written.
For server side language developers:
The book covers how to implement in JavaScript the design patterns we are accustomed to. Before getting to this, there are several chapters on JavaScript idioms which are very useful. There were also a couple patterns that a server side developer might not have encountered because the server side is not so memory constrained.
For everyone:
The book also covers tradeoffs of using the patterns. I appreciated where they mention the slight performance hit and how to check/profile if it is a problem for you. All patterns were described clearly and succinctly. There were some real examples as well. At times, it is a bit code heavy - one example had 1.5 pages of implementation details that had nothing to do with the topic at end. Overall, I think the book was great. If you have a significant amount of JavaScript code, the concepts in this book are critical.
A more thorough treatment of advanced JS concepts would be hard to find Review Date: 2008-01-26
And as you would expect, this book does make it easier to follow library code written using the class-based OO pattern (such as extjs).
Toughie not fluffyReview Date: 2008-03-25
This book shows that when used by an experienced person, JavaScript is no joke. Seriously.
Want to be a JavaScript guru? Don't miss this one!Review Date: 2008-01-25
Other than that, this is one of the GREATEST books about JavaScript you can find in the market, especially for those who want to know more about the JavaScript and design pattern.
An excellent title for experienced JavaScript developersReview Date: 2008-01-20
Written by Dustin Diaz (of Google) and Ross Harmes (of Yahoo), Pro Javascript Design Patterns builds on experience of building complex, high profile javascript applications. That experience shows as each pattern is introduced with solid examples and sample code and then refined to provide looser-coupling, more flexibility and/or better performance.
Early on in the book I was concerned that some of the solutions could become too heavy and the early introduction of interfaces hinted at something akin to the early approaches to pattern usage in PHP, which often looked more like an attempt to turn PHP into Java than a way to use PHP's own features better. As the book goes on the usefulness of those interfaces, particularly for large development teams, becomes clear and most of those concerns are allayed, especially as the authors offer pros and cons for the use of each pattern and are clearly focussed on how these patterns can help produce more robust solutions.
Most of the patterns will have a fairly immediate impact for developers new to them, and even for those who have used them in other contexts it is helpful to see how they have been applied in JavaScript. Most modern JavaScript libraries rely on several of these patterns to abstract out handling of different browser quirks or adding new event types, and even if you rely heavily on one or more of the major libraries this guide may well help you understand their internals better.
I've sometimes been skeptical of books claiming to be targeted at an advanced target. Labels like "pro" are often handed out far too easily. But in this case it seems deserved. While the book does a good job of quickly introducing approaches to object-oriented programming in JavaScript, that's based on an assumption of a solid knowledge of the language and of OO development in at least one language. If you're a newcomer to JavaScript or just looking for a way to add a few fancy features to your web pages this isn't be book for you. But if you have some serious JavaScript development experience and are needing a way to tighten up your code to make it more modular and more maintainable, this book is well worth your time.
Disclaimer: I was sent a copy of this book for review by the publisher.

Used price: $9.23

Outstanding!Review Date: 2007-08-27
I really can recommend this book, however NOT if you are a beginner!
I also learned that I'm a Generic Type, because I drink a lot Of T. :)
Andrew is the manReview Date: 2006-07-23
I refer to this book often because it gets to the "meat" of things rather quickly and is not for beginners.
My only criticism is that this book's examples are 90% console applications. Nobody uses this in the real world. But I understand the focus is on the code, but I still like the Deitel approach better. Use Windows applications NOT console, take the time to get the screen shots. (Just my opinion).
Don't get me wrong, I can easily translate over what he is trying to convey, but still I see great authors such as Francesco Balena showing most examples with the console window. I don't like this trend. But hey that's me.
Very good book though..
From a VB ProgrammerReview Date: 2006-08-07
Complete and easy to followReview Date: 2007-01-14
This is not novices. The author expects some level of programming experience with VB, C, C++ being the best. It is also best for a Visual Studio 2005 environment, though it is not required. If this is you and you are looking to move to VB.NET, this book is absolutely for you.
I wish all programming books were this good.Review Date: 2006-10-25

Used price: $240.98

Excellent book for learning and/or referenceReview Date: 2002-11-23
Good book for tolls and SAP application developersReview Date: 1999-10-12
One of the must haves for SAP programmers!Review Date: 2003-09-28
Obligated reference for SAP interface developersReview Date: 2000-05-03
An excellent reference for understanding BAPI/R/3 InterfacesReview Date: 2000-04-04

Used price: $16.70

Programming Perl in the .NET EnvironmentReview Date: 2003-07-10
Programming Perl in the .Net EnvironmentReview Date: 2002-12-30
With my limited experience in object oriented programming, this book presented the topics in the right order to overcome my lack of OO experience.
I did have a few instances of failing to find specific terms in the index.
This book will continue to be a valuable resource as I continue to refine my Perl skills in creating perl modules and utilizing Perl in the .Net environment.
Programming Perl in the .NET EnvironmentReview Date: 2003-07-10
Strange mix - comes up quite wellReview Date: 2002-10-23
I didn't think so till now.
I found the mix of Perl and Dot.NET quite strange - that's why I was surprise to see a book on that matter.
I felt very curious to see how can it work together.
Perl has lots of advantages that make it such an enormous success - very easy to write fast and efficient code.
Ask any unix admin / programmer.
The way Perl works with the rich options of Microsoft's new engine is good. I like the combination. It works well, the examples are quite good.
The first part of the book looks similar to every Dot.NET one can find, but the second part is the value for this book - and that's why I liked it.
Good techinal explainations and examples.
It was a good investment for me.
Review from the lead authorReview Date: 2002-09-27
I am the lead author of this book. Together with Michael Saltzman and Robert J. Oberg we tried to make this book as good as possible.
The book will be useful for you whether you are an experienced Perl programmer that wants to learn .NET technology or you are new to Perl.
The first part represents a tutorial of Perl itself. In the second part we dive into exciting world of programming Perl inside the .NET Environment.
I hope you will enjoy reading and our code samples will be useful and helpful for you.
Happy reading and programming!

Excellent quick reference bookReview Date: 2002-04-07
Psych ClerkshipReview Date: 2002-02-15
This was a great help!Review Date: 2001-02-25
Excellent pocket handbook for Psychiatry clerkshipReview Date: 2001-02-26
Good quick referenceReview Date: 2001-04-07

Used price: $20.69

Great Reference Tool for our CustomersReview Date: 2008-04-16
Peter Cullen
Excellent reference bookReview Date: 2008-03-24
Great Resource Book to always have on handReview Date: 2008-02-05
Sarah Keiser
www.successif.biz
Excellent comprehensive guiseReview Date: 2008-01-17
A MUST for QuickBooks Consultants, Bookkeepers, and AccountantsReview Date: 2008-01-08
Michelle L. Long, CPA, MBA
Author of: Successful QuickBooks Consulting: The Comprehensive Guide to Starting and Growing a QuickBooks Consulting Business
Advanced Certified QuickBooks ProAdvisor
Member of Intuit's Certified Trainer Network

Used price: $82.66

The best R book I've found so far.Review Date: 2008-03-25
It is an excellent book if you want something both to bring you up to speed, and then to serve as a comprehensive reference.
A good approach to collecting R books would be to start with this book, and then if you outgrow it in certain areas, obtain topic-specific R books in such areas modeling, data manipulation, or graphics as supplements.
The R BookReview Date: 2007-12-30
some flaws, but useful overallReview Date: 2007-12-08
The book contains 27 chapters. The first 5 chapters cover subjects like getting started, essentials of the R language, data input, data frames, and graphics. A lot of the information in these chapters is freely available online at CRAN, or may be queried from within R itself. Still, I find it useful to have this info as part of any desktop reference, and most books on R are similarly equipped. I found nothing lacking here.
Chapters 6-8 cover tables, mathematics, and classical tests. In the mathematics chapter, you'll be introduced to a wealth of math and probability functions, as well as the basics of matrix algebra. If your statistical training centered mainly on the basic normal, student's t, Fisher's F, poisson, and chi-square distributions, get ready for an education. The author's presentation of this material is both in-depth and well articulated.
Chapters 9-20 cover statistical modeling, regression, ANOVA, ANCOVA, GLM, count data, count data in tables, proportion data, binary response variables, GAMs, non-linear models, and mixed effects models.Chapters 21-26 address more advanced topics of tree models, time series analysis, spatial statistics, multivariate statistics, survival analysis and simulation. The author's discussion of statistical models, ANOVA, GLM, and mixed effects models (the four chapters I have dug into thus far) covers theory as well as practical application inside R. Chapters are supplemented with worked examples drawn from various R data libraries. The R code used to generate solutions is presented as well, although I found it difficult to integrate because Crawley is using the R console interactively and snippets of code are spread out over many pages. Yes, you can download a data library, type in the code presented in the book, and get the same output. The difficulty arises in making the transition from textbook example to efficient and statistically valid processing of real- world data. If you're new to object oriented programming, this book will not teach you how to program in R. Only practice and good example can do that. I still struggle with some R programming basics and this book did not help at all.
Oddly, the book ends with a final chapter 'Changing the Look of Graphics'. Seems like this should be part of chapter 5 'Graphics'; it's a mystery why this was broken out as a separate chapter and stuck at the end.
The book contains numerous typos that suggest a lack of proofreading. Also annoying is the author's predilection for cross-referencing, such that one is constantly being advised to 'refer to page ...' for more info. Furthermore, the author profanely suggests Word as a text editor (yikes!). There are excellent text editors freely available for R, but Word isn't one of them. I use TINN-R, but there are other options. Also, options for managing R output are given short shrift. I use Notepad++, a tabbed, free text editor which is similar to TINN-R, but external to R. FYI, Notepad++ will also read SAS output in its native format, so one can easily review, compare, and extract information without invoking an R or SAS session.
Be advised, this book has created some controversy within the elite, tight-knit R Core Development group. The book was reviewed in the October 2007 issue of R News, available online (thumbs down). Crawley evidently is not part of the R Core Development 'inner sanctum', so the book's rather grandiose claim as 'the first comprehensive R reference manual' has engendered some criticism from that group. Other criticism about R expressions, the author's advice regarding use of certain R functions, and use of specific R packages may be found therein. Read the review then make your own judgment. As it stands, I don't consider this book to be an authoritative reference on either statistics or the R language, but it does offer an inclusive survey of both. If you already own a good statistics text, are familiar with object oriented programming, and only need a reference explaining how to get started programming in R, you'll save money by buying An Introduction to R by Venables and Smith. Amazon's wallet- friendly price: $13.57. Or you may download a free PDF version from the CRAN website.
I'll give the book four stars. It has some flaws (a second edition would be welcome), but overall constitutes a useful addition to the R literature. As for programming, I'm eagerly awaiting Braun and Murdoch's 'A First Course in Statistical Programming in R'. There are enough books on R-based statistical analysis in the vein of Crawley and others; we need a book that teaches programming and the latter should fill the gap nicely.
The perfect book for those new to R.Review Date: 2007-12-02
The writing is clear and accessible with examples provided for nearly all of the R software tools discussed. Also useful is that the author not only tells you which tools to use, but he also often says why they are important.
It's a thick book, but if you take the time to work your way through it, you should actually be able to use R to solve real world problems without external guidance from a R veteran. Check it out!
First book on R with enough detailReview Date: 2007-10-17

Used price: $22.79

INDesign C2Review Date: 2007-10-10
Best Reference for InDesign CS2Review Date: 2006-07-05
Indepth understandingReview Date: 2007-08-14
Finest InDesign desk refererenceReview Date: 2006-02-25
Be warned, however, that this is not a "how-to", or book of exercises. It is a reference. It is a perfect complement to my classes, but not a workbook for use during them. This gives the book usefulness well beyond the learning curve and into daily and even advanced use.
Complete ResourceReview Date: 2007-04-27
Being technical oriented, yet creative versatile, I look at books beyond the flashy covers and the chosen layout. This title is one the finest books ever written on InDesign CS2. It challenges the reader with an abundance of information.
Not every operator uses InDesign CS2 the same way. This book addresses the needs of the readers. A Must Buy for the InDesign end user than needs more information than how to setup a document, and an expanded view of the rich features InDesign has to offer.
Related Subjects: Adobe Microsoft
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250