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

Used price: $56.16

Great referenceReview Date: 2007-03-23
A Critically Important Read for Software Test EngineersReview Date: 2004-07-24
Lee's book provides a concise description based on excellent Case Studies of Black-Box (Requirements Focused) test techniques, moving from the simple (Equivalence Class and Boundary Value testing) to the more complex (Domain Analysis and Use Case testing). He provides the best description I've seen of test case development using orthogonal arrays. Lee then addresses White-Box (Structural Focused) testing, showing how to approach Control Flow and Data Flow testing. Again, he has the best description with illustrative examples of Data Flow testing that I've ever seen.
Lee then describes two Test Paradigms: Scripted Testing and Exploratory Testing that appear to be significantly different, and shows how the two can be used together for even more effective testing. That's the way I've always done testing, by the way.
His Defect Taxonomies chapter provides valuable insight on how to use such information in test design (I never thought of that), and he concludes with a short chapter that addresses the critical question When to Stop Testing.
The Case Studies on "Brown & Donaldson" and "Stateless University Registration" are effectively used to provide valuable insight into the techniques.
This book would be a good read in combination with the book from Rick Craig and Stefan Jaskiel, "Systematic Software Testing".
In summary, this book is well done, is an easy read, and should be read by every test engineer.
Information packedReview Date: 2004-07-25
Although Copeland covers both black box (behavioral) and white box (developer oriented) test techniques, the majority of the test design techniques described are black box. Each technique is explained along with its applicability, advantages/disadvantages, along with references for more information.
For what can be a dry subject, Copeland effectively used humor to make this book very readable.
I also appreciated the chapter summaries, key points in the margins, and a thorough works cited -- including several web articles. Highly recommended.
Page turner tech book? You bet!Review Date: 2004-06-16
Copeland starts off with an overview of testing as a process, followed by case studies. These lay the foundation for the techniques for which a chapter is devoted to each technique. The chapters on the techniques are divided into collections of techniques that are most effective for blackbox (seven) and whitebox (two) testing. The next chapters are devoted to scripted testing with an emphasis on IEEE 829, exploratory testing, and test planning. The book wraps up with an outstanding chapter on software defect taxonomies, advice on when to stop testing, and case studies.
So why did I state this book is a page turner? Copeland has masterfully used humor, statements that catch you off guard, and a warm conversational style to hold your attention. Among the priceless gems of humor are the off-the-wall quotes that he uses in front of each chapter. One of many examples of how he holds your attention by catching you off guard is in Chapter 6 on pairwise testing: 'Why does pairwise testing work so well? I don't know', which he then follows up with one of the most cogent explanations of the technique I've had the pleasure of reading. As an aside, his treatment of pairwise testing - and the power of that technique - is reason enough to read this book.
Another aspect of this book I like is the thoroughness with which he presents techniques. This includes citing the work of other well known practitioners, using case studies, summaries, practice scenarios, and additional references for each chapter. Copeland also has a talent for clearly articulating and conveying complex topics and concepts, adding to this book's value as both courseware and a working reference.
If you are a software testing professional, or you are responsible for teaching this discipline this is one of the top books in my opinion. It is not as wide in scope as Software Testing: A Craftsman's Approach (ISBN: 0849308097), but it makes up for that by covering the essentials in the clearest possible manner.
Practical and SimpleReview Date: 2005-10-25
I think the price is a bit high compared to a related book (Systematic Software Testing by Rick D Craig and Stefan P Jaskeil). I managed to get the other book (536 pages) for about $40.00. While the other book represents much better value, I still bought this one and would do it again. If you can only buy one, I'd suggest getting Systematic Software Testing.

Used price: $7.99

Best Ajax Book I've ReadReview Date: 2006-08-16
Woolston did not waste my time in getting me up to speed. In the first three chapters I learned how to write my own reusable (cross browser) JavaScript functions that will work together to execute an Ajax call.
Of course I might rely on one of the various existing frameworks to do this for me. However, now I know what's going on under the covers and I can make an informed decision about what Ajax to use and when. I know exactly what is happening when Ajax is implemented and why.The book also does a nice job of covering CSS and the DOM (document object model). As you know (or will know after reading), these combine with JavaScript to create the foundation of Ajax! Once you understand how they work together you'll know more about Ajax than 90% of your developer friends.
Excellent Feature #1: The overview of JavaScript, CSS and the DOM is fantastic. I really appreciated the fact that it was concise and dead-on accurate in addressing the specific elements that a .NET developer needs to understand in order to code Ajax.
Continuing on, after the book had me up to speed with Ajax, it went into n-tier design. This is important because, in theory, a programmer can go hog wild on Ajax and break tons of rules regarding sound application architecture. So I was impressed that Woolston transitioned directly into best-practices for how and when to use Ajax.
The first third of the book covers Ajax theory and best-practices. With Ajax, one size does not fit all. Therefore, chapter seven includes overviews of many popular Ajax frameworks including non .NET frameworks such as Ruby on Rails, WebORB, xajax (PHP) and Direct Web Remoting (Java). It also covers .NET frameworks including Ajax.NET, Anthem and Atlas.
The other two thirds of the book are devoted to Ajax programming concepts. The author uses the Anthem framework for most of this coding. Anthem is an open-source, .NET framework in C# that is compatible with ASP.NET 1.1 and 2.0. It is extremely lightweight, requiring only one class file for core functionality.
Excellent Feature #2: The book's code walkthroughs are based on a fully functional n-tier sample application that you can download free. The sample application uses the AdventureWorks database which is also a free download from Microsoft if you don't already have access to it.
You might think that some .NET features and topics lend themselves to Ajax technology and therefore should be covered in more detail. You'd be right. Woolston sets aside complete chapters on Web services, Custom Controls, ASP.NET Security and Web Parts.
Excellent Feature #3: When you're done learning how to build your own Ajax, there are two chapters devoted to debugging and testing Ajax.
One of the last chapters was my favorite. Chapter 19 is all about usability. As you may know, Ajax solves many usability problems. But can also create new ones. Woolston addresses the good, the bad and the ugly.
The book provides ideas and examples of good Ajax. The author has test-driven many Ajax controls and shares his trials and tribulations. This feedback no doubt will save developers valuable time.
The book also discusses potential pitfalls of using Ajax. Woolston tackles cross-browser compatibility issues and how to best overcome them. He also talks about how to deal with the browser's back button. How to handle browsers with disabled JavaScript and how to work past the problem of pageshifting.
Some of the other usability topics covered in Chapter 19 include Ajax menus, bookmarking, type-aheads, connected controls, code visibility and page paradigms.
Suffices to say this book packs a big Ajax punch. I highly recommend it to any of my peers who are interested in building Ajax functionality into their web applications. This book is applicable to .NET developers who are working with ASP.NET 1.1 or 2.0. In my opinion, web developers of any skill level will find it helpful.
Great bookReview Date: 2006-08-18
Best of ApressReview Date: 2006-09-13
This book is different than others absolutely; it starts with what is ajax; and why ajax and with simple examples.
if you dont know javascript; it is still ok because one of the chapters covers javascript; so you can learn enough javascript to handle the simple ajax pages.
Before diving into ajax; it tells you about different ajax libraries; so i like this part too; you will have an idea about other ajax libraries too.
I could not run the first example which is the easiest one and i struggle a lot to solve it;but most of the codes in the book is easy to implement.
And guess what; as you can see from the title; the book is for .NET developers; so if you are a .NET developer; this is right book to buy.
It is not like other apress books that have coding examples problem. the sequence for the chapter makes the book easy to follow.
After reading this book; i start reading some tutorials about Atlas ( which is basically Microsoft's Ajax ) and it really helps you to understand atlas too;
If you like google maps; or virtual maps; this books has a suprise for you :)
i read 4-5 different books from apress and this one is the best; i will highly recommend this book to all .net developers who want to learn ajax with .net
Very Nice Book for Overall AJAX IntroductionReview Date: 2006-11-11
Right book for me at the right time. Review Date: 2006-10-19
Mr. Woolston's writing style is personable but not too over the top. One thing I did not like about the writing style is the manner in which code is laid out at times. For instance, with many of the sample applications, Mr. Woolston will dump about 5-6 pages of code into the book and then work towards restating it in part afterwards with some explanation. I can see where it would be useful if not in front of the sample code/a PC, but in reality this book will not be useful if not in front of a computer working on the examples.
There are other times where some of the content is not really useful in furthering education about Ajax and certain examples it feels are stretched to make the chapters longer. I think there was likely a challenge in filling out a reasonable sized book because simply put - the fundamental elements of Ajax aren't that complex. I found myself done with the book in a period of less than a week.
Those things said, after reading the book I can certainly say the overall content has an excellent "perspective of the landscape". From a history of Ajax to a little primer on Javascript, CSS/DOM, and the XmlHttpRequest, he moves forward to examples of Ajax demonstrating the technology with an Ajax framework named Anthem. The main meat of the book are really these examples, where practice implements the ideas from the prior chapters.
Lastly, the book closes with a few chapters covering security, testing, usability, performance, and a token chapter on Atlas.
One other element that I appreciated in this book was the identification of a few free tools out there to aid in Ajax development. Those tools in their own right would have definitely contributed to some time savings a week or two ago when I was struggling with a couple DOM/CSS issues prior to reading this book!
In summary, perhaps a book stretched to fit it's cover but nevertheless a very useful read to me and I would certainly recommend it.

Used price: $40.00

PHP XML and Web ServicesReview Date: 2007-12-17
All you need to knowReview Date: 2006-07-03
Great PHP XML ReferenceReview Date: 2006-11-16
01. Introduction to XML and Web Services
02. XML Structure
03. Validation
04. XPath, XPointer, XInclude
05. PHP and XML
06. Document Object Model
07. SimpleXML
08. Simple API for XML
09. XMLReader
10. Extensible Stylesheet Language Transformations
11. Effective and Efficient Processing
12. XML Security
13. PEAR and XML
14. Content Syndication: RSS and Atom
15. Web Distributed Data Exchange
16. XML-RPC
17. Representational State Transfer
18. SOAP
19. Universal Description, Discovery, and Integration (UDDI)
20. PEAR and Web Services
21. Other XML Technologies and Extensions
If you need a book that dives into the XML technology and doesn't look back, this is a nice pickup that gets the job done. Lots of other Apress books I feel are a bit too long, but this book at over 900 pages I have less complaints about. It's solidly written and a nice companion book to have on your bookshelf for anyone that programs with XML.
**** RECOMMENDED
The standout reference on PHP and XMLReview Date: 2006-06-21
Heavy Metal XMLReview Date: 2006-09-29
Along the way Richards introduces the reader to utility classes like SimpleXML, SAX (Simple API for XML), XMLReader. He also touches on PEAR (PHP Extension and Application Repository) utility classes and topics like security, RSS (Really Simple Syndication) and UDDI (Universal Description, Discovery and Integration). The author's examples are reasonably concise and readable; making the necessary points without getting carried away.
The bottom line is that this is a highly effective reference (that means fairly comprehensive, but dry reading; I read cover to cover, but it was relatively tedious) on XML and its varied uses in association with PHP. This is not a book for the newcomer to programming, nor is it a cookbook for examples for the casual programmer/web developer, although the author does provide PEAR examples for connecting with major web services like Amazon, Google and Yahoo (among others). My suggestion for readers is to review what you need of the first 11-12 chapters to ensure a firm grounding in XML, and then hop to the chapters specific to the problem being faced.
P-)

Used price: $25.10

Absoulte Must have for your BizTalk WarChestReview Date: 2007-11-02
Absolute Must read if you love the Product. A great Chapter on Testing which I have not seen in any other BizTalk book .
What developers need to knowReview Date: 2007-10-22
Excellent reference bookReview Date: 2007-09-09
I was really impressed with this book. It has two characteristics which I think are particularly noteworthy. The first is that it offers a huge breadth of coverage, but also manages to combine this with reasonable depth. This is hard to achieve when writing about BizTalk Server because it is such a rich an extensive product. The second characteristic is that it reads like a book written by practitioners - people with real-life experience of using the product, and the scars to prove it. Indeed, that it very much the case, and it means that the book provides far more than just rehashed information. It provides guidance, advice and best practice which is rooted in reality.
I like to think I know a thing or two about BizTalk Server (though it still manages to spring surprises on me quite regularly). I am not greatly addicted to computer books, because so many fail to be of any very practical use. However, I can report that this is the first BizTalk book (and one of very few books, generally) that I've carried with me into engagements to use as a reference. Warmly commended and highly recommended, especially for those who have done enough with BizTalk Server to realise the extent of the mountain they must climb.
Great for Intermediates and BeyondReview Date: 2007-07-13
DISCLAIMER: Allow me to contradict that last statement... This isn't for everyone, however. It is really in-depth and explains more than the minimum required. The book also targets those of use that continue to ask the question "Why?" and it quenches our curious thirst. If I were to pick this book up when I was first learning BizTalk, I would throw it down and stomp on it. But now that I've been around the block a few times and I know the difference between a best practice and a "you're on your own" practice, I am able to get a lot from reading this material.
With BizTalk, there's so many ways to skin the proverbial cat. This books explains all of them (from what I've read), but then it points out the preferred approaches that one should take when implementing an integration solution via BizTalk Server...lots of Notes & Caveats sections, things that I crave.
This book will give you very objective insights into BizTalk. And you don't need to worry about reading it with your rose-colored glasses, either. It's neither half-empty nor half-full, it just is, you know?
Absolute must have bookReview Date: 2007-06-06

Used price: $0.52

Everything I know about Java I learned from...Review Date: 1997-09-27
BEST BOOK TO START WITH...Review Date: 1999-06-18
Good book - out of date now (1998)Review Date: 1998-12-04
Excellent reference, no-nonsense summaryReview Date: 2000-04-17
Old but goodReview Date: 1999-01-12

Used price: $12.49

Exactly what I NeededReview Date: 2008-03-12
Balena has an easy style of writing, also, that just seems to allow the information to jump right into your brain. There are other authors whose technical expertise is obvious to me, and whose books I regularly look to buy, but whose writing have quirks that can distract me at times. Balena is not such an author. Clearly, he knows how to make proper use of the IBrain.InputInformation
Excellent BookReview Date: 2007-04-17
C#, is good for Visual Basic programmers with desires to work in C. The Class is the base in C++ and Balena makes a nice book explaining that.
Great Intermediate Level C# MaterialReview Date: 2008-02-09
It's well written, has appropriate examples for the target audience, and doesn't get bogged down in beginning C# material. It has plenty of advanced material, if that is what you are looking for.
Fantastic!Review Date: 2007-02-24
This is a TOTAL "look under the hood" of the C# BCL.
The best!Review Date: 2007-07-05

Used price: $6.47

Excellent book on various quality topicsReview Date: 2001-11-19
In particular, the second chapter, on the RSI Approach, is a nice addition as this is something that most practitioners of quality subjects will not find elsewhere and the general subject matter is generally that which is avoided in books of this type. Another topic often avoided in these books is that of usability and accessibility concerns and yet these are covered here in good detail chapter six.
In general, I think the book offered a great amount of detail just where it was needed and gave a lot of "mini best-practices" in each chapter with the use of bulleted lists to highlight specific points. The detail of the book extends to various topics, like performance, compatibility, usability, and security - all topics that are of high concern in the current world of making qualitly Web systems that customers and user respond to. The appendices in the book are also excellent. The "Test Tool Evaluations" section will be a welcome addition to those who wish there are more concise evaluation forms for automated tool solutions.
I highly recommend this book to quality assurance/testing professionals, quality assurance managers, and even those who work more in the project management and development spheres. Those latter will get benefit from the book because the book manages to highlight topics of concern to both groups and also gives them insight into the quality aspects of the projects and products that are developed within an organization.
Covers all of the major issues and factorsReview Date: 2001-09-23
All of the major elements of web-engineering and quality are addressed, including SECURITY (this is the first test or quality book that fully acknowledges the relationship between quality and security, which is a cornerstone of the Reliability-Availability-Support triad for systems in production), PERFORMANCE (I especially liked this section because it got into the guts of performance and scalability), COMPATIBILITY (essential for ensuring that your system works with the world of users over whom you have no control - web-based systems can and usually do extend into the great unknown), and USABILITY (this will make or break a commercial web site).
Aside for the complete coverage of all of the important topics that need to be considered, and the life cycle approach to quality and testing this book contained a real gem: RSI approach to use cases. RSI (Requirements-Service-Interface) is an interesting and highly useful approach to use cases. Some key strengths of using the RSI paradigm is that you will ensure traceability between requirements and the services and interfaces that are implemented. Moreover, this approach partitions services and interfaces, which allows you to manage the complexities when developing a test strategy and associated test cases. To me the chapter on RSI was worth the price of the book.
Overall, this is a solid book that covers testing, as well as the larger domain of systems quality. It gives some unique insights of issues and factors related to testing, but is not solely about web testing. It should be read by all key team members including requirements analysts, architects, developers, test engineers and project managers *before* a web project is initiated.
A must-have for any web systems testerReview Date: 2002-01-19
It covers how to most efficiently model a web application using a specific use case approach, in addition it covers how to test for security, performance, usability of a web site. The book has been very useful in our testing efforts.
Thorough and practicalReview Date: 2002-01-30
Once again another blockbuster!Review Date: 2001-09-25

Used price: $11.68

Bet possible insights for running a profitable companyReview Date: 2005-10-26
Covers all the basesReview Date: 2005-10-21
Not much better than online helpReview Date: 2005-09-06
Jonathan Fritz, Business and Entrepreneurial AttorneyReview Date: 2005-02-26
Invaluable ResourceReview Date: 2005-02-21
uses Quick Books. Concise, well-organized and complete
QuickBooks 2005 Bible is a resource we are already putting to great use in our business.

Used price: $21.00

Everything is in this bookReview Date: 2008-04-11
RibbonX Reference GuideReview Date: 2008-03-18
Previously I have worked with VBA in Access and had no background in programming for the menu or ribbon. The VBA section of the book was most helpful in that the authors examples can relate your prior experiences.
The coverage of the topic of XML is very good for getting through the parts you need to use in prograsmming the ribbon without overloading the reader.
After having worked with the examples in RibbonX, I still like to use the book as a desktop reference. The use of well organized tables listing the functions and their optional and required parameters is very handy.
RibbonXReview Date: 2008-03-01
After reading the book, I feel comfortable that the conversion of applications developed in prior versions of Access and Office, will be much easier with the knowledge they have shared in this book.
I recommend this book to anyone that is creating applications in any of the Office 2007 programs.
Just Great! Nice reading and extreamly well explained.Review Date: 2008-02-26
Great! Totally recommended as a very nice reading, an outstand technical content and something for you, who don't work with Excel, to have a little fun.
RibbonX Wow FactorReview Date: 2008-02-23
I liked discovering the ribbon customization for the three applications discussed in the book (although I focused mainly on Access); and, the tools mentioned in the book, XML Notepad and the Custom UI Editor, made the process easier. While the book is also geared to users with little or no experience in ribbon development, if you are new to XML and VBA, it may not be as smooth a read as it would be if you already have some basic knowledge under you belt. However, if you are determined to learn the new techniques (and looking up this book is an indication that you are), you will end up gaining a solid foot in the custom ribbon development arena with the help of this book.

Massive reference resourceReview Date: 2006-11-18
The encyclopedia is very comprehensive and covers all the main areas of philosophy as well as both Eastern and Western philosophy. Jewish and Islamic and African Philosophies are also well represented. There are many biographies of leading philosophers, as well as scientists, theologians, lawyers, writers and politicians who have covered philosophical questions.
The price puts this resource beyond the means of most individual buyers, but all good libraries should stock it.
Essential, but ...Review Date: 2002-12-26
and as comprehensive as one could reasonably want on the
Anglo-American analytic tradition. However, it is still inferior
to the magisterial Historisches Woerterbuch der Philosophie, ed.
Joachim Ritter (12 vols., of which 11 have thus far been
published) - the one true indispensable philosophical reference
work.
Simply indispensableReview Date: 2000-04-25
This work is useful along several dimensions. In this review I shall only mention epistemology and the philosophy of science. We have in all the sciences (especially in the social sciences, psychology, media and information sciences) many approaches or "paradigms", for example: (social) constructivism, critical realism, empiricism, feminist epistemology, hermeneutics, historicism, paradigm theory (Thomas Kuhn), Marxist philosophy of science, critical rationalism (Karl Popper), positivism and logical positivism, postmodernism and poststructuralism, pragmatism, rationalism, and realism (with scientific realism and antirealism). One simply need to be informed about the basic principles behind such approaches, and the Routledge Encyclopedia of Philosophy is the only place where you can get a reasonable detailed and comprehensive overview. Add to this that every article starts with a summary, and ends with references and reading lists (often annotated). This is simply a very user friendly design. Of course no work can answer all questions, and of course serious students need much more than this (and of course a few articles is a little disappointing). This work is, however, an important tool, that in my view cannot be overestimated. Its real importance is, I think, that it can strengthen the theoretical approaches in many sciences because it provides us with a common overview and reference point. When I am introducing or discussing Library and Information Science, I am trying to connect the different approaches or paradigms in this field to basic philosophical questions (se my article "Library and information science: practice, theory, and philosophical basis in the journal Information Processing and Management, vol. 36(3), 2000, pp. 501-531). In this way I hope to be able to contribute to the development of this field. In my opinion all other fields should benefit in a similar way. Why is philosophy important for most fields? Because the empiricist and positivist view is simply wrong. You cannot produce knowledge from observations alone. You simply have to consider many theoretical issues which have been clarified through accumulated experiences.
Excellent ResourceReview Date: 2000-11-12
It is so exciting to be able to use this resource. It is a recent acquisition at the college's library, and since I have discovered it I haven't been able to put it down. I give it 5 stars, and although I haven't read it entirely (for obvious reasons), I think it will be a resource I will be using for the rest of my life.
Check it out and see for yourself!?!
At first I was miffed at the price, but ...Review Date: 2005-03-14
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