Software Books
Related Subjects: Multimedia Macintosh Reviews Chess Problem Software PDA Tournament Software Programming Directories Titles
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: $3.48

Extremely UsefulReview Date: 2008-02-13
Just what I was looking forReview Date: 2003-12-27
Must Have for photo and elements usersReview Date: 2003-05-17
This may be my favorite computer book ever!Review Date: 2003-06-05
MY FAVORITE PHOTOSHOP/ELEMENTS AUTHORReview Date: 2004-02-06

Used price: $10.00

Good book: wake up call before implementing and considering PKI Review Date: 2007-02-07
If you planned to roll out a PKI just take a moment and take a deep breath before doing that and consider all the do's and don't's. Ask yourself the question if PKI is really the only solution for your problem. This book helps you get that perspective. Good style of writing, clear and consistent. Certainly worth buying. Don't assume this is a deep technical drill down on PKI and you're okay!
Rob Faber, CISSP, MCSE, Infrastructure Architect
The Netherlands
good, broad coverageReview Date: 2005-04-06
Good stuffReview Date: 2003-05-05
Practical and timely book on securityReview Date: 2003-04-23
What I really liked about this book is it focus on how solve real problems such as compliance issues. Plus the case studies and specific vendor references make this is a good book to use for actual implementations.
Finally, this is a recent book on PKI and I have not seen too much on this topic as of late. The international coverage in the book also does well to keep the material relevant and current.
I would say this book would be ideal for security consultants as well as decision makers doing anything related to digital certificates and/or ecommerce in general.
More to do with compliance than with PKIReview Date: 2003-06-01
1. Explain background on the compliance issue or standard
2. Then explain why PKI is so great and solves a majority of the problems with the particular issue being discussed.
This leaves a bit to be desired in some cases as the compliance-heavy discussions really move past PKI and into extremely detailed market compliance issues. This book will be useful for individuals looking for information having to do with Financial, e-Government, and Health Care compliance issues but not necessarily with PKI implementations for Enterprise organizations.


Good book after slow startReview Date: 2008-08-15
Highly Recommended!Review Date: 2008-08-12
The book has a heavy focus on the Zend Framework, and does a better job of explaining (and using) the intricacies of it then any other book or online resources I've come across.
I would highly recommend this book to anyone looking to use PHP5 with the Zend Framework.
Great... once you get goingReview Date: 2008-08-04
First - php settings... While the author does go to extraordinary length to try to spell things out for the reader, one gotcha centers around your 'include_path' settings. The author failed to mention that his default include_path includes a '../include' entry. Without that, any attempt to run the application will report an error with the Zend Loader. A work-around is to simply use ini_set to add '../include' to the index.php file.
Second - Smarty. Installation of Smarty for this project is demonstrated for a unix environment. Being ignorant of that environment, I missed the fact that the author was copying 'Smarty/libs/smarty.class.php' and the rest to 'Smarty/smarty.class.php', etc... In that I already had Smarty installed in php5/include/Smarty/libs, I missed the elimination of the libs folder. So, if you are going to buy this book AND already have Smarty installed, you can do what I did... Go to line 11 in Templater.php to change the require_once to point to where your installation is. In my case, 'Smarty/libs/smarty.class.php'.
Great Book on the Zend Framework.Review Date: 2008-04-13
There is not one example in the book that doesn't use the Zend Framework. That being said the Zend Framework is a great framework - but far the best web framework I've seen. I'm PhD student in Computer Science at UCLA whose dissertation research involves the web. I've used a lot of web applications and frameworks. Symfony, Drupal, Joomla, Ruby on Rails, etc.
Most of these applications and frameworks just suck - that is, it is more work using them than not using them and many severely limit what one can ultimately do.
I like Ruby on Rails but I love the Zend Framework. There are two big differences between the Zend Framework and Ruby on Rails: 1) they both promote MVC style programming but Ror forces you to use it everywhere and the Zend Framework allows you to mix MVC with simply using their framework as a library wherever you want. For example, I am building a social network but want to mix that with a related wiki. I can use MVC for all the social network code and use and existing MediaWiki (which is not MVC based) all I need to do is rewrite some of the mediaWiki code to hand over user authentication to my controllers.
2) it's Php based ... there is much, much more existing Php code to cannibalize for applications than Ruby code
The book itself basically takes you through setting up user profiles, a blog, an image gallery, prototype (javascript) and Google maps using the Zend Framework. The code is very professional and complex at times so a beginning user may have to read a chapter 2-3 times to fully understand it. Still the only way to really learn to write "professional" code is to see it and understand why it was written as it was.
There are some issues I have with the book. In places where something could reasonably be done in multiple ways the book only shows one without any explanation why that way was chosen. For example, in the installing Zend chapter the book tells you to edit the httpd.conf file to set your paths. Most people who use a commercial hosting company don't have access to edit httpd.conf or restart the server. There are ways to reset the path within the Zend bootstrap (which I did) but if I didn't know how to do that I would not have been able to get the examples to work without setting up a server locally on my machine.
Also the bootstrap is left in the index.php file when Zend recommends using the index.php to call the bootstrap.php file from a non-public web directory.
The Zend Framework is only a few months old and this is by far the best web framework out there. There is only one other (decent) book on the framework. This book is about the Zend Framework and only marginally about "Web 2.0" (you use Google maps). The book that should have been titled "Practical Zend Framework Applications using PHP" will teach you how to use the best web framework out there. If the next book shows one how to really use web services, ajax and present web services using the Zend Framework then it can be called "Web 2.0" not this one.
Outstanding Demonstration of Php(Zend) and AJAXReview Date: 2008-05-15
Every section is extremely well laid out, and the code is explained in detail (in most cases.) The only times where an explanation is lacking are when an approach has been previously explained in the book. Use that memory!
I think if you really dig into and understand this code, you may find yourself well ahead of a lot of your peers.
I even had a problem with one piece of code, and the author was kind enough to reply to my e-mail and help me troubleshoot the problem. (It was my fault.)
Highly suggest this book!

Used price: $39.95

Any project one can undertake is not necessarily going to be like all the othersReview Date: 2008-07-12
short, but to the pointReview Date: 2008-05-30
This is a short book, but it's packed with useful information about project management. It neatly avoids getting bogged down with PM jargon, instead cutting to the core concepts. It's not designed to get you through a project management qualification (though it might help!), but will certainly help you to become more efficient at managing projects, which at the end of the day is what *really* matters. Aimed at people who want to get projects done, even if they're not officially 'project managers' within their organisation.
The book is broken into five sections - what project management is (and just as importantly, what it isn't), getting started with projects (covering the who, what, where, why and when of project initiation), getting the project done (tools, best practice, project control), the essentials of good project communication, and finally following through - closing off the project.
Rounded off with appendices covering essential project tools, templates, and links to useful software apps, this is a great book for people starting out in project management. And whilst not strictly aimed at experienced project managers, I'm sure that everyone will find something useful to take away.
Great stuff.
VERY VERY HIGHLY RECOMMENDED!!Review Date: 2008-05-30
Williams, begins by explaining why Project Management is a difficult thing to do effectively. Then, the author explains why leading teams, managing schedules and implementing ideas, takes a lot of focus and hard work. Next, she gives advice on work styles and issue tracking. The author also discusses why stand-up meetings are very difficult to prepare for. She continues by showing you why closing on handling is a total disconnect. Finally, the author discusses how to measure operational success, ongoing support and maintenance.
This most excellent book aims to lay out defined steps to get projects done right and on time. But, more importantly, the author designed this book for people who are working on larger projects by themselves.
An excellent primerReview Date: 2008-05-13
The book provides a good, common sense approach to project management. Some of it may be overkill for smaller projects, and some of it may not quite cut it for really huge projects, but for anything inbetween it's a worthwhile resource.
I enjoyed Meri's relaxed style of writing (although she uses more exclamation point than one usually expects from a fully sane person :)). The way she shares her personal experience makes her advice all the more credible.
After reading the book, I felt like taking over a project I'm involved with at work, just to put it back on track again.
Wonderful Project Managment GuideReview Date: 2008-05-15
This book is no different.
Project Management is a difficult thing to do and do effectively. Managing schedules, leading teams, getting ideas to fruition all takes a lot of hard work and focus. To be a good project manager you have to wear all sort of different hats and it's a daunting task. Like salespeople, if you are a great project manager you can have a lot of success and a lot of times it's the kind of skills that can't be taught, but are ingrained inside you.
But you can make those skills stronger no matter what level project manager you are.
From Gantt charts to tables to delegation, estimates, and becoming an amateur psychologist working with your team, this book is one of the best inros to becoming an effective project manager. You will learn all the necessary skills to be successful and have fun while learning.
If you are an experienced PM you owe it to yourself to read this quick book and if you are newbie this should be required reading. Great content and ideas + a great design make for an outstanding effort and book!!
***** HIGHLY RECOMMENDED

Used price: $36.17

Writer Email doesnt work..Review Date: 2007-05-07
Very very good!Review Date: 2006-07-06
I would say that the book is split into three sections:
Section 1 (chapters 1 to 3): This section gives detailed information about the architecture of the MMAPI and how it fits within the J2Me platform. There is also has a good "getting started" guide to be found here.
Section 2 (chapters 4 to 8): Deal with how one uses the Player object in all its forms from playing simple tones, to playing back captured and streamed video.
This section was the most useful to me. It provides excellent
background information about each of the subject areas. An example of this is that it gives a full history of the MIDI standard, and an overview of the protocol itself, before it starts talking about how you write the code to play a midi file in J2Me.
Section 3: (the last chapter) is a case study, providing yet more code examples, and a companion blog site.
The only criticism that I have, is that the book, could have delved into the realms of streaming media a little deeper. The company that I work for, weComm is actively involved in the mobile TV space and I was pivotal in the creation of our application for streaming TV, and therefore I was hoping that this topic would be covered in more detail. That aside, I was very impressed, the subject matter was covered very thoroughly, and I felt guided through the MMAPI as I was reading it.
The best book so far for Multi-Media applications using JavaMEReview Date: 2006-11-12
The rest of the book goes deep into the MMAPI architecture and concepts with the help of source code of working applications. The functional Multimedia player example in the 3rd chapter explains the role of various components of MMAPI architecture. A dedicated chapter on Media player lifecycle and events is very helpful in understanding the basic concepts of event handling. The book also covers some of the fundamental concepts behind controlling pitch, tempo, audio mixing with the help of examples.
Chapter 7 is dedicated to the MIDI specification which is very comprehensive and well explained within the context of JavaME framework. Writing a book like this requires a thorough knowledge of both JavaME and the various subtleties of tone, pitch, sequencing, octaves, frequency, audio conversion and their treatment on the device and at the network level. In my opinion the author has done a great job.
All in all this book is a great resource if you are planning to develop the next Mobile video sharing, photo sharing application or your next multi-media player for a Mobile phone.
I strongly recommend this book if you are developing Multimedia Applications using JMEReview Date: 2006-10-18
I've read more than a dozen books about JME but this is the first book that has really cleared some doubts I had regarding Mobile Media in JME.
I strongly recommend this book if you are developing Multimedia Applications using JME.
Vikram Goyal has done an outstanding job by clarifying and detailing every aspect of MMAPI, discussing the way it has been specified, emphasizing the differences that may occur from one implementation to another and also providing clear, detailed and error free examples that illustrate the aspects being discussed.
Also, the text is very well-written and I've found only 3 typos. Very impressive! Apress is also doing a wonderful job.
Chapter 1 introduces MMAPI and presents its features and requirements as defined by the JCP - Java Community Process, compares MMAPI and the MIDP 2.0 Media subset, where it fits regarding the JME Software stack and at last it lists the manufactures and market players supporting MMAPI.
Nice introduction!
Chapter 2 explains the MMAPI Architecture, the main high-level interfaces, delivers an introduction to the supported protocols and content types, presents the relevant feature sets and the security issues one must take into consideration. It also details the MIDP 2.0 Media subset so that one can understand what's left out on devices implementing it.
Chapter 3 introduces the reader to MMAPI hands-on programming by explaining two simple MIDlets. It also builds the foundation regarding the overall development process and environment.
Chapter 4 is unique, it details the Media Player lifecycle, its possible states and transitions. It explains each state very thoroughly as well as Player events and how to work with them, even the limitations and issues regarding custom events. I've never read a book covering MMAPI with such a detailed explanation.
Chapter 5 covers all the issues regarding the access of media over networks. It starts with a very clear explanation of Threads in JME as well as the security permissions for media acess over networks. Then it puts it all together in a very clear and easy to follow example.
Chapters 6 and 7 are the best ones in my opinion. Those two chapters do pay the book, definitely.Vikram has been brilliant and desmystified Synthetic Tones and the MIDI protocol. He has remembered me of my of childhood, when I've had musical theory classes as it explains everything music and shows you how that all fits into programming with MMAPI. Those chapters are so complete that they have a lot of tips on how to convert from RTTTL to MMAPI format, the MIDI specification and message format and how to work with MIDI in MMAPI, how to create JTS files and other niceties. Thanks Vikram :)
Chapter 8 explains how to work with Audio and Video, playback, capturing, storing, controlling, mixing, it's everything there. It also describes the details of Media Encodings and Sampled Audio as well as the GUI options for dealing with Video.
Chapter 9 has a very cool Device Blogging application that builds upon all the subjects presented so far and also gives a good example of MVC pattern in JME.
Well, the only criticism I have is regarding the section about Streaming Media and also the Appendix C about the JSR 234 - Advanced Multimedia Supplements. Considering that Vikram has proved he's really a subject matter expert He could have provided better sections about them.
In fact, He has already written an article about Streaming in JME and it's available on his web site (so I forgive him) but AMMS is still to be covered. What about on the second edition of his book? Let's wait and see!
A must have book, absolutely!
It doesn't get much better than this.Review Date: 2006-07-07
Since MMAPI is a subset of Java ME, the scope of the subject is fairly limited but the author covers it well. The only area I might like more explanation is with respect to DataSource and SourceStream. This is covered briefly at the beginning of the book, but it would be nice to know how to implement a custom protocol.
The biggest problem I have had with the MMAPI is it's inconsistent implementation and the author is quick to acknowledge this. One could probably write a whole chapter about the quirks of various mobile devices.
In conclusion, I doubt you will find another book specifically on MMAPI that has the depth that this one does. I highly recommend this book if you are looking to get your feet wet with the MMAPI.
BTW, I really appreciate the time the editors spent to proof read the text as there are very few errors, if any. It's always frustrating to me when I read a book with a lot of code and spelling errors. That's not the case here. Well done!


A must-haveReview Date: 2006-06-19
This updated version should be a staple on any database developer or administrator's bookshelf. There is a solid discussion of design, securing the database (new encryption capabilities of 2005) and much more. But these aren't the reasons why you should own this book. It is as much a "how-to" book as it is a "what-to" book. You get real advice, not just screenshots and step-by-step examples. I wish more books were written this way, as technical knowledge without a procedural "framework" is a recipe for disaster.
Do yourself a favor and make the investment. Personally I know that any custom database design course I teach from this point on will include this book as reference for my students.
Great instructional bookReview Date: 2007-09-12
A great readReview Date: 2006-06-30
Great Book, Easy ReadReview Date: 2008-01-17
A Database Design and Optimization "must-have"....Review Date: 2006-08-13

Used price: $32.54

An excellent T-SQL guide...Review Date: 2007-06-20
Essential Tool for SQL Developers and AdministatorsReview Date: 2007-06-24
I would highly recommend this book as a reference and guide book for t-sql developers, dba's and development professionals
Indispensable book for T-SQL ProgrammersReview Date: 2007-06-15
a great book!Review Date: 2007-06-11
The chapter on encryption is excellent and worth the price of the book by itself.
A book for every developer working with T-SQL - Review of Database Administrator SQLAuthority.comReview Date: 2007-09-14
Pro T-SQL 2005 Programmer's Guide book examines SQL Server 2005 T-SQL from a developer's perspective. It covers a wide range of developer-specific topics in SQL Server 2005. This book covers many newly introduced topics in depth. This book is written as a practical and useful guide to help database developers who mainly deals with T-SQL. This book is really hit the spot with appropriate .NET code at few places where needed. This book assumes a basic knowledge of SQL but it is really easy for new beginners developers to understand and advanced developers to enjoy further reading.
Detailed Summary:
One thing I really liked about this book is that it can be either read cover to cover, or it can be used as a reference guide for one particular topic. Index of this book is extremely well organized and aids to find the right topic very quickly. Books is structure is many chapters and each chapter justifies the chapters with good details and proper amount of examples.
Each chapter has excellent advice and knowledge and filled with sample code (available online). The book is targeted specifically at SQL Server 2005 and the innovative ways to code T-SQL, new functions and commands. If is very easy to get started with this book and it immerses in comprehensive reading in no time. This book addresses many details and comparisons with T-SQL in very organized way. The examples are in very accurate and useful as well sufficient to targeted topics. This book addresses many of the real world issues with examples, discussions and solutions.
This book start with providing a brief history of T-SQL and the ANSI SQL standards. SQLCMD and SQL Server Management Studio are new tools to explore SQL Server 2005 and are covered in depth in beginning of the book. Chapters which covers Common Table Expressions (CTEs), new datatypes, operators, keywords, functions, and control of flows are really interesting and with necessary explanation. Readers of my blog are very well aware of my interests in Error handling and debugging. Interesting enough for me there is one whole chapter dedicated to that. The regular T-SQL concepts which I write a lot about Stored Procedure, Triggers and Dynamic SQL each have their own chapter. One thing many T-SQL book does not cover in depth is XML, XQuery and XPath which are properly discussed and their importance is explained properly. Last three chapter of the book which covers SQLCLR, .NET Client Programming and HTTP Endpoints requires the Microsoft .NET FrameWork 2.0, as it contains some code which are written in VB and C#.
One thing which I always liked in any database book is, use of sample database AdventureWorks. I strongly believe that all the example should be independent from previous examples and should use default database. If you have not installed default database AdventureWorks, you can get its latest location by searching in my blog SQLAuthority.com. All the script of examples are available to download online. No book is free from the errors and website for this book have errata list, which is surprisingly very small.
I will list few tips from book which interested me. This will give brief idea how good this book is.
"TABLESAMPLE always returns an approximate number of rows because of the way it samples data. The required percentage is the number of data pages SQL Server retreves in full to fulfill your TABLESAMPLE request. The number of rows returned by TABLESAMPLE will often be slightly less, or greater, than the specified amount."
"Anytime you use dynamic SQL, make sure that you take precautions against SQL injection, that is, malicious SQL Code being inserted into your SQL statements. In this instance we're using the QUOTENAME function to quote the column names being dynamically generated to help avoid SQL injection problems."
Following one example really caught my eyes while reading the book. It seems Author accurately described the situation and put his suggestion regarding syntax.
"The ANSI SQL:2003 standard includes a MERGE statement that performs the same function as the upsert type of SP. The prerelease versions of SQL Server 2005 included the MERGE statement. Though it was well-publicized during the prerelease period, the MERGE statement was unceremoniously dropped from the production version. We can only hope that Microsoft brings it back sometime in the near future."
Good news is Microsoft have included the Authors request in future version of SQL Server. SQL Server 2008 CTP 4 has included MERGE Keyword.
Rating: 4 and 1/2 stars
In Summary, A book for every developer who want to take full advantage of the power of T-SQL on SQL Server 2005.
Pinal Dave
Principal Database Administrator
(blog.sqlauthority.com)

Used price: $0.01

BrilliantReview Date: 2001-02-11
The best for the leastReview Date: 1998-11-06
A must-have member of your programming book library!Review Date: 1998-04-03
need a web site and don't know where to start?Review Date: 1998-01-13
Best bucks I've spent in a long time.Review Date: 1999-09-17

Used price: $17.16

Easy to read and has lots of helpful informationReview Date: 2008-08-11
Time savingReview Date: 2008-07-02
A must haveReview Date: 2008-04-02
Very good for a beginnerReview Date: 2008-03-08
Gets the job doneReview Date: 2008-03-01

Used price: $0.78

What do you need? It's in this book!Review Date: 2002-02-01
The CD contains an audio tour, many examples, and software (QuickTime 5 Pro, full versions and demo versions of various tools) for Windows and Macintosh computers.
indispensable resource for Quicktime developersReview Date: 2001-11-14
A book by a QuickTime expertReview Date: 2002-10-12
The main reason I bought the book was that it had license keys for QuickTime5 Pro for PC and Mac. Those keys costed [price] each at that time if one bought them separately (supposing they had both a Mac and a PC). So it was a good deal apart from the book content itself. An unfortunate thing is that the QT5Pro keys won't work with QT6Pro and that QT6 can't coexist with QT5 on the same machine. So I do still use QuickTime5 (Pro) on my machine...
The book also contains a CD with lots of material which is a must for books about multimedia and rich content (would be a big download for one to get from the publisher's website).
Another thing about such books are that they're usually not printed in color :(, obviously to keep the cost low
Indispensible!Review Date: 2003-09-05
Steve Gulie is in constant contact with producers of QuickTime content (on the mailing list), and is familiar with their day-to-day travails. The book is essentially an embellished FAQ, plus suggestions from Steve's first-hand experience in producing QuickTime for the Web.
The book comes with a QuickTime Pro license for both the Macintosh and Windows, which more than pays for the cost of the book. In addition, the accompanying CD contains demos or fully functional versions of dozens of useful application, for Mac and Windows.
If you're doing any QuickTime production and delivering it on the web, then you need this book.
If you want to understand QuickTime, buy this bookReview Date: 2001-11-14
This second edition includes QT 5 Pro Keys for Windows and Macintosh - separately these alone would cost nearly (...), so the book is a bargain too.
Full disclosure - I am an engineer on the QuickTime team, know the author, and proof-read this book. I know that it is accurate and helpful, and that it will explain techniques that would take you a long time tolearn on your own.
Related Subjects: Multimedia Macintosh Reviews Chess Problem Software PDA Tournament Software Programming Directories Titles
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