Rapidshare Ebooks Library
Posted: September 26th, 2008, 1:45pm CEST by RapidshareEbook
Product Description
Expert Solutions and State-of-the-Art Code Examples
SOA Using Java™ Web Services is a hands-on guide to implementing Web services and Service Oriented Architecture (SOA) with today’s Java EE 5 and Java SE 6 platforms. Author Mark Hansen presents in explicit detail the information that enterprise developers and architects need to succeed, from best-practice design techniques to state-of-the-art code samples.
Hansen covers creating, deploying, and invoking Web services that can be composed into loosely coupled SOA applications. He begins by reviewing the “big picture,” including the challenges of Java-based SOA development and the limitations of traditional approaches. Next, he systematically introduces the latest Java Web Services (JWS) APIs and walks through creating Web services that integrate into a comprehensive SOA solution. Finally, he shows how application frameworks based on JWS can streamline the entire SOA development process and introduces one such framework: SOA-J.
The book
* Introduces practical techniques for managing the complexity of Web services and SOA, including best-practice design examples
* Offers hard-won insights into building effective SOA applications with Java Web Services
* Illuminates recent major JWS improvements–including two full chapters on JAX-WS 2.0
* Thoroughly explains SOA integration using WSDL, SOAP, Java/XML mapping, and JAXB 2.0 data binding
* Walks step by step through packaging and deploying Web services components on Java EE 5 with JSR-181 (WS-Metadata 2.0) and JSR-109
* Includes specific code solutions for many development issues, from publishing REST endpoints to consuming SOAP services with WSDL
* Presents a complete case study using the JWS APIs, together with an Ajax front end, to build a SOA application integrating Amazon, Yahoo Shopping, and eBay
* Contains hundreds of code samples–all tested with the GlassFish Java EE 5 reference implementation–that are downloadable from the companion Web site, http://soabook.com.
Foreword
Preface
Acknowledgments
About the Author
Chapter 1: Service-Oriented Architecture with Java Web Services
Chapter 2: An Overview of Java Web Services
Chapter 3: Basic SOA Using REST
Chapter 4: The Role of WSDL, SOAP, and Java/XML Mapping in SOA
Chapter 5: The JAXB 2.0 Data Binding
Chapter 6: JAX-WS–Client-Side Development
Chapter 7: JAX-WS 2.0–Server-Side Development
Chapter 8: Packaging and Deployment of SOA Components (JSR-181 and JSR-109)
Chapter 9: SOAShopper: Integrating eBay, Amazon, and Yahoo! Shopping
Chapter 10: Ajax and Java Web Services
Chapter 11: WSDL-Centric Java Web Services with SOA-J
Appendix A: Java, XML, and Web Services Standards Used in This Book
Appendix B: Software Configuration Guide
Appendix C: Namespace
Prefixes
Glossary
References
Index
Product Details
* Amazon Sales Rank: #85507 in Books
* Published on: 2007-05-19
* Original language: English
* Number of items: 1
* Binding: Paperback
* 608 pages
Editorial Reviews
About the Author
Mark Hansen, Ph.D., is a software developer, consultant, and entrepreneur. His company, Javector Software, provides consulting and software application development focused on Web services. Mark is also a content developer for Project GlassFish and has developed the open source SOA-J application framework for WSDL-centric Web services development.
Previously, Mark was a visiting scholar at MIT, researching applications for process and data integration using Web services technology. Prior to that, Mark was an executive vice president for Xpedior, Inc., a leading provider of e-business consulting services. He joined Xpedior when they acquired his consulting firm, Kinderhook Systems.
Mark founded Kinderhook in 1993 to develop custom Internet solutions for Fortune 1000 firms in the New York metropolitan area. Prior to founding Kinderhook Systems, Hansen was a founder and vice president of technology for QDB Solutions, Inc., a software firm providing tools for data integrity management in corporate data warehouses.
Mark's work has been featured in publications such as the Wall Street Journal, Information Week, Computer World, Database Management, Database Programming and Design, Business Communications Review, EAI Journal, and IntelligentEnterprise.
Mark earned a Ph.D. from the MIT Laboratory for Computer Science, a master's degree from the MIT Sloan School of Management and a bachelor's degree in mathematics from Cornell University.
Mark and his wife, Lorraine, live in Scarsdale, New York, with their three children, Elizabeth, Eric, and Emily.
Excerpt. © Reprinted by permission. All rights reserved.
Java became a powerful development platform for Service-Oriented Architecture (SOA) in 2006. Java EE 5, released in May 2006, significantly enhanced the power and usability of the Web Services capabilities on the application server. Then Java SE 6, released in December 2006, incorporated the majority of those capabilities into the standard edition of the Java programming language.
Because robust Web Services technology is the foundation for implementing SOA, Java now provides the tools modern enterprises require to integrate their Java applications into SOA infrastructures.
Of course, Java has had basic Web Services capabilities for some time. JAX-RPC 1.0 was released in June 2002. J2EE 1.4, finalized in November 2003, included JAX-RPC 1.1. So what is significant about the latest versions of the Java Web Services (JWS) APIs?
The answers are power and ease of use. Programmers will find it much easier to build enterprise-class applications with Web Services in Java EE 5 than in J2EE 1.4. Evidence of that is contained in Chapters 9 and 10, which describe an application I developed to integrate online shopping across eBay, Yahoo! Shopping, and Amazon. It’s a pure Java EE 5 application, called SOAShopper, that consumes REST and SOAP services from those shopping sites. SOAShopper also provides its own SOAP and REST endpoints for cross-platform search, and supports an Ajax front-end. SOAShopper would have been a struggle to develop using J2EE 1.4 and JAX-RPC. With the new Java Web Services standards, it was a pleasure to write.
This book focuses on the following standards comprising the new Java Web Services:
* JAX-WS 2.0 JSR 224—The Java API for XML-Based Web Services. The successor to JAX-RPC, it enables you to build and consume Web services with Java.
* JAXB 2.0 JSR 222—The Java Architecture for XML Binding. Tightly integrated with JAX-WS, the JAXB standard controls how Java objects are represented as XML.
* WS-Metadata JSR 181—Web Services Metadata for the Java Platform. WS-Metadata provides annotations that facilitate the flexible definition and deployment of Java Web Services.
* WSEE 1.2 JSR 109—Web Services for Java EE. WSEE defines the programming model and run-time behavior of Web Services in the Java EE container.
These standards contain a few big improvements and many little enhancements that add up to a significantly more powerful Web Services programming platform. New annotations, for example, make it easier to write Web Services applications. And the delegation, in JAX-WS 2.0 JSR 224, of the Java/XML binding to JAXB 2.0 JSR 222 greatly improves the usability of JAX-WS as compared with JAX-RPC. The deployment model has been greatly simplified by WS-Metadata 1.0 JSR 181 and an improved 1.2 release of WSEE JSR-109.
Chapters 1 and 2 review these JWS standards in detail and describe how they improve on the previous set of JWS standards. Chapters 3 through 10 focus on writing code. To really understand the power and ease of use of the new Java Web Services, you need to start writing code. And that is primarily what this book is about. Chapters 3 through 10 are packed with code examples showing you how to best take advantage of the powerful features, avoid some of the pitfalls, and work around some of the limitations.
Chapter 11 looks to the future and offers some ideas, along with a prototype implementation, for a WSDL-centric approach to creating Web Services that might further improve JWS as a platform for Service-Oriented Architecture.
I started writing this book in 2002, when JAX-RPC first appeared on the scene. I soon ran into trouble, though, because I wanted it to be a book for programmers and I had a hard time writing good sample code with JAX-RPC. Four years later, when I started playing around with beta versions of the GlassFish Java EE 5 application server, I noticed that things had significantly improved. It was now fun to program Web Services in Java and I recommitted myself to finishing this book.
The result is a book with lots of code showing you how to deal with SOAP, WSDL, and REST from inside the Java programming language. Hopefully this code, and the writing that goes with it, will help you master Java Web Services and enable you to start using Java as a powerful platform for SOA.
About This Book
An Unbiased Guide to Java Web Services for SOA
My primary goal in this book is to offer an unbiased guide to using the Java Web Services (JWS) standards for SOA. Of course, any author has a bias, and I admit to believing that the JWS standards are quite good. Otherwise, I would not have written this book.
Having admitted my bias, I also freely admit that JWS has weaknesses, particularly when it comes to the development approach known as Start from WSDL and Java. As you will see described in many different ways in this book, the JWS standards present a Java-centric approach to Web Services. That approach can be troublesome when you need to work with established SOA standards and map your Java application to existing XML Schema documents and WSDLs.
In such situations, it’s helpful to be able to take a WSDL-centric approach to Web Services development. In this area, JWS is less strong. Throughout the book, I point out those shortcomings, and offer strategies you can use to overcome them. Chapter 11 even offers a prototype framework, called SOA-J, that illustrates an alternative, WSDL-centric approach to Java Web Services.
Written for Java Developers and Architects
This is a book for people who are interested in code—primarily the developers who write systems and the architects who design them. There are a lot of coding examples you can download, install, and run.
Being a book for Java programmers working with Web Services, the discussion and examples provided within assume you have a working knowledge of Java and a basic understanding of XML and XML Schema. You don’t need to know a lot about SOAP or WSDL to dive in and start learning. However, as you go along in the book, you might want to browse through an introductory tutorial on WSDL and/or XML Schema if you need to firm up your grasp on some of the Web Services basics. Throughout the book, I offer references to Web sites and other books where you can brush up on background material.
Knowledge of J2SE 5.0 Is Assumed
This book assumes you have a basic understanding of J2SE 5.0—particularly the Java language extensions generics and annotations. If you are not familiar with generics or annotations, you can learn all you need to know from the free documentation and tutorials available at http://java.sun.com.
Don’t be intimidated by these topics. Generics and annotations are not hard to master—and you need to understand them if you are going to do Web Services with Java EE 5 and Java SE 6. The reason I have not written an introduction to

Full download
Posted: September 26th, 2008, 1:39pm CEST by RapidshareEbook
Product Description
This is the thoroughly revised and updated second edition of the hugely successful The Art of Electronics. Widely accepted as the authoritative text and reference on electronic circuit design, both analog and digital, this book revolutionized the teaching of electronics by emphasizing the methods actually used by circuit designers -- a combination of some basic laws, rules of thumb, and a large bag of tricks. The result is a largely nonmathematical treatment that encourages circuit intuition, brainstorming, and simplified calculations of circuit values and performance. The new Art of Electronics retains the feeling of informality and easy access that helped make the first edition so successful and popular. It is an ideal first textbook on electronics for scientists and engineers and an indispensable reference for anyone, professional or amateur, who works with electronic circuits.
Product Details
* Amazon Sales Rank: #8392 in Books
* Published on: 1989-07-28
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 1125 pages
Editorial Reviews
Review
"Full of clever circuits and sharp insights, but with a surprising minimum of mathematics... The depth is genuine, as is the richness of examples, data and apt tricks."
Scientific American
"Far and away the finest book on the subject of electronics ... in the last decade. I cannot recommend this book highly enough to anyone whose research or experiments require some electronics."
Optical Engineering
"A delightful book...The circuits actually work, the schematics are all readable."
Review of Scientific Instruments
"This book is filled with a tremendous diversity of valuable information. More importantly, this book is a joy to read...It's not at all like studying--it's too much fun."
EDN (News Edition)
"This book provides a painless way to learn about electronic design. It is also a good read for those already experienced in electronics."
EDN (Magazine Edition)
"..it comes as close as any book we've seen to fulfilling the promise inherent in its title...written as though to educate the novice, but practicing engineers will encounter many useful tidbits they didn't know, hadn't thought about, or had long forgotten."
Analog Dialogue
"...a refreshingly simple, practical and comprehensive textbook on the subject of electronic circuit behavior and design...one of the few contemporary practical reference handbooks on electronic design basics."
Physics in Canada
"A lovely book, it covers a wealth of electronic topics in a very readable style."
Richard Morin, Sunexpert
"The second volume carries on une grande tradition as well as adding 400 new pages to the original (already massive) text. It is, without doubt, the book for the practical engineer. No cerebral theorizing here, no long sections of abstruse mathematical derivations; just page after page of solid empirical engineering. It is also light hearted and anecdotal, with some wonderful pages of bad ciruit 'howlers' that the authors have encountered."
John V. Hatfield, IJEEE
"...an excellent general electronic textbook."
Poptronics
"The best self-teaching book and reference book in electronics... The beauty and fun of electronics shows through."
Radio Communication
"Another electronics textbook that became an international best-seller... the book is renowned for presenting the techniques that circuit designers actually use."
IEEE Spectrum
Customer Reviews
NOT a Beginners Guide to Electronics3
I've always been particularly fascinated by electronics, circuits, and the whole realm in general, and I bought this book with the hopes of expanding that interest into a constructive hobby.
I have had basic experience with electronics in the past, and taken classes in Differential Equations, Calc 1-3, Linear Algebra, Physics, even some intro Electrical/Computer Engineering courses (all a long time ago though), but WOWee is this book complicated. It's 1300 pages and EVERY SINGLE PARAGRAPH is filled with mind crushing complexity.
Maybe it's all just above me, but from a complete beginners standpoint, this was far too difficult a first step.
I'll try to forge ahead (the author says don't get discouraged by the complex Math), but I have a feeling I will understand less and less the more I read.
Needs Complementation for use by (serious) EE's4
Buy this book, complement it with Tietze & Schenke's book and you got a very respectable library covering semiconductor circuits. The T&S book will give you the solid circuit background on the mathematical modeling of semiconductor devices as circuit building elements and that EE's should need to consider in serious projects. This book does very well on the "intuitiveness" side of subjects but clearly lacks in providing an in-depth calculation basis on the subjects it covers. This might be OK for most uses but if you are working on mission-critical circuitry or on circuitry that must perform in extreme conditions you'll certainly need to use more math that you'll be exposed in this text.
In a nutshell, if you start with this book and then read T&S on the same subject you'll build a very solid base in EE.
Great refresher and then some5
It is obvious to some that this book would contain material for the design of electronics but everyone who has any interest in the subject could just as easily learn electronics by giving this a read and performing some of the practice problems. I wish this was my text book in college. The book is a very easy read as the authors keep the material light at first and build on the knowledge gained from earlier chapters. I would recommend to anyone who might be interested in the subject.

Full download
Posted: September 26th, 2008, 1:30pm CEST by RapidshareEbook
Product Description
Revised to reflect all the current trends in the digital communications field, this all-inclusive guide delivers an outstanding introduction to the analysis and design of digital communication systems. Includes expert coverage of new topics: Turbocodes, Turboequalization, Antenna Arrays, Digital Cellular Systems, and Iterative Detection. Convenient, sequential organization begins with a look at the historyo and classification of channel models and builds from there.
Product Details
* Amazon Sales Rank: #278642 in Books
* Published on: 2000-08-15
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 1024 pages
Customer Reviews
The Reference for researchers in telecommunication5
This book is a reference for researchers in telecommunication. With more than 30 pages of references, this book is an excellent review of the principal publications in telecommunication.
This is not a book for students !
A lot of formulas, very little insight2
The author has, maybe, good knowledge of the material, but little contact with reality. A lot of formulas, piled up, offer practically no insight. Contrast this with the book of Sklar, "Digital Communciations". Proakis offers a fake "advanced" mathematical level, that might impress an ignorant beginning graduate student, but removes any chance of understanding the material because of the plethora of useless pictures, formulas and words.
The material of the book could have been presented in a quarter of the space. It is hard to imagine a poorer writing style.
worst textbook ever2
I took a graduate class at the University of Cincinnati and they used this book (it was round 2 for me as I had Communication Systems with his book that was co-authored by Salehi). Two classes + two Proakis books = brain hemorrhage. I will say that if you are mathematically strong doing well in these courses won't pose a problem. However, the amount of rereading needed to hammer in the concepts is overwhelming. It wouldn't have to be this way if he put in a lot of examples. Also, most of the problems are proofs or very complex and for that reason I noticed that neither of the professors that I had used problems from the book on exams. One exam was forced to become a take home as the results were so terrible and the other was a gram schmidt problem coupled with a small proof on bandpass signals. Some advice is in order. Follow these steps if you want to learn the material:
1.) Take and ace a Random Processes class. This will get you the background you need to blow through chapters 2 and 4 of Digital Communications by Proakis.
2.) Over break or during free time pick up the Communication Systems Engineering book and read through chapter 7 to hammer home chapter 5 of Digital Communications.
3.) Invest in a solution manual if you can find it. This way one can try ALL of the problems in the text and really learn the material.
As a final note, if you can master this course then there is absolutely no graduate class that will stand in your way. Any wireless or DSP class will seem like calc I after it.

Full download
Posted: September 26th, 2008, 1:26pm CEST by RapidshareEbook
Product Description
Covers the design fundamentals of cellular systems, including issues of frequency reuse, channel assignments, radio propagation, and both analog and digital modulation techniques.
Product Details
* Amazon Sales Rank: #276652 in Books
* Published on: 2002-01-10
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 736 pages
Editorial Reviews
From the Back Cover
The indispensable guide to wireless communications—now fully revised and updated!
Wireless Communications: Principles and Practice, Second Edition is the definitive modern text for wireless communications technology and system design. Building on his classic first edition, Theodore S. Rappaport covers the fundamental issues impacting all wireless networks and reviews virtually every important new wireless standard and technological development, offering especially comprehensive coverage of the 3G systems and wireless local area networks (WLANs) that will transform communications in the coming years. Rappaport illustrates each key concept with practical examples, thoroughly explained and solved step by step. Coverage includes:
* An overview of key wireless technologies: voice, data, cordless, paging, fixed and mobile broadband wireless systems, and beyond
* Wireless system design fundamentals: channel assignment, handoffs, trunking efficiency, interference, frequency reuse, capacity planning, large-scale fading, and more
* Path loss, small-scale fading, multipath, reflection, diffraction, scattering, shadowing, spatial-temporal channel modeling, and microcell/indoor propagation
* Modulation, equalization, diversity, channel coding, and speech coding
* New wireless LAN technologies: IEEE 802.11a/b, HIPERLAN, BRAN, and other alternatives
* New 3G air interface standards, including W-CDMA, cdma2000, GPRS, UMTS, and EDGE
* Bluetooth wearable computers, fixed wireless and Local Multipoint Distribution Service (LMDS), and other advanced technologies
* Updated glossary of abbreviations and acronyms, and a thorough list of references
* Dozens of new examples and end-of-chapter problems
Whether you're a communications/network professional, manager, researcher, or student, Wireless Communications: Principles and Practice, Second Edition gives you an in-depth understanding of the state of the art in wireless technology—today's and tomorrow's.
About the Author
THEODORE S. RAPPAPORT is a professor of Electrical and Computer Engineering at the University of Texas, and director of the Wireless Networking and Communications Group (WNCG.org). In 1990, he founded the Mobile and Portable Radio Research Group (MPRG) at Virginia Tech, one of the first university research and educational programs for the wireless communications field. He is the editor or co-editor of four other books on the topic of wireless communications, based on his teaching and research activities at MPRG.
Excerpt. © Reprinted by permission. All rights reserved.
Preface
The second edition of this text has been written to initiate the newcomer to wireless personal communications, one of the fastest growing fields in the engineering world. Technical concepts which are at the core of design, implementation, research, and invention of wireless communication systems are presented in an order that is conducive to understanding general concepts, as well as those specific to current and evolving wireless communication systems and standards. This text is based upon my experiences as an educator, researcher, technical trainer, and consultant, and continues to be modeled from an academic course first developed for electrical engineering students in 1990, when there were fewer than five million cellular subscribers worldwide. As we begin the 21st century, more than 600 million people, about 10% of the worldÕs population, pay a monthly subscription for wireless telephone service, and this figure will approach 50% by the end of the first decade of the 21st century.
This text continues to evolve, and has been modified and updated since its first edition, making it a useful book for practicing engineers, as well as for researchers, graduate students, and undergraduate students. The text has been prepared to provide fundamental treatment about many practical and theoretical concepts that form the basis of wireless communications, and has been designed for easy but thorough treatment of vital material that all wireless practitioners must be comfortable with. I have tried to emphasize the technical concepts with worked example problems, and numerous, carefully crafted homework problems at the end of each chapter that are based on real-world industry issues. The second edition contains dozens of new homework problems and examples, as well as up-to-the minute technical details of the many emerging wireless standards throughout the world, making this book particularly useful for industry short-courses or state-of-the-art academic classroom use.
References to journal articles are used liberally throughout this text to enable the interested reader to delve into additional reading that is always required to master any field. To support newcomers to the wireless field, and at the request of the Institute of Electrical and Electronics Engineers (IEEE), I have also prepared a low-cost two volume compendium of many of the original journal articles that first taught the fundamentals that are now used throughout the wireless industryÑthis compendium series is a useful, but not required, supplement to this text. Whether you intend to use this book for individual study, or for classroom use, or for use as a handbook, this text has been written as a complete, self-contained teaching and reference book. The numerous examples and problems found throughout the text have been provided to help the reader solidify the material.
This book has been designed for the student or practicing engineer who is already familiar with technical concepts such as probability, communication theory, and basic electromagnetics. However, like the wireless communications industry itself, this book combines material from many different technical disciplines, so it is unlikely that any one person will have had introductory courses for all of the topics covered. To accommodate a wide range of backgrounds, important concepts throughout the text are developed from first principles, so that readers learn the foundations of wireless communications. This approach makes it possible to use this book as a handbook or as a useful teaching tool in a classroom setting.
The material and chapter sequence in this text have been adapted from an entry-level graduate course which I first taught in 1991 at the Virginia Polytechnic Institute and State University. Chapter 1 demonstrates the historic evolution of the wireless communications industry, and the evolution of wireless systems from first generation analog to second generation (2G) digital systems. Chapter 1 also documents the rapid early growth of cellular radio throughout the world and provides a state of the industry in the mid 1990s. Chapter 2 provides an overview of the major modern wireless communication systems of the 21 st century, such as third generation (3G), Wireless Local Area Networks (WLANs), Local Multipoint Distribution Services (LMDS), and Bluetooth. Chapter 2 causes the reader to see how wireless networks are beginning to penetrate our daily lives for data and multimedia applications, as well as voice service. Chapter 3 covers fundamental cellular radio concepts such as frequency reuse and handoff, which are at the core of providing wireless communication service to subscribers on the move using limited radio spectrum. Chapter 3 also demonstrates the principal of trunking efficiency, and how trunking and interference issues between mobiles and base stations combine to affect the overall capacity of cellular systems. Chapter 4 presents radio propagation path loss, link-budgets, and log-normal shadowing, and describes different ways to model and predict the large-scale effects of radio propagation in many operating environments. Chapter 5 covers small-scale propagation effects such as fading, time delay spread, and Doppler spread, and describes how to measure and model the impact that signal bandwidth and motion have on the instantaneous received signal through the multipath channel. Radio wave propagation has historically been the most difficult problem to analyze and design for, since unlike a wired communication system which has a constant, stationary transmission channel (i.e., a wired path), radio channels are random and undergo shadowing and multipath fading, particularly when one of the terminals is in motion. New material in Chapter 5 also teaches a fundamental and new way of modeling spatial-temporal channels, which is vital for the development of smart antennas and position location systems.
Chapter 6 provides extensive coverage of the most common analog and digital modulation techniques used in wireless communications and demonstrates tradeoffs that must be made in selecting a modulation method. Issues such as receiver complexity, modulation and demodulation implementation, bit error rate analysis for fading channels, and spectral occupancy are presented. Channel coding, adaptive equalization, and antenna diversity concepts are presented in Chapter 7. In portable radio systems where people communicate while walking or driving, these methods may be used individually or in tandem to improve the quality (that is, reduce the bit error rate) of digital mobile radio communications in the presence of fading and noise.
Chapter 8 provides an introduction to speech coding. In the past decade, there has been remarkable progress in decreasing the needed data rate of high quality digitized speech, which enables wireless system designers to match end-user services to network architectures. Principles which have driven the development of adaptive pulse code modulation and linear predictive coding techniques are presented, and how these techniques are used to evaluate speech quality in existing and proposed cellular, cordless, and personal communication systems are discussed. Chapter 9 introduces time, frequency, and code division multiple access, as well as more recent multiple access techniques such as packet reservation and space division multiple access. Chapter 9 also describes how each access method can accommodate a large number of mobile users and demonstrates how multiple access impacts capacity and the network infrastructure of a cellular system. Chapter 10 describes networking considerations for wide area wireless communication systems, and presents practical networking approaches that are in use or have been proposed for future wireless systems. Chapter 11 unites all of the material from the first nine chapters by describing and comparing the major existing second generation (2G) cellular, cord-ess, and personal communication systems throughout the world. The tradeoffs made in the design and implementation of wireless personal communications systems are illuminated in this final chapter. The compilation of the major wireless standards makes Chapter 11 particularly useful as a single source of information for a wide range of wireless systems that are commercially deployed today.
Appendices which cover trunking theory, noise figure, noise calculations, and the Gaussian approximation for spread spectrum code division systems provide details for those interested in solving many practical wireless communications problems. The appendices also include hundreds of mathematical formulas and identities for general engineering work. I have attempted to place numerous useful items in the appendices, so that this text may be easily used by students or practicing engineers to solve a wide range of problems that may be outside the scope of the immediate text.
For industry use, Chapters 1Ð5, 9, and 11 will benefit working engineers in the cellular/PCS system design and radio frequency (RF) deployment, operations, and maintenance areas. Chapters 1, 2, 6Ð8, and 11 are tailored for modem designers and digital signal processing (DSP) engineers new to wireless. Chapters 1, 2, 10, and 11 should have broad appeal to network operators and managers, business and legal professionals, as well as working engineers.
To use this text at the undergraduate level, the instructor may wish to concentrate on Chapters 1Ð6, or Chapters 1Ð5, and 9, leaving the other chapters for treatment in a second semester undergraduate course or a graduate level course. Alternatively, traditional undergraduate courses on communications or network theory may find in Chapters 1, 2, 3, 4, 6, 8, 9, and 10 useful material that can be inserted easily into the standard curriculum. In using this text at the graduate level, I have been successful in covering most of the material in Chapters 1Ð6 and 10 during a standard half-year semester and Chapters 7Ð11 in a follow-on graduate course. In Chapters 2, 10, and 11, I have attempted to cover im...
Customer Reviews
Good Refernce book3
Good reference book. It provids concepts and material important for graduate studies and industry. I recommand it.

Full download
Posted: September 26th, 2008, 1:23pm CEST by RapidshareEbook
Product Description
Principles of Digital Communication Systems & Computer Networks is designed as a textbook for digital communication systems, data communication and computer networks, and mobile computing. Part I deals with key topics such as information theory, transmission media, coding, error correction, multiplexing, multiple access, carrier modulation, PSTN, and radio communication. Part II goes on to cover the networking concepts, the ISO/OSI protocol architecture, Ethernet LAN, X.25 protocol, and TCP/IP protocol. Finally, Part III covers mobile computing, including radio paging, cellular mobile, GPS, CTI, unified messaging, and multimedia communication. Helpful summaries, lists of supplementary information, references, and exercises at the end of each chapter make the book a comprehensive resource for anyone pursuing a career in telecommunications and data communication.
Product Details
* Amazon Sales Rank: #1271728 in Books
* Published on: 2004-02
* Original language: English
* Number of items: 1
* Binding: Paperback
* 600 pages
Editorial Reviews
About the Author
Dr. K.V. Prasad is currently the director of technology at Innovation Communications Systems Limited, and has been associated with the telecommunications industry for the past 16 years. He has published extensively in leading international and national journals and magazines in the areas of wireless communication, computer telephony integration, software engineering, and artificial intelligence. He also has authored and co-authored a number of programming guides.

Full download
Posted: September 26th, 2008, 1:15pm CEST by RapidshareEbook
Product Details
* Amazon Sales Rank: #1543323 in Books
* Published on: 2006-04-01
* Format: Import
* Original language: English
* Binding: Paperback
* 476 pages
Customer Reviews
Rare combination4
This book is a rare combination of visual basic programming know how and practical interfacing and hardware knowledge. It's also fun to read.

Full download
Posted: September 26th, 2008, 1:09pm CEST by RapidshareEbook
Product Description
If you want top grades and thorough understanding of digital principles, this powerful study tool is the best tutor you can have! It takes you step-by-step through the subject and gives you accompanying related problems with fully worked solutions. You also get additional problems to solve on your own, working at your own speed. (Answers at the back show you how you’re doing.) Famous for their clarity, wealth of illustrations and examples—and lack of dreary minutiae—Schaum’s Outlines have sold more than 30 million copies worldwide. This guide will show you why!
Product Details
* Amazon Sales Rank: #81336 in Books
* Published on: 1994-01-01
* Original language: English
* Number of items: 1
* Binding: Paperback
* 384 pages
Editorial Reviews
From the Back Cover
Master digital principles with Schaum'sthe high-performance study guide. It will help you cut study time, hone problem-solving skills, and achieve your personal best on exams! Students love Schaum's Outlines because they produce results. Each year, hundreds of thousands of students improve their test scores and final grades with these indispensable study guides. Get the edge on your classmates. Use Schaum's!
If you don't have a lot of time but want to excel in class, this book helps you:
* Brush up before tests
* Find answers fast
* Study quickly and more effectively
* Get the big picture without spending hours poring over lengthy textbooks
Schaum's Outlines give you the information your teachers expect you to know in a handy and succinct formatwithout overwhelming you with unnecessary details. You get a complete overview of the subject. Plus, you get plenty of practice exercises to test your skill. Compatible with any classroom text, Schaum's let you study at your own pace and reminds you of all the important facts you need to rememberfast! And Schaum's are so complete, they're perfect for preparing for graduate or professional exams.
Inside, you will find:
* Coverage of all course fundamentals
* 716 solved problems, including step-by-step solutions
* Examples of logic gates, shift registers, and other important applications
* Clear explanations of all principal digital theory and devices
If you want top grades and thorough understanding of digital principles, this powerful study tool is the best tutor you can have!
About the Author
McGraw-Hill authors represent the leading experts in their fields and are dedicated to improving the lives, careers, and interests of readers worldwide
Customer Reviews
Too many Schaum's in this space3
The book is fine for what it covers, but there are a number of similar books from Schaum's in this space. This makes it difficult to identify that book that covers the material I am most interested in.
This book seemed to be the most appropriate for my needs, but the majority of the book was not relevant to me while the book lack coverage of much of what I was hoping to be covered in the book.
Digital Design5
This book was very helpful durning my Digital Logic and Design course. It dosen't cover VHDL and I bought that seperate from Wiley but this book could replace most texts.
Good tutorial in digital logic and design for EE undergrads 4
This Schaum's outline is great for electrical engineering undergraduate students who are taking a first course in digital logic and digital circuit design. It starts out with the binary number system and the various binary codes and then moves on to logic gates. The theory that allows the simplifying of circuits and the substitution of one set of logic gates for another is also covered. The last 60% of the book involves an introduction to the various base devices used in logic design: flip-flops, counters, shift registers, memory devices, and adders among others. Each section shows how more sophisticated devices can be described in terms of the simpler devices already introduced. For students who want a more in-depth treatment of the synthesis and simplification of switching and logic circuits and more advanced Boolean algebra theory than this book provides, I suggest "Schaum's Outline of Boolean Algebra and Switching Circuits".
The only negative thing I have to say is that most of the problems in the outline involve analysis of circuits rather than circuit design, which is usually the main point of any digital electronics class, even a beginning one. However, I would still recommend it as a supplement.

Full download
Posted: September 26th, 2008, 1:03pm CEST by RapidshareEbook
Product Description
Confusing Textbooks? Missed Lectures? Not Enough Time?
Fortunately for you, there's Schaum's Outlines. More than 40 million students have trusted Schaum's to help them succeed in the classroom and on exams. Schaum's is the key to faster learning and higher grades in every subject. Each Outline presents all the essential course information in an easy-to-follow, topic-by-topic format. You also get hundreds of examples, solved problems, and practice exercises to test your skills.
This Schaum's Outline gives you
* Practice problems with full explanations that reinforce knowledge
* Coverage of the most up-to-date developments in your course field
* In-depth review of practices and applications
Fully compatible with your classroom text, Schaum's highlights all the important facts you need to know. Use Schaum's to shorten your study time-and get your best test scores!
Schaum's Outlines-Problem Solved.
Product Details
* Amazon Sales Rank: #51828 in Books
* Published on: 1992-01-01
* Original language: English
* Number of items: 1
* Binding: Paperback
* 484 pages
Editorial Reviews
From the Back Cover
If you want to make better grades, improve your comprehension, and spend less time studying, this Schaum's Outline is for you! It's an easy-to-use study tool to help you master circuit analysis and ace your tests! Students love Schaum's Outlines! Each and every year, students purchase hundreds of thousands of the best study guides available anywhere. Students know that Schaum's delivers the goodsin faster learning curves, better test scores, and higher grades!
If you don't have a lot of time but want to excel in class, this book helps you:
* Brush up before tests
* Find answers fast
* Study quickly and more effectively
* Get the big picture without spending hours poring over lengthy textbooks
Schaum's Outlines give you the information teachers expect you to know in a handy and succinct formatwithout overwhelming you with unnecessary details. You get a complete overview of the subjectand no distracting minutiae. Plus, you get plenty of practice exercises to test your skill. Compatible with any classroom text, Schaum's lets you study at your own pace and reminds you of all the important facts you need to rememberfast! And Schaum's is so complete it's the perfect tool for preparing for graduate or professional exams!
Inside, you will find:
* 700 detailed problems, including step-by-step solutions
* Hundreds of additional practice problems, with answers supplied
* Easy-to-follow help in analyzing AC and DC circuits
* Understandable explanations of all topics, with accompanying sample problems and solutions
For improved comprehension of circuit analysis, less time spent studying, and better test scores, you can't do better than this powerful Schaum's Outline! It's the best study tool there is.
About the Author
McGraw-Hill authors represent the leading experts in their fields and are dedicated to improving the lives, careers, and interests of readers worldwide
Customer Reviews
Great, but whats with the units??4
Going to an engineering school, we deal strickly with SI units. For the most part the book deals with them too. But often, it seems like the problems that would be good for me to try, are in inchs and mils and lbs and all the imperical crap.
Now i only gave it 1 star less. Considering most of the engineering world laughs at imperical crap, which i dont blame them.
Besides for that, the rest of the book is pretty good. The lack of explanations could be worked on. (not in the problems, but in the information prior to the questions). I luckily took a physics on electricity before i got this. Which helped me alot, especially when dealing with OhmMeters.
I would by this book if you want to great in your EE classes. But you may want to have someone who can explain some things. Or just do some demensional analysis to figure out why things are the way they are. And resistance and others like that will make sense.
Great Book5
If your having trouble with an EE Intro class - this is a good book to get
Great study tool4
Great explanations and fully worked out problems makes
s it a great study aid

Full download
Posted: September 26th, 2008, 12:59pm CEST by RapidshareEbook
Product Description
At last, here we have a book that provides a thoroughly readable introduction to fiber optics. It does not assume previous knowledge of the subject, nor a technical or mathematical background. It is suitable for engineers, technicians, students, hobbyists and installers, and covers the full range of fiber types.
Product Details
* Amazon Sales Rank: #1124865 in Books
* Published on: 1996-12
* Original language: English
* Number of items: 1
* Binding: Paperback
* 216 pages
Editorial Reviews
Review
'a concise reference text to dip into, a must-have for systems designers, installation engineers, electronic engineers and anyone else who wants to gain a working knowledge of fiber optics with a minimum of maths. Every chapter ends up with some review questions.'
Electronic Product News, March 2002
...meets the needs of systems designers, installation engineers, electronic engineers and anyone else who wants to gain a working knowledge of fiber optics with a minimum of maths.
-Electronic Servicing & Technology
Whether you are looking for a complete self-study course in fiber optics, a concise reference text to dip into or a course text that is readable and straightforward, John Crisp has the solution.
-Electronic Servicing & Technology
...a must-have for systems designers, installation engineers, electronic engineers and anyone else who wants to gain a working knowledge of fiber optics with a minimum of maths.
-Electronic Product News -- Review
Review
'a concise reference text to dip into, a must-have for systems designers, installation engineers, electronic engineers and anyone else who wants to gain a working knowledge of fiber optics with a minimum of maths. Every chapter ends up with some review questions.'
Electronic Product News, March 2002
...meets the needs of systems designers, installation engineers, electronic engineers and anyone else who wants to gain a working knowledge of fiber optics with a minimum of maths.
-Electronic Servicing & Technology
Whether you are looking for a complete self-study course in fiber optics, a concise reference text to dip into or a course text that is readable and straightforward, John Crisp has the solution.
-Electronic Servicing & Technology
...a must-have for systems designers, installation engineers, electronic engineers and anyone else who wants to gain a working knowledge of fiber optics with a minimum of maths.
-Electronic Product News
From the Publisher
After a thorough introduction to the subject, ideas are developed so as to ensure that new knowledge is built on firm foundations, and with emphasis on the areas that have proved the most difficult. In keeping with this approach, new terms are never used without being properly introduced and the main terms used in specifications and catalogues are described and typical values quoted. Furthermore, when dealing with equipment such as cleavers, splicers, OTDRs etc., a representative example of each type is used, thus concentrating on the principles involved which can then be transferred to another model as appropriate. At the end of each chapter there are multiple-choice questions, the answers to which are at the back of the book and where calculations are involved, a fully worked answer will be provided. There is a useful glossary included at the end of the book.
Customer Reviews
Good starter book3
I'm an engineer becoming familiar with fiberoptics. This book is very oriented towards the non-engineer. Much space is devoted to explanation of terms dB, and basic laws of physics.
The issue of multimode vs single mode is handled too cavalierly. The reader is left faced with an undesirable trait of fibers without sufficient explanation of the eigen values or transmission theory. This is good starter book only.
Good, not Great, Guide to Fiber Optics4
I recently purchased this book, "Fiber Optic Reference Guide" by Goff and "Understanding Fiber Optics" by Hecht. I knew nothing about fiber optics and had to get up to speed in a very tight time frame. This was my second favorite of the three, as it did a very good job of providing a basic explanation of the technology behind and implementation of fiber optics. This book was not bad in any way, there were merely some areas where Goff's book (which was the most useful of the three) were more up to date and the illustrations were more clear. Also, it did seem as if a few items within the book were a little dated.
Good for beginners in fiber optics5
This is an excellent book for someone just starting off in the fiber optics industry. Everything is explained in a completely understandable way, with lots of examples and quizes to to test your knowledge at the end of each chapter. I would especially recommend this for sales and marketing types who don't need to know as much as engineers, but need to be able to understand the basics.

Full download
Posted: September 26th, 2008, 12:56pm CEST by RapidshareEbook
Product Description
Addressing the trend in industry away from fully custom chip design to semi-custom technology, this book provides the first comprehensive introduction to Application Specific Integrated Circuits (ASICs).
Product Details
* Amazon Sales Rank: #652529 in Books
* Published on: 1997-06-20
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 1040 pages
Editorial Reviews
From the Inside Flap
In 1988 I began to teach full-custom VLSI design. In 1990 I started teaching ASIC design instead, because my students found it easier to get jobs in this field. I wrote a proposal to The National Science Foundation (NSF) to use electronic distribution of teaching material. Dick Lyon helped me with preparing the first few CD-ROMs at Apple, but Chuck Seitz, Lynn Conway, and others explained to me that I was facing a problem that Carver Mead and Lynn had experienced in trying to get the concept of multichip wafers adopted. It was not until the publication of the Mead-Conway text that people accepted this new idea. It was suggested that I must generate interest using a conventional format before people would use my material in a new one (CD-ROM or the Internet). In 1992 I stopped writing papers and began writing this book-a result of my experiments in computer-based education. I have nearly finished this book twice. The first time was a copy of my notes. The second time was just before the second edition of Weste and Eshragian was published-a hard act to follow. In order to finish in 1997 I had to stop updating and including new ideas and material and now this book consists of three parts: Chapters 1-8 are an introduction to ASICs, 9-14 cover ASIC logical design, and 15-17 cover the physical design of ASICs.
The book is intended for a wide audience. It may be used in an undergraduate or graduate course. It is also intended for those in industry who are involved with ASICs. Another function of this book is an "ASIC Encyclopedia," and therefore I have kept the background material needed to a minimum. The book makes extensive use of industrial tools and examples. The examples in Chapters 2 and 3 use tools and libraries from MicroSim (PSpice), Meta Software (HSPICE), Compass Design Automation (standard-cell and gate-array libraries), and Tanner Research (L-Edit). The programmable ASIC design examples in Chapter 4-8 use tools from Compass, Synopsys, Actel, Altera, and Xilinx. The examples in Chapter 9 (covering low-level design entry) used tools from Exemplar, MINC, AMD, UC Berkeley, Compass, Capilano, Mentor Graphics Corporation, and Cadence Design Automation. The VHDL examples in Chapter 10 were checked using QuickVHDL from Mentor, V-System Plus from Model Technology, and Scout from Compass. The Verilog examples in Chapter 11 were checked using Verilog-XL from Cadence, V-System Plus, and VeriWell from Wellspring Solutions. The logic synthesis examples in Chapter 12 were checked with the ASIC Synthesizer product family from Compass and tools from Mentor, Synopsys, and UC Berkeley. The simulation examples in Chapter 13 were checked with QuickVHDL, V-System/Plus, PSpice, Verilog-XL, DesignWorks from Capilano Computing, CompassSim, QSim, MixSim, and HSPICE. The test examples in Chapter 14 were checked using test software from Compass, Cadence, Mentor, Synopsys and Capilano's DesignWorks. The physical design examples in Chapters 15-17 were generated and tested using Preview, Gate Ensemble, and Cell Ensemble (Cadence) as well as ChipPlanner, ChipCompiler, and PathFinder (Compass). All these tools are installed at the University of Hawaii.
I wrote the text using FrameMaker. This allows me to project the text and figures using an LCD screen and an overhead projector. I used a succession of Apple Macintosh computers: a PowerBook 145, a 520, and lastly a 3400 with 144 MB of RAM, which made it possible for me to create updates to the index in just under one minute. Equations are "live" in FrameMaker. Thus, can be updated in a lecture and the new result displayed. The circuit layouts are color EPS files with enhanced B&W PICT previews created using L-Edit from Tanner Research. All of the Verilog and VHDL code examples, compiler and simulation input/output, and the layout CIF that were used in the final version are included as conditional (hidden) text in the FrameMaker document, which is approximately 200 MB and just over 6,000 pages (my original source material spans fourteen 560 MB optical disks). Software can operate on the hidden text, allowing, for example, a choice of simulators to run the HDL code live in class. I converted draft versions of the VHDL and Verilog LRMs and related standards to FrameMaker and built hypertext links to my text, but copyright problems will have to be solved before this type of material may be published. I drew all the figures using FreeHand. They are "layered" allowing complex drawings to be built-up slowly or animated by turning layers on or off. This is difficult to utilize in book form, but can be done live in the classroom.
A course based on FPGAs can use Chapter 1 and Chapters 4-8. A course using commercial semicustom ASIC design tools may use Chapters 1-2 or Chapters 1-3 and then skip to Chapter 9 if you use schematic entry, Chapter 10 (if you use VHDL), or Chapter 11 (if you use Verilog) together with Chapter 12. All classes can use Chapters 13 and 14. FPGA-based classes may skim Chapters 15-17, but classes in semicustom design should cover these chapters. The chapter dependencies-Y (X) means Chapter Y depends on X-are approximately: 1, 2(1), 3(2), 4(2), 5(4), 6(5), 7(6), 8(7), 9(2), 10(2), 11(2), 12(10 or 11), 13(2), 14(13), 15(2), 16(15), 17(16).
I used the following references to help me with the orthography of complex terms, style, and punctuation while writing: Merriam-Webster's Collegiate Dictionary, 10th edition, 1996, Springfield, MA: Merriam-Webster, ISBN 0-87779-709-9, PE1628.M36; The Chicago Manual of Style, 14th edition, Chicago: University of Chicago Press, 1993, ISBN 0-226-10389-7, Z253.U69; and Merriam-Webster's Standard American Style Manual, 1985, Springfield, MA: Merriam-Webster, ISBN 0-87779-133-3, PN147.W36. A particularly helpful book on technical writing is BUGS in Writing by Lyn DuprE, 1995, Reading, MA: Addison-Wesley, ISBN 0-201-60019-6, PE1408.D85 (this book grew from Lyn DuprE's unpublished work, Style SomeX, which I used).
The bibliography at the end of each chapter provides alternative sources if you cannot find what you are looking for. I have included the International Standard Book Number (ISBN) and Library of Congress (LOC) Call Number for books, and the International Standard Serial Number (ISSN) for journals (see the LOC information system, LOCIS, at loc.gov). I did not include references to material that I could not find myself (except where I have noted in the case of new or as yet unpublished books). The electronic references given in this text have (a last) access date of 4/19/97 and omit enclosing if the reference does not include spaces.
I receive a tremendous level of support and cooperation from industry in my work. I thank the following for help with this project: Cynthia Benn and Lyn DuprE for editing; Helen Goldstein, Peter Gordon, Susan London-Payne, Tracy Russ, and Juliet Silveri, all at Addison-Wesley; Matt Bowditch and Kim Arney at Argosy; Richard Lyon, Don North, William Rivard, Glen Stone, the managers of the Newton group, and many others at Apple Computer who provided financial support; Apple for providing support in the form of software and computers; Bill Becker, Fern Forcier, Donna Isidro, Mike Kliment, Paul McLellan, Tom Schaefer, Al Stein, Rich Talburt, Bill Walker, and others at Compass Design Automation and VLSI Technology for providing the opportunity for me to work on this book over many years and allowing me to test material inside these companies and on lecture tours they sponsored; Chuck Seitz at Caltech; Joseph Cavallaro, Bernie Chern, Jerry Dillion, Mike Foster, and Paul Hulina at the NSF; the NSF for financial support with a Presidential Young Investigator Award; Jim Rowson and Doug Fairbairn; Constantine Anagnostopolous, Pin Tschang and members of the ASIC design groups at Kodak for financial support; the disk-drive design group at Digital Equipment Corp. (Massachusetts), Hewlett-Packard, and Sun Microsystems for financial support; Ms. MOSIS and all of the staff at MOSIS who each have helped me at one point or another by providing silicon, technical support, and documentation; Bob Brodersen, Roger Howe, Randy Katz, and Ed Lee of UC Berkeley for help while I was visiting UCB; James Plummer of Stanford, for providing me with access to the Terman Engineering Library as a visiting scholar, as well as Abbas El Gamal and Paul Losleben, also at Stanford, for help on several occasions; Don Bouldin at University of Tennessee; Krzysztof Kozminski at MCNC for providing Uncle layout software; Gershom Kedem at Duke University for the public domain tools his group has written; Sue Drouin, JosE De Castro, and others at Mentor Graphics Corporation in Oregon for providing documentation and tools; Vahan Kasardjhan, Gail Grego, Michele Warthen, Steve Gardner, and others at the University Program at Cadence Design Automation in San Jose who helped with tools, documentation, and support; Karen Dorrington and the Cadence group in Massachusetts; Andy Haines, Tom Koppin, Sherri Mieth, Velma Miller, Robert Nales
From the Back Cover
This comprehensive book on application-specific integrated circuits (ASICs) describes the latest methods in VLSI-systems design. ASIC design, using commercial tools and pre-designed cell libraries, is the fastest, most cost-effective, and least error-prone method of IC design. As a consequence, ASICs and ASIC-design methods have become increasingly popular in industry for a wide range of applications.
The book covers both semicustom and programmable ASIC types. After describing the fundamentals of digital logic design and the physical features of each ASIC type, the book turns to ASIC logic design - design entry, logic synthesis, simulation, and test - and then to physical design - partitioning, floorplanning, placement, and routing. You will find here, in practical well-explained detail, everything you need to know to understand the design of an ASIC, and everything you must do to begin and to complete your own design.
Features
* Broad coverage includes, in one information-packed volume, cell-based ICs, gate arrays, field-programmable gate arrays (FPGAs), and complex programmable logic devices (PLDs).
* Examples throughout the book have been checked with a wide range of commercial tools to ensure their accuracy and utility.
* Separate chapters and appendixes on both Verilog and VHDL, including material from IEEE standards, serve as a complete reference for high-level, ASIC-design entry.
As in other landmark VLSI books published by Addison-Wesley - from Mead and Conway to Weste and Eshraghian - the author's teaching expertise and industry experience illuminate the presentation of useful design methods. Any engineer, manager, or student who is working with ASICs in a design project, or who is simply interested in knowing more about the different ASIC types and design styles, will find this book to be an invaluable resource, reference, and guide.
0201500221B04062001
About the Author
About Michael Smith
Michael Smith is both an experienced ASIC designer and a creative educator, with support from the National Science Foundation, and an array of Silicon Valley companies, including Viewlogic, VLSI Technology, Compass Design Automation, Xilinx, and Actel. Smith holds a B.A. from Cambridge University in the U.K. and a Ph.D. from Stanford. He is a recipient of the NSF Presidential Young Investigator Award.
0201500221AB04062001
Customer Reviews
Detailed and exhaustive but outdated4
As an ASIC design engineer, I liked the concept of this book and the breadth of the material covered. This book is broadly divided into two parts - one on FPGA's/PLD's and one on custom ASIC's (the author refers to all of these as ASIC's). The FPGA section covers programmable cells, i/o cells interconnects and design software for some devices of Xilinx, Altera and Actel. I found these sections informative but a bit boring. As you may expect from a nearly 10 year old book, most of the information is outdated. The ASIC's section consists of chapters on HDL's (you are better off reading a separate book on Verilog/VHDL), synthesis, simulation, test, floorplannng, placement and routing. I found these sections much more useful. The writing style is incoherent in many places and very informal throughout. This book is better suited for a reference to a practising engineer than for a college textbook.
This is the best ASIC book I have read.5
Fantastic book! Complete and very informative.
This book is well written5
I saw the review (November 17) below that dislikes the explanations, editing, and style - and have to say I disagree. I think this must be a student in the UCI class who screwed up the first homework. This book is well-written. Read the beginning of Chapter 2 here, online, and read the other reviews.

Full download
Posted: September 26th, 2008, 12:50pm CEST by RapidshareEbook
Product Description
No comparable reference offers as many easy-to-read definitions, abbreviations, acronyms, illustrations, schematics, diagrams, and conversion tables in electronics as this updated dictionary. Over 27,500 definitions and 1,000 illustrations including many new ones from robotics, artificial intelligence, and personal computing. You'll find coverage of the latest terms in lasers, TV, radio, IC technology, digital and analog electronics, audio and video, power supplies, fiber optic communications, and more. "... highly recommended..."NAmerican Reference Books Annual (on a previous edition)
Product Details
* Amazon Sales Rank: #1850387 in Books
* Published on: 1997-06-23
* Original language: English
* Number of items: 1
* Binding: Paperback
* 788 pages
Editorial Reviews
From the Back Cover
"... an excellent tool for electronics in the broadest sense... highly recommended... "-American Reference Books Annual. Continuing in the tradition of its bestselling predecessors, this updated dictionary of electronics terms coves a broader range of subjects in an easier-to-use format than any other source of its kind. No comparable reference offers such a vast range of definitions, abbreviations, acronyms, illustrations, schematics, diagrams, and conversion tables. More than 27,500 definitions-plus over 1,000 clear and functional illustrations-make the Seventh Edition the ultimate reference for technicians, hobbyists, and students. Many new terms and illustrations from robotics, artificial intelligence, and personal computing as they relate to electronics are included. Definitions spelled out in plain English with minimal technical jargon make the Dictionary accessible to beginning, intermediate, and advanced electronics professionals. You'll find coverage of the latest terminology in: lasers; television; radio; IC technology; digital and analog electronics; audio and video; power supplies; fiber optic communications; more! Existing definitions have been updated, obsolete material has been deleted, and all entries have been reviewed by an editorial review board to assure their accuracy. You can look for a better source of definitions in electronics... but you won't find one! "Very useful for day-to-day reference."-Technical Book Review.
About the Author
Stan Gibilisco is a professional technical writer who specializes in books on electronics and science topics. He is the author of The Encyclopedia of Electronics, The McGraw-Hill Encyclopedia of Personal Computing, and The Illustrated Dictionary of Electronics, as well as over 20 other technical books. His published works have won numerous awards. The Encyclopedia of Electronics was chosen a "Best Reference Book of the 1980s" by the American Library Association, which also named his McGraw-Hill Encyclopedia of Personal Computing a "Best Reference of 1996." Stan Gibilisco’s Web sites are http://www.sciencewriter.com and http://members.aol.com/stangib.
Customer Reviews
A really sloppy update3
The latest additions (since Volume 4) are not as well-written or comprehensible as early ones, and the new diagrams were obviously done by someone who didn't have the foggiest idea what he was drawing. Many of them are unclear, and a surprising number are downright incorrect, which undermines confidence in all of them. This book sorely needed a good editor.
Clear and concise definitions of all terms.5
This is the best electronics dictionary I've ever run across. All of the definitions are clear and concise. There are many cross-references to other similar topics. Students and technicians will find this dictionary especially suited to their needs.
Concise and complete. I use it almost every day.5
This book is the most straightforward and comprehensive electronics dictionary I have found. The illustrations are simple, and are easy to interpret. I think some terms have illustrations when they aren't needed. I really appreciate the fact that the mathematics is not too complicated.

Full download
Posted: September 26th, 2008, 12:44pm CEST by RapidshareEbook
Product Details
* Amazon Sales Rank: #899382 in Books
* Published on: 1972-06
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 911 pages
Customer Reviews
supergreat book5
This book out of Columbia thinks about electronics and electronics engineering the way one should think. It is very physical but also mathematically imaginative.
supergreat book5
This book out of Columbia thinks about electronics and electronics engineering the way one should think. It is very physical but also mathematically imaginative.

Full download
Posted: September 26th, 2008, 12:41pm CEST by RapidshareEbook
Product Description
This guide to writing compelling, memorable short stories gives you all the essentials without wasted words. It tells you how and where to get ideas, how to establish and sustain excitement, how to create live, colorful characters, and how to plot, develop and bring home your story. It even includes exercises to help you perfect your story-telling skills. Full of tips and techniques that work, it makes an indispensable, reliable collaborator. You'll find it ideal whether you're studying alone or supplementing a creative or fiction writing course, conference or workshop.
Product Details
* Amazon Sales Rank: #59010 in Books
* Published on: 1998-10-01
* Original language: English
* Number of items: 1
* Binding: Paperback
* 144 pages
Editorial Reviews
From the Back Cover
Great short stories the Schaum's way
Write the kinds of stories that keep readers glued to the page from start to finish. Quickly and simply, this concise guide gives you clear explanations, proven tips and techniques--plus dozens of examples from well-known authors--that show you how to come up with dynamic ideas, create living, colorful characters, and develop a unique plot.
This simulating guide will help you to start confidently, write freely, finish strongly, and make the most of your talent.
Look to Schaum's Quick Guides for
* Step-by-step guidance to help you move quickly through the essentials
* Do's and don'ts for avoiding common errors
* Clear explanations and practical how-to's
* Checklists and exercises for fast skill-building
About the Author
McGraw-Hill authors represent the leading experts in their fields and are dedicated to improving the lives, careers, and interests of readers worldwide
Customer Reviews
good but not specific to short stories4
I wanted a book to show me the difference in technique between a short story and novel length. This book didn't help me. If you want an overall view of how to write, this book is simple and arranged well, but I'm not sure why the title empahsis is on short story.
Good Quick Reference Guide4
Schaum's guide is a good quick reference guide in the same sense a good gourmet cookbook may serve as a quick reference guide for getting a creative meal started. It is helpful in recalling key incredients and in just what portions and in what order they should be presented but as far as a guide to inspire, I must report this guide is NOT! Sadly, what is needed is a chapter entitled, "Ideas!!! And how to put form to them."
I like the book and it is a good quick reference guide and it is well worth the money. In many ways it's format is just right and it can be helpful just don't expect it to prepare you to be the next Hemmingway!
This book is a gem5
Over the past few months I have collected and read many books on creative writing with a slant towards the art and technique of fiction. All the while I write and read everyday improving my writing and improving my understanding. I can certainly recommend many books that I have recently read and studied and I must say that this book has a welcome place in my library. All of the books on fiction that I have are highly geared toward the novel. I had been struggling to write just one short story with the knowledge and experience imparted from other books. Things just didn't fit. I bought this book with three others not expecting anything special. I started with the book and a page and a half of short story. By the time I finished reading the first chapter, everything was so clear that I put the book down, and, with surprising success, finished my short story. It only took a matter of hours. I am a page and a half into another story told entirely from the omniscient point of view. I would also like to say that many of the books I have include a pre-amble or first section on the struggle of writing well. I have found many of these depressing even when I am shining with hope. The first chapter of this book approaches the subject of writers struggle with interspersed anecdotes of hope and quotes about the struggle and joy of writing from famous writers. If you buy this book for only one reason, let it be the first chapter. It is truly original. The rest of the book goes on to talk about many of the common elements in general creative writing that can be found in any collection. This book freed my style and showed me that I can use un-common technique to make an engaging story of less than 5,000 words.
If this is your first book you also want "Self-Editing For Writers of Fiction", and Sol Steins, "Stein on Writing".
Good luck with your endeavors.

Full download
Posted: September 26th, 2008, 12:33pm CEST by RapidshareEbook
Product Description
Confusing Textbooks? Missed Lectures? Not Enough Time?
Fortunately for you, there's Schaum's Outlines. More than 40 million students have trusted Schaum's to help them succeed in the classroom and on exams. Schaum's is the key to faster learning and higher grades in every subject. Each Outline presents all the essential course information in an easy-to-follow, topic-by-topic format. You also get hundreds of examples, solved problems, and practice exercises to test your skills.
This Schaum's Outline gives you
* Practice problems with full explanations that reinforce knowledge
* Coverage of the most up-to-date developments in your course field
* In-depth review of practices and applications
Fully compatible with your classroom text, Schaum's highlights all the important facts you need to know. Use Schaum's to shorten your study time-and get your best test scores!
Schaum's Outlines-Problem Solved.
Product Details
* Amazon Sales Rank: #113902 in Books
* Published on: 2000-04-20
* Original language: English
* Number of items: 1
* Binding: Paperback
* 160 pages
Editorial Reviews
About the Author
Eugene Ehrlich, Ph.D., is professor emeritus of English Literature at Columbia University and has been a commentator for National Public Radio.
Customer Reviews
Not exactly what I expected but still really good.4
As with other Schaum's outlines, this one has lots of exercises for students to practice with. I was confused because I thought this book and Schaum's "theory and probs of english grammar" were different. In fact, they are the same (basically), but this one is simply an earlier edition... Perhaps the earliest??

Full download
Posted: September 26th, 2008, 12:24pm CEST by RapidshareEbook
Product Description
At last, a guide that explains points of French grammar and structure simply, then clarifies each with concrete examples. The examples use the language of real-life situations. This new edition also makes difficult topics, like the difference between mood and tense, even easier to understand. Numerous fill-in-the-blank and other exercises with delayed answers help cut down the time it takes readers to gain proficiency and confidence communicating in French.
Product Details
* Amazon Sales Rank: #25736 in Books
* Published on: 1999-06-28
* Original language: English, French
* Number of items: 1
* Binding: Paperback
* 432 pages
Editorial Reviews
Language Notes
Text: English, French
About the Author
McGraw-Hill authors represent the leading experts in their fields and are dedicated to improving the lives, careers, and interests of readers worldwide
Customer Reviews
A Great Source 5
Schaum' Outling is simply a perfect book which has everything inside including tons of exercises. Once you finish this book like I did you will see that other books are not that necessary to do because this one is enough. It is written every possible detail that you can imagine so it makes sure that you dont skip any exception. I suggest this book to everybody however I believe that you would better profit from this book if you know just a little bit basic french but thats all. Now I can write and say whatever I want and I can communicate and live easily in a francophone country. Thank you Schaum!
A must have for serious or semi serious French students!!5
I have used Schaum's Outline for Spanish, Italian and now French. They are the best. Not for the casual grammarian however.
Good review book3
This book is a good, comprehensive review of grammar for intermediate and advanced French speakers; without prior knowledge of French, it might be a little hard to understand.

Full download
Posted: September 26th, 2008, 12:19pm CEST by RapidshareEbook
Product Description
“If you get only one Java book, it should be Sams Teach Yourself Java in 21 Days” –PC Magazine
In just 21 days, you can acquire the knowledge and skills necessary to develop three kinds of programs with Java: applications on your computer, servlets on a web server, and browser-launched Java Web Start applications.
No previous programming experience required. By following the 21 carefully organized lessons in this book, anyone can learn the basics of Java programming.
Learn at your own pace. You can work through each chapter sequentially to make sure you thoroughly understand all of the concepts and methodologies, or you can focus on specific lessons to learn the techniques that interest you most.
Test your knowledge. Each chapter ends with a Workshop section filled with questions, answers, and exercises for further study. There are even certification practice questions.
“Sams Teach Yourself Java is one of the best introductions to hands-on Java programming. If you buy one book on Java, this is the one to buy!” –Independent Web Review
* Completely revised, updated, and expanded to cover the latest features of Java 6
* Learn to develop standalone Java applications, web servlets, JavaServer Pages, and Java Web Start applications
* Easy-to-understand, practical examples clearly illustrate the fundamentals of Java programming
* Discover how Swing can help you quickly develop programs with a graphical user interface
* Find out about JDBC database programming, Internet client/server programming, and XML parsing with the open source XOM class library
* Covers new features of version 6 such as Java DB, the new relational database that is now a built-in
* part of Java
Rogers Cadenhead is a web application developer who has written 22 books on Internet-related topics, including Sams Teach Yourself Java 2 in 24 Hours. He maintains this book’s official website at http://www.java21days.com.
Laura Lemay is one of the world’s most popular authors on Web development topics. She is the author of the bestselling Sams Teach Yourself Web Publishing with HTML, as well as Sams Teach Yourself Perl in 21 Days.
CD-ROM includes:
* Source code for the examples developed in the book
* Java™ SE Development Kit 6
* NetBeans™ IDE 5.5
* Bonus materials
Category: Java Programming
Covers: Java 6 Platform Standard Edition
User Level: Beginning—Intermediate
$44.99 USA / $55.99 CAN / £31.99 Net UK (inc. of VAT)
Product Details
* Amazon Sales Rank: #38211 in Books
* Published on: 2007-06-04
* Original language: English
* Number of items: 1
* Binding: Paperback
* 720 pages
Editorial Reviews
About the Author
Rogers Cadenhead is a web application developer and author. He has written 22 books on Internet-related topics, including Sams Teach Yourself Java in 24 Hours. He’s also a web publisher whose sites receive more than 24 million visits per year. He maintains this book’s official website at http://www.java21days.com and a personal weblog at http://www.cadenhead.org.
Laura Lemay is a technical writer and author. After spending six years writing software documentation for various computer companies in Silicon Valley, she decided that writing books would be much more fun. In her spare time, she collects computers, email addresses, interesting hair colors, and nonrunning motorcycles. She is also the perpetrator of Sams Teach Yourself Web Publishing with HTML in a Week and Sams Teach Yourself Perl in 21 Days and a personal weblog at http://blog.lauralemay.com.
Customer Reviews
Confusing Appendix A JDK tutorial, and that is just the start!1
Appendix A "teaches" you how to get the JDK (java development kit) configured. It is a night mare for someone like me, a beginner. Here are the problems:
1) It wasn't mentioned in the "Running Programs in MS-DOS" that you are supposed to restart your computer after configuring the environment variables, the only place it was mentioned was for Experienced users, and I'm not one of them! Do you know how long it took me to figure that out! I had to reread Appendix A three times! And guess!
2) No where in Appendix A was it mentioned for the "inexperienced user" that you need to include a period for the class path. It was only mentioned for the "experienced user" which, I am not! I skipped over the "experienced user" instructions, because the book said, "For inexperienced MS-DOS users, the following section covers in detail how to set the PATH and CLASSPATH variables on a Windows system" --FALSE!!!!
3)The website tutorial for appendix a touches on the period issue, but not well enough. It has this ".;" which I thought was a typo because no where else was it mentioned. And the picture on the site showed the period after the semi-colon. What the heck?
Please GOD, don't let the rest of the book be this way!
The only thing I like about the book is the one day at a time approach. Any one else know of a good alternative to this book?
Java at your pace4
Likes:
A co-worker recommended the book to me and let me borrow it briefly. I found I liked the pacing in the book and the attempt by the authors to modularize each of the chapters making them correspond to days in a week. Due to other "life" distractions I found myself not necessarily able to keep up with the Java in 21 days but I still found it easier to progress through this book as opposed to other similar "[Insert language, application, software, etc., here] in X number of days" books. The examples are good and the authors get the book text to correspond well with the examples. I felt I understood the general concept of what the authors were trying to convey and I enjoyed working through the examples and exercises at my own pace. I felt that the modular chapters of the book would allow me to read through the chapters in most any sequence with the same ease as reading from beginning to end.
I found the website more convenient to use than the CD and the author seems to keep the book's online portion fairly current.
Dislikes:
The installation of Java instructions in Appendix A are aimed more at Windows and UNIX users but little or no mention is given to Mac OS X users. I would have preferred some assistance with upgrading Java on the Mac with help from the book or CD. I managed to get by however with Java 5 in Mac OS X. Some Mac users not familiar with installing/updating Java may encounter difficulty if they rely on the book and/or CD alone, particularly the CLASSPATH used in Mac OS X.
There are a couple of typos and errors that need to be fixed (i.e., for some odd reason the references in the book to signed/unsigned data-types are incorrect).
Overall:
I'm still going through the book and the things I like about the book, CD and website outweigh what I dislike about each of these items. Despite my dislikes I felt the book deserved 4 out of 5 starts (well 3.5 out of 5 but I can't give half a star).
This does NOT cover java 61
I am a certified programmer for java 1.4, and I bought this book on the title alone to get me up to date with the upgrades to version 6. What a disappointment to find that annotations are not covered at all, and generics only partially. Furthermore the collections framework is largely ignored. I looks like a java 1.3 book with some added examples to make it look like a version 6 book, but it is NOT. So if you need a book to study for the certification exam, this book is definitely NOT the one to get.
I found it a complete waste of money.

Full download
Posted: September 26th, 2008, 11:56am CEST by RapidshareEbook
Product Description
Smartphone Operating System Concepts with Symbian OS uses Symbian OS as a vehicle to discuss operating system concepts as they are applied to mobile operating systems.It is this focus that makes this tutorial guide both invaluable and extremely relevant for today's student.In addition to presenting and discussing operating system concepts, this book also includes exercises that compare and contrast Symbian OS, Unix/Linux and Microsoft Windows. These assignments can be worked on in a classroom laboratory or in a student's own time.
The book is replete with examples (both conceptual and applied to handhelds) as well as:
* Summaries at the end of each chapter.
* Problems the students can do as homework.
* Experiment-oriented exercises and questions for students to complete on a handheld device
* A reading list, bibliography and a list of sources for handheld software
It also contains a series of on-line laboratories based on the software developed for Symbian OS devices. Students can perform these labs anywhere, and can use printing and e-mail facilities to construct lab write-ups and hand in assignments.
Students, for the first time, will be taught Symbian OS concepts so that they can start developing smartphone applications and become part of the mass-market revolution.
Product Details
* Amazon Sales Rank: #991542 in Books
* Published on: 2007-06-11
* Original language: English
* Number of items: 1
* Binding: Paperback
* 354 pages
Editorial Reviews
From the Back Cover
Smartphone Operating System Concepts with Symbian OS uses Symbian OS as a vehicle to discuss operating system concepts as they are applied to mobile operating systems.It is this focus that makes this tutorial guide both invaluable and extremely relevant for today's student.In addition to presenting and discussing operating system concepts, this book also includes exercises that compare and contrast Symbian OS, Unix/Linux and Microsoft Windows. These assignments can be worked on in a classroom laboratory or in a student's own time.
The book is replete with examples (both conceptual and applied to handhelds) as well as:
* Summaries at the end of each chapter.
* Problems the students can do as homework.
* Experiment-oriented exercises and questions for students to complete on a handheld device
* A reading list, bibliography and a list of sources for handheld software
It also contains a series of on-line laboratories based on the software developed for Symbian OS devices. Students can perform these labs anywhere, and can use printing and e-mail facilities to construct lab write-ups and hand in assignments.
Students, for the first time, will be taught Symbian OS concepts so that they can start developing smartphone applications and become part of the mass-market revolution.

Full download
Posted: September 26th, 2008, 11:51am CEST by RapidshareEbook
Product Description
Richard Harrison’s existing books are the bestsellers in the Symbian Press Portfolio. His latest book, co-written with Mark Shackman is the successor to "Symbian OS C++ for Mobile Phones" Volumes One and Two. Written in the same style as the two previous volumes, this is set to be another gem in the series.
The existing material from the volumes will be combined, with explanations and example code updated to reflect the introduction of Symbian OS v9. New and simplified example application will be introduced, which will be used throughout the book. The reference and theory section in particular sets this book apart from the competition and complements other books being proposed at this time.
Anyone looking for a thorough insight into Symbian OS C++ before moving onto specialize on particular Symbian OS phones need this book! It will not teach people how to program in C++, but it will reinforce the techniques behind developing applications in Symbian OS C++, and more.
This innovative new book covers Symbian OS fundamentals, core concepts and UI.
Key highlights include:
* A quick guide to Kernel
* Platform security
* Publishing Applications
* View Architecture
* Multi-User games
Product Details
* Amazon Sales Rank: #783985 in Books
* Published on: 2007-08-24
* Original language: English
* Number of items: 1
* Binding: Paperback
* 834 pages
Editorial Reviews
Review
"...close to a 'must read'..." (CVu, June 2003)
From the Back Cover
This latest edition provides you with the tools to become an effective Symbian OS developer and offers a deep understanding o the fundamental principles upon which Symbian OS is based. The text is also complemented with a suite of examples.
Symbian OS C++ for Mobile Phones Volume 3 includes:
* An introduction to Symbian C++, with descriptions of the basic building blocks and usage patters.
* Examples that are fully compatible with the latest Carbide.++ Symbain IDEs guide the reader through increasingly complex aspects of Symbian C++.
* The core concepts, resources and programming idioms that you need to create, test and publish a non-trivial GUI (graphical user interface) application.
* An introduction to some of the most significant Symbian OS system services: extensibility and the use of plug-ins and practical descriptions of the communications, multimedia and database services.
* Advice on the available range of graphics APIs and help to ensure that your application code is as device-independent as possible.
As it is targeted at the high-growth area where computers and mobile communications converge, Symbian OS gives you unparalleled opportunities in mass-market, enterprise and system programming.
If you've programmed in C++ at any level, and wish to develop software for mobile phones, this book is essential.
Symbian OS C++ for Mobile Phones Volume 3 draws on the experience of Symbian's own engineers to provide you with a thorough grounding in writing C++ applications for mobile phones using the latest version of Symbian OS and beyond.
About the Author
Mark Shackman is part of the Symbian Developer Network, which provides technical support to developers in the form of presentations, papers, books and tools. After the formation of Symbian, Mark joined the Connectivity Engineering group, with sole responsibility for authoring, producing, delivering and supporting the Connectivity SDK. He also wrote a chapter in Symbian's first book, Professional Symbian Programming.
Richard Harrison has developed Symbian OS software for 10 years. He is currently Technical Author at Symbian Ltd and is responsible for their system documentation. Richard is the lead author of the best-selling Symbian OS C++ for Mobile Phones, Volumes 1 and 2, also published by Wiley.
Customer Reviews
Good introduction but examples are outdated and index is useless3
My title says it all. The book starts relativly good by giving an useful introduction into Symbian Programming and introducing the basic programming paradigms. I also like the chapter about how to avoid common pitfalls and about descriptors.
After the example section the book goes to introduce the basic functionality of some libraries, but stays too much on the surface to deliver some advantage over reading the official documentation.
Some examples (for example in the file system services part) also seem to be outdated.
Not so much work seems to have gone into creating an index - it is overbloated with useless page citings. It seems as if somebody just took a number of keywords searched the document and added them directly to the index, even if the keyword at a page is not relevant at all. For example the keyword "UIDs" points to 19 different pages!
My recommendation: For an introduction take a look at S60 Programming - A Tutorial Guide by Wiley (same publisher). I found that to be organized better for beginners. If you are beyond that stage, use the internet forums or the Symbian documentation.
A good base for UIQ3
I ordered this book because I was new to Symbian/UIQ. I found it easier and more convenient to use than the SDK on-line doc.
I appreciate the battleship case-study used to illustrate the basic and intermediate Symbian/UIQ concepts. It helped me a great deal. This book also focuses on UIQ application framework. But surprisingly, I found it very scarce (as much as the SDK) on some aspects of the application framework: embedded application programming, command-line parameters processing.
However still good to have it close at hand for when I need a quick info.
Good Starting Point3
Having written software for 15 years for UNIX and Windows platforms, my move to the mobile space has been educational and humbling. Trying to learn to program for Symbian using the SDK and publicly available docs is daunting at best. The SDK docs are sparse, poorly written and provide a terrible search experience.
In contrast, Symbian OS C++ for Mobile Phones provides a solid foundation for learning to program this relatively new breed of devices. It covers a lot of material in a fair amount of depth and will help newbies to ascend the steep learning curve. Without this book, those new to Symbian programming will need to scour the SDK docs, trawl the newsgroups, and rely on kind souls from the UK to help with their inevitable programming questions.
I would have given this book 4 stars had it not been for several disappointing characteristics. First, there are too many authors. The writing style changes and information is repeated unnecessarily and in jarring ways. Second, the book sometimes repeats what's in the SDK docs, albeit in a consolidated form, without adding pragmatic insight and value. Third, it does not delve into some real-world, complex topics in any meaningful way. For example, the text quickly discusses messaging (SMS/MMS) but does not provide a digestible example of programmatically constructing an MMS. Fourth, it does not include Series 60 information, which is a shame given that the Series 60 is a very popular platform.
All in all, this is a good book that provides relevant, helpful information that will flatten the learning curve considerably.

Full download
Posted: September 26th, 2008, 11:46am CEST by RapidshareEbook
Product Description
Concise, Accessible Coverage of All CCNA Objectives for Exam 640-801
Two Bonus Exams on the CD
Written by Todd Lammle, the Leading Authority on Cisco Internetworking
From the author of Sybex's best-selling CCNA: Cisco Certified Network Associate Study Guide comes the streamlined tool you need to hone in on critical CCNA information: CCNA Fast Pass. The enclosed CD lets you practice, practice, practice so you can approach the exam with confidence.
Coverage includes:
* Designing Cisco internetworks
* Developing an access list
* Evaluating TCP/IP communication
* Configuring routers and switches
* Configuring IP addresses, subnet masks, and gateway addresses
* Performing LAN, VLAN, and WAN troubleshooting
* Understanding rules for packet control
Featured on the CD
The enclosed CD features two CCNA practice exams covering all exam objectives. You also get 100 electronic flashcards for PCs, Pocket PCs, and Palm handhelds, plus a glossary of key terms.
Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.
Product Details
* Amazon Sales Rank: #677141 in Books
* Published on: 2005-11-11
* Original language: English
* Number of items: 1
* Binding: Paperback
* 384 pages
Editorial Reviews
From the Back Cover
Concise, Accessible Coverage of All CCNA Objectives for Exam 640-801
Two Bonus Exams on the CD
Written by Todd Lammle, the Leading Authority on Cisco Internetworking
From the author of Sybex's best-selling CCNA: Cisco Certified Network Associate Study Guide comes the streamlined tool you need to hone in on critical CCNA
information: CCNA Fast Pass. The enclosed CD lets you practice, practice, practice so you can approach the exam with confidence.
Coverage includes:
* Designing Cisco internetworks
* Developing an access list
* Evaluating TCP/IP communication
* Configuring routers and switches
* Configuring IP addresses, subnet masks, and gateway addresses
* Performing LAN, VLAN, and WAN troubleshooting
* Understanding rules for packet control
Featured on the CD
The enclosed CD features two CCNA practice exams covering all exam objectives. You also get 100 electronic flashcards for PCs, Pocket PCs, and Palm handhelds, plus a glossary of key terms.
About the Author
Todd Lammle, CCNA, CCNP, has over twenty years of experience working with various LAN and WANs, and has been working on Cisco router networks since 1986. He is CEO and Chief Scientist of RouterSim, LLC and President of GlobalNet Training, Inc. Todd was voted "Best Study Guide Author" in the CertCities Readers' Choice Awards four years in a row.
Customer Reviews
CCNA Review5
I found this book to be well written, concise and to the point. The chapters are broken down in to easy to digest parts, which prepare you for end chapter tests which really tests what you've learned! I would recommend this book for anyone who is serious about passing the CCNA test, and if your really looking for a great resource, this book is it.
CCNA FAST PASS5
A must for a CCNA candidate. Great read 30 days prior to the examination.
Remember, this book will only help you to refresh your thoughts about the various topics covered in the CCNA exam.For one to pass the exam, extended reading is required/
NOT WORTH IT2
this book is an shortened offshoot of Todd's other book. It doesn't make you learn quicker either. Stay with the full version. And yes, alot of typos and errors................

Full download
Posted: September 26th, 2008, 11:43am CEST by RapidshareEbook
Product Description
All-in-One is All You Need
Fully revised for the latest exam release, this authoritative volume offers thorough coverage of all the material on the Certified Information Systems Security Professional (CISSP) exam. Written by a renowned security expert and CISSP, this guide features complete details on all 10 exam domains developed by the International Information Systems Security Certification Consortium (ISC²). Inside, you'll find learning objectives at the beginning of each chapter, exam tips, practice questions, and in-depth explanations. CISSP All-in-One Exam Guide, Fourth Edition will not only help you pass the test, but also be your essential on-the-job reference.
Covers all 10 subject areas on the exam:
* Access control
* Application security
* Business continuity and disaster recovery planning
* Cryptography
* Information security and risk management
* Legal, regulations, compliance, and investigations
* Operations security
* Physical (environmental) security
* Security architecture and design
* Telecommunications and network security
The CD-ROM features:
* Simulated exam with practice questions and answers
* Video training from the author
* Complete electronic book
Product Details
* Amazon Sales Rank: #844 in Books
* Published on: 2007-11-09
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 1145 pages
Editorial Reviews
About the Author
Shon Harris, CISSP, MCSE, is the president of Logical Security, an IT security consulting and training company. She is a former engineer in the Air Force's Information Warfare unit, an instructor, and the bestselling author of the previous three editions of this book. Shon has taught computer and information security to a wide range of clients, including RSA, the Department of Defense, the Department of Energy, the National Security Agency (NSA), and many more.
Customer Reviews
Faster Than a Speeding Bullet5
Wonderfully quick response and shipping time. Nice to have a request for any comments.
Overly wordy novel on CISSP3
This book is presented in novel format where huge paragraphs dominate.
People don't mentally store information in paragraph format; they store it in bullets or chunks of data so you first have to read the paragraph, then deduce the bullets for mental storage. It's weird but I think most books are written like this.
There are endless stories about security using sometimes inappropriate metaphors for security which don't always equate to the technology at hand.
Also, the chapters aren't laid out in the 10 Domains covered by the CISSP exam so you have to jump around to go through the domains.
By comparison, the Sybex CISSP book does a worse job because the chapters aren't even named in relation to what the ten CISSP domains are so you have to guess which chapter goes to which domain.
There is good use of graphics but there is a lot of extra information not on the exam so if you're looking for a concise technical review of CISSP exam material, look elsewhere.
PS the Shon Harris videos are as long and drawn out.
Wouldn't have passed without it!5
I can honestly say that if it weren't for this book I probably would not have passed my CISSP exam. Unlike other prep-guides, Shon engages the reader and keeps their attention. Also, this book doesn't read like a "read this book and pass an exam" book. It reads like a security book which just so happens to teach you the contents of the CISSP CBK. Good work and congrats on the 4th edition.

Full download
Posted: September 26th, 2008, 11:34am CEST by RapidshareEbook
Product Description
Want to conquer two of the most difficult programmer certifications? The new edition of the best-selling Complete Java 2 Certification Study Guide is the resource you need. Authors Philip Heller and Simon Roberts, developers of Sun's Programmer and Developer exams for the Java 2 Platform, give you everything you need to pass the exams the first time. This fully revised edition is updated for the changes in both exams, including coverage of new objectives for J2SE 1.4, a new emphasis on Swing and RMI, and information for tackling the new format of the Developer exam. The book is also enhanced with all-new features from Sybex's market-leading Study Guides, including Exam Essential sections to reinforce key subject areas and real-world scenario sidebars with sample programming assignments. The companion CD contains all the review questions from the book, a practice programmer's exam, and 150 random-test questions, including 100 new questions. The CD also includes a fully searchable electronic edition of the book.
Product Details
* Amazon Sales Rank: #840873 in Books
* Published on: 2002-07
* Original language: English
* Number of items: 1
* Binding: Hardcover
* 816 pages
Editorial Reviews
Amazon.com Review
Sun Java certification is no picnic, so a thorough study guide is essential. Look no further than The Complete Java 2 Certification Study Guide for formal, structured preparation. This bulky title offers comprehensive coverage of the objectives you must master to pass both the Programmer's Exam and the more demanding Developer's Exam.
Written by a trio of Sun Java course instructors, this book uses a straightforward bottom-up approach, starting with core syntax of Java and moving into progressively more graphical and sophisticated aspects of development. The familiar textbook style makes the title very suitable for self-paced study, even if you're not shooting for certification.
Each chapter includes a test, and the answers are explained. The authors use code snippets that are not overwhelming in length to keep their readers focused on the concept at hand. A large portion of the rear of the book is devoted to a Java 2 API reference, and the CD-ROM features a test limit to help you get psyched for the big exam. If you've got the time and dedication to master the material, this fine guide is all you need to get Sun's stamp of approval as a developer. --Stephen W. Plain
Topics covered: Java language fundamentals, objects and classes, event management, components, graphical user interfaces, database integration, thread management, and Remote Method Invocation (RMI).
From the Back Cover
Here's the book you need to prepare for the Programmer's and Developer's exams. This Study Guide provides:
In-depth coverage of every exam objective for the revised Programmer's Exam for J2SE 1.4 Hundreds of challenging practice questions, in the book and on the CD Leading-edge exam preparation software
Authoritative coverage of all Programmer's exam objectives, including: Language fundamentals Operators and assignments Modifiers Converting and casting Flow control, exceptions, and assertions Objects and classes Threads The java.lang and java.util packages Input and output
In-depth coverage of the topics covered in the Developer's exam, including: Swing components and events Layout managers Enhancing and extending the database Writing the network protocol Designing the user interface GUI prototyping Building the database server Connecting the client and server Preparing the upload
Featured on the CD The enclosed CD is packed with vital preparation tools and materials, including a custom testing engine for the Java Programmer's exam. Loaded with hundreds of practice questions, it lets you test yourself by chapter or by randomized testing, and also provides you with explanations for each question. You'll also find a complete practice Programmer's exam and a fully searchable electronic version of the book.
About the Author
Philip Heller is a technical author, novelist, public speaker, and consultant. He has been instrumental in the creation and maintenance of the Java Programmer and Developer exams. His popular seminars on certification have been delivered internationally. He is the co-author of several books on Java, all available from Sybex. Simon Roberts is a Sun Microsystems programmer, an instructor, an authority on the Java language, and the key player in the development of the entire Java certification program.
Customer Reviews
Mistakes, Mistakes, and more Mistakes1
I find it hard to believe that a study guide this error ridden was ever released given the gross errors my study group has found. We feel a lack of confidence in the material presented in this text and in the authors in particular. We have to verify everything presented in this text and believe nothing to be true without doing so. This is not a good way to study for a certification exam. We need a trusted and reliable reference, not a work of fiction.
We are not at all pleased with the material covered. Nor are we pleased with the mock exams which we all agree are too easy.
In all I would suggest that you not purchase this book and wait instead for the next release of Kathy Sierra & Bert Bates book.
Sample exams on CD are buggy and wrong2
The exams on the accompanying CD are crap.
The engine is buggy (sometime you cannot see the whole text) and answers are wrong. E.g.
Q: "Which access modifier will allow access only within the class and package?"
A: "friendly"
Maybe friendly, but definitely wrong.
This was all I needed!4
I studied this book carefully twice through and passed the exam easily. It may not be perfect, but it was all I needed.

Full download
Posted: September 26th, 2008, 11:29am CEST by RapidshareEbook
Product Description
All the ONT 642-845 commands in one compact, portable resource
Preparing for the CCNP® certification? Working as a network professional? Here are all the CCNP-level commands for the ONT exam you need in one condensed, portable resource. The CCNP ONT Portable Command Guide is filled with valuable, easy-to-access information and is portable enough for use whether you’re in the server room or the equipment closet.
This book will help you memorize commands and concepts as you work to pass the CCNP ONT exam (642-845). The guide summarizes all CCNP certification-level Cisco IOS® Software commands, keywords, command arguments, and associated prompts, providing you with tips and examples of how to apply the commands to real-world scenarios. Sample configurations throughout the book provide you with a better understanding of how these commands are used in simple network designs.
The topics in this portable command guide cover how to do the following:
* Describe Cisco VoIP implementations
* Describe QoS considerations
* Describe DiffServ QoS implementations
* Implement AutoQoS
* Implement WLAN security and management Scott Empson is currently the assistant program chair of the bachelor of applied information systems technology degree program at the Northern Alberta Institute of Technology in Edmonton, Alberta, Canada, teaching Cisco® routing, switching, and network design courses in certificate, diploma, and applied degree programs at the post-secondary level.
Hans Roth is an instructor in the electrical/electronic engineering technology department at Red River College in Winnipeg, Canada.
* Access all CCNP ONT commands–use as a quick, offline resource for research and solutions
* Logical “how-to” topic groupings provide one-stop research
* Great for review before taking the CCNP ONT certification exam
* Compact size makes it easy to carry with you, wherever you go
* “Create Your Own Journal” section with blank, lined pages allows you to personalize the book for your needs
This book is part of the Cisco Press® Certification Self-Study Product Family, which offers readers a self-paced study routine for Cisco certification exams. Titles in the Cisco Press Certification Self-Study Product Family are part of a recommended learning program from Cisco that includes simulation and hands-on training from authorized
Cisco Learning Partners and self-study products from Cisco Press.
Category: Cisco Press–Cisco Certification
Covers: CCNP ONT Certification 642-845
$24.99 USA / $26.99 CAN
Product Details
* Amazon Sales Rank: #88625 in Books
* Published on: 2008-03-30
* Original language: English
* Number of items: 1
* Binding: Paperback
* 168 pages
Editorial Reviews
About the Author
Scott Empson is the Associate Chair of the Bachelor of Applied Information Systems Technology degree program at the Northern Alberta Institute of Technology in Edmonton, Alberta, Canada, where he teaches Cisco routing, switching, and network design courses in a variety of different programs–certificate, diploma, and applied degree–at the postsecondary level. Scott is also the Program Coordinator of the Cisco Networking Academy Program at NAIT, a Regional Academy covering Central and Northern Alberta. He has earned three undergraduate degrees: a bachelor of arts, with a major in English; a bachelor of education, again with a major in English/language arts; and a bachelor of applied information systems technology, with a major in network management. He currently holds several industry certifications, including CCNP, CCAI, and Network+. Prior to instructing at NAIT, he was a junior/senior high school English/language arts/computer science teacher at different schools throughout Northern Alberta. Scott lives in Edmonton, Alberta, with his wife, Trina, and two children, Zachariah and Shaelyn, where he enjoys reading and studying the martial art of Taekwon-Do.
Hans Roth is an instructor in the Electrical/Electronic Engineering Technology department at Red River College in Winnipeg, Canada. Hans has been with the college for 11 years and teaches in the both the Electronic Technology and IT areas. He has been with the Cisco Academy Program since 2000 teaching CCNP curricula. Previous to teaching, Hans spent 15 years in R&D/product development designing microcontroller-based control systems for consumer products as well as for the automotive and agricultural industries.
Customer Reviews
VERY VERY HIGHLY RECOMMENDED!!5
Are you preparing for the CCNP ONT exam? If you are, then this book is for you. Authors Scott Empson and Hans Roth, have done an outstanding job of including some handy hints and tips along the way to hopefully make life a bit easier for you in preparing for the exam.
Empson and Roth, begin by giving you an overview of the two different design models from Cisco: The Service-Oriented Network Architecture and the Enterprise Composite Network Model. Then, the authors describe how to set up Cisco Unified Communications Manager Express by using CLI, how to use the CLI for CME auto-configuration, how to install IP Communicator, and how to change codecs by using the CLI. They also describe how to configure QoS through the CLI, by using Modular QoS CLI for implementing QoS by using AutoQoS, and implementing and monitoring QoS by using Cisco Security Device Manager. The authors continue by describing how to use Network-Based Application Recognition for classification. Next, they discuss topics such as the phases of AutoQoS, locations where AutoQoS can be implemented, router considerations and prerequisites, and deploying AutoQoS on both routers and IOS-based Catalyst switches. Finally, the authors discuss how to configure wireless LAN QoS by using CLI, configuring encryption and authentication on lightweight access points, and working with Cisco wireless control systems.
This most excellent book is the fourth and final volume in a four-volume set that attempts to summarize the commands and concepts that you need to know in order to pass one of the CCNP certification exams. Perhaps more importantly, this great book acts like a small notebook that can be carried around, which contains little nuggets of information.

Full download
Posted: September 26th, 2008, 11:17am CEST by RapidshareEbook
Product Description
CCNP ISCW Portable Command Guide
All the ISCW 642-825 commands in one compact, portable resource
Scott Empson
Hans Roth
Preparing for the CCNP certification? Working as a network professional? Here are all the CCNP-level commands for the ISCW exam you need in one condensed, portable resource. The CCNP ISCW Portable Command Guide is filled with valuable, easy-to-access information and is portable enough for use whether you’re in the server room or the equipment closet.
This book can help you memorize commands and concepts as you work to pass the CCNP ISCW exam (642-825). The guide summarizes all CCNP certification-level Cisco IOS Software commands, keywords, command arguments, and associated prompts, providing you with tips and examples of how to apply the commands to real-world scenarios. Sample configurations throughout the book provide you with a better understanding of how these commands are used in simple network designs.
The topics in this portable command guide cover how to do the following:
* Implement basic teleworker services
* Implement Frame-Mode MPLS
* Implement a site-to-site IPsec VPN
* Describe network security strategies
* Implement Cisco Device Hardening
* Implement Cisco IOS Firewall
* Describe and configure Cisco IOS IPS Scott Empson is currently the assistant program chair of the bachelor of applied information systems technology degree program at the Northern Alberta Institute of Technology in Edmonton, Alberta, Canada, teaching Cisco routing, switching, and network design courses in certificate, diploma, and applied degree programs at the post-secondary level.
Hans Roth is an instructor in the electrical/electronic engineering technology department at Red River College in Winnipeg, Canada.
* Access all CCNP ISCW commands–use as a quick, offline resource for research and solutions
* Logical “how-to” topic groupings provide one-stop research
* Great for review before taking the CCNP ISCW certification exam
* Compact size makes it easy to carry with you, wherever you go
* “Create your own journal” section with blank, lined pages allows you to personalize the book for your needs
This book is part of the Cisco Press Certification Self-Study Product Family, which offers readers a self-paced study routine for Cisco certification exams. Titles in the Cisco Press Certification Self-Study Product Family are part of a recommended learning program from Cisco that includes simulation and hands-on training from authorized
Cisco Learning Partners and self-study products from Cisco Press.
Category: Cisco Press–Cisco Certification
Covers: CCNP ISCW Certification 642-825
Product Details
* Amazon Sales Rank: #526935 in Books
* Published on: 2008-03-22
* Original language: English
* Number of items: 1
* Binding: Paperback
* 192 pages
Editorial Reviews
About the Author
Scott Empson is the associate chair of the bachelor of applied information systems technology degree program at the Northern Alberta Institute of Technology in Edmonton,
Alberta, Canada, where he teaches Cisco routing, switching, and network design courses in a variety of different programs–certificate, diploma, and applied degree–at the postsecondary
level. Scott is also the program coordinator of the Cisco Networking Academy at NAIT, a Regional Academy covering central and northern Alberta. He has earned three undergraduate degrees: a bachelor of arts, with a major in English; a bachelor of education, again with a major in English/language arts; and a bachelor of applied information systems technology, with a major in network management. He currently holds several industry certifications, including CCNP, CCAI, and Network+. Prior to instructing at NAIT, he was a junior/senior high school English/language arts/computer science teacher at different schools throughout northern Alberta. Scott lives in Edmonton, Alberta, with his wife Trina and two children Zachariah and Shaelyn, where he enjoys reading and training in the martial art of tae kwon do.
Hans Roth is an instructor in the Electrical/Electronic Engineering Technology department at Red River College in Winnipeg, Manitoba, Canada. Hans has been with the college for
11 years and teaches in both the electronic technology and IT areas. He has been with the Cisco Networking Academy since 2000, teaching CCNP curricula. Previous to teaching
Hans spent 15 years in R&D/product development designing microcontroller-based control systems for consumer products as well as for the automotive and agricultural industries.
Customer Reviews
VERY VERY HIGHLY RECOMMENED!!5
Are you preparing for the CCNP ISCW exam? If you are, then this book is for you. Authors Scott Empson and Hans Roth, have done an outstanding job of summarizing the commands and concepts that you need to understand to pass the Implementing Secure Converged WANs exam.
Empson and Roth, begin by giving you an overview of the two different design models from Cisco: The Service-Oriented Network Architecture and the Enterprise Composite Network Model. Then, the authors describe how to provision a cable modem, and how to configure a Cisco router as a PPPoE client. They also describe how to configure MPLS on a router, including configuring MPLS on a frame mode interface, and configuring MTU size in label switching. The authors continue by describing how to configure, verify and troubleshoot IPsec VLANs. Next, they discuss topics such as locking down routers with AutoSecure. Finally, the authors discuss how to configure a basic firewall from the CLI and SDM; and how to configure inspection rules as part of an Advanced Firewall.
To verify the commands used in this most excellent book, many different devices were used. Perhaps more importantly, these devices are adequate for someone to continue their studies beyond the CCNP level.

Full download