John Fuller – författare
168 kr
Skickas
2 555 kr
Skickas inom 7-10 vardagar
2 115 kr
Skickas inom 7-10 vardagar
278 kr
Skickas inom 7-10 vardagar
Making Sense of Design
Effective design is at the heart of everything from software development to engineering to architecture. But what do we really know about the design process? What leads to effective, elegant designs? The Design of Design addresses these questions.
These new essays by Fred Brooks contain extraordinary insights for designers in every discipline. Brooks pinpoints constants inherent in all design projects and uncovers processes and patterns likely to lead to excellence. Drawing on conversations with dozens of exceptional designers, as well as his own experiences in several design domains, Brooks observes that bold design decisions lead to better outcomes.
The author tracks the evolution of the design process, treats collaborative and distributed design, and illuminates what makes a truly great designer. He examines the nuts and bolts of design processes, including budget constraints of many kinds, aesthetics, design empiricism, and tools, and grounds this discussion in his own real-world examples—case studies ranging from home construction to IBM’s Operating System/360. Throughout, Brooks reveals keys to success that every designer, design project manager, and design researcher should know.
596 kr
Skickas inom 7-10 vardagar
538 kr
Skickas inom 7-10 vardagar
Writing reliable and maintainable C++ software is hard. Designing such software at scale adds a new set of challenges. Creating large-scale systems requires a practical understanding of logical design — beyond the theoretical concepts addressed in most popular texts. To be successful on an enterprise scale, developers must also address physical design, a dimension of software engineering that may be unfamiliar even to expert developers. Drawing on over 30 years of hands-on experience building massive, mission-critical enterprise systems, John Lakos shows how to create and grow Software Capital. This groundbreaking volume lays the foundation for projects of all sizes and demonstrates the processes, methods, techniques, and tools needed for successful real-world, large-scale development.Up to date and with a solid engineering focus, Large-Scale C++, Volume I: Process and Architecture, demonstrates fundamental design concepts with concrete examples. Professional developers of all experience levels will gain insights that transform their approach to design and development by understanding how to
Raise productivity by leveraging differences between infrastructure and application development Achieve exponential productivity gains through feedback and hierarchical reuse Embrace the component’s role as the fundamental unit of both logical and physical design Analyze how fundamental properties of compiling and linking affect component design Discover effective partitioning of logical content in appropriately sized physical aggregates Internalize the important differences among sufficient, complete, minimal, and primitive software Deliver solutions that simultaneously optimize encapsulation, stability, and performance Exploit the nine established levelization techniques to avoid cyclic physical dependencies Use lateral designs judiciously to avoid the “heaviness” of conventional layered architectures Employ appropriate architectural insulation techniques for eliminating compile-time coupling Master the multidimensional process of designing large systems using component-based methodsThis is the first of John Lakos’s three authoritative volumes on developing large-scale systems using C++. This book, written for fellow software practitioners, uses familiar C++ constructs to solve real-world problems while identifying (and motivating) modern C++ alternatives. Together with the forthcoming Volume II: Design and Implementation and Volume III: Verification and Testing, Large-Scale C++ offers comprehensive guidance for all aspects of large-scale C++ software development. If you are an architect or project leader, this book will empower you to solve critically important problems right now — and serve as your go-to reference for years to come.
Register your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details.
346 kr
Skickas inom 7-10 vardagar
Software "style" is about finding the perfect balance between overhead and functionality... elegance and maintainability... flexibility and excess. In Exceptional C++ Style, legendary C++ guru Herb Sutter presents 40 new programming scenarios designed to analyze not only the what but the why and help you find just the right balance in your software.
Organized around practical problems and solutions, this book offers new insight into crucial C++ details and interrelationships, and new strategies for today's key C++ programming techniques--including generic programming, STL, exception safety, and more. You'll find answers to questions like:
What can you learn about library design from the STL itself? How do you avoid making templated code needlessly non-generic? Why shouldn't you specialize function templates? What should you do instead? How does exception safety go beyond try and catch statements? Should you use exception specifications, or not? When and how should you "leak" the private parts of a class? How do you make classes safer for versioning? What's the real memory cost of using standard containers? How can using const really optimize your code? How does writing inline affect performance? When does code that looks wrong actually compile and run perfectly, and why should you care? What's wrong with the design of std::string?Exceptional C++ Style will help you design, architect, and code with style--and achieve greater robustness and performance in all your C++ software.
1 081 kr
Skickas inom 3-6 vardagar
Object-Oriented Design with Applications has long been the essential reference to object-oriented technology, which, in turn, has evolved to join the mainstream of industrial-strength software development. In this third edition--the first revision in 13 years--readers can learn to apply object-oriented methods using new paradigms such as Java, the Unified Modeling Language (UML) 2.0, and .NET.
The authors draw upon their rich and varied experience to offer improved methods for object development and numerous examples that tackle the complex problems faced by software engineers, including systems architecture, data acquisition, cryptoanalysis, control systems, and Web development. They illustrate essential concepts, explain the method, and show successful applications in a variety of fields. You'll also find pragmatic advice on a host of issues, including classification, implementation strategies, and cost-effective project management.
New to this new edition are
An introduction to the new UML 2.0, from the notation's most fundamental and advanced elements with an emphasis on key changes New domains and contexts A greatly enhanced focus on modeling--as eagerly requested by readers--with five chapters that each delve into one phase of the overall development lifecycle. Fresh approaches to reasoning about complex systems An examination of the conceptual foundation of the widely misunderstood fundamental elements of the object model, such as abstraction, encapsulation, modularity, and hierarchy How to allocate the resources of a team of developers and mange the risks associated with developing complex software systems An appendix on object-oriented programming languagesThis is the seminal text for anyone who wishes to use object-oriented technology to manage the complexity inherent in many kinds of systems.
Sidebars Preface Acknowledgments About the Authors Section I: Concepts Chapter 1: Complexity Chapter 2: The Object Model Chapter 3: Classes and Objects Chapter 4: Classification Section II: Method Chapter 5: Notation Chapter 6: Process Chapter 7: Pragmatics Chapter 8: System Architecture: Satellite-Based Navigation Chapter 9: Control System: Traffic Management Chapter 10: Artificial Intelligence: Cryptanalysis Chapter 11: Data Acquisition: Weather Monitoring Station Chapter 12: Web Application: Vacation Tracking System Appendix A: Object-Oriented Programming Languages Appendix B: Further Reading Notes Glossary Classified Bibliography Index
401 kr
Skickas inom 7-10 vardagar
Consistent, high-quality coding standards improve software quality, reduce time-to-market, promote teamwork, eliminate time wasted on inconsequential matters, and simplify maintenance. Now, two of the world's most respected C++ experts distill the rich collective experience of the global C++ community into a set of coding standards that every developer and development team can understand and use as a basis for their own coding standards.
The authors cover virtually every facet of C++ programming: design and coding style, functions, operators, class design, inheritance, construction/destruction, copying, assignment, namespaces, modules, templates, genericity, exceptions, STL containers and algorithms, and more. Each standard is described concisely, with practical examples. From type definition to error handling, this book presents C++ best practices, including some that have only recently been identified and standardized-techniques you may not know even if you've used C++ for years. Along the way, you'll find answers to questions like
What's worth standardizing--and what isn't? What are the best ways to code for scalability? What are the elements of a rational error handling policy? How (and why) do you avoid unnecessary initialization, cyclic, and definitional dependencies? When (and how) should you use static and dynamic polymorphism together? How do you practice "safe" overriding? When should you provide a no-fail swap? Why and how should you prevent exceptions from propagating across module boundaries? Why shouldn't you write namespace declarations or directives in a header file? Why should you use STL vector and string instead of arrays? How do you choose the right STL search or sort algorithm? What rules should you follow to ensure type-safe code?Whether you're working alone or with others, C++ Coding Standards will help you write cleaner code--and write it faster, with fewer hassles and less frustration.
304 kr
Skickas inom 7-10 vardagar
The practice of building software is a “new kid on the block” technology. Though it may not seem this way for those who have been in the field for most of their careers, in the overall scheme of professions, software builders are relative “newbies.”
In the short history of the software field, a lot of facts have been identified, and a lot of fallacies promulgated. Those facts and fallacies are what this book is about.
There’s a problem with those facts–and, as you might imagine, those fallacies. Many of these fundamentally important facts are learned by a software engineer, but over the short lifespan of the software field, all too many of them have been forgotten. While reading Facts and Fallacies of Software Engineering, you may experience moments of “Oh, yes, I had forgotten that,” alongside some “Is that really true?” thoughts.
The author of this book doesn’t shy away from controversy. In fact, each of the facts and fallacies is accompanied by a discussion of whatever controversy envelops it. You may find yourself agreeing with a lot of the facts and fallacies, yet emotionally disturbed by a few of them! Whether you agree or disagree, you will learn why the author has been called “the premier curmudgeon of software practice.”
These facts and fallacies are fundamental to the software building field–forget or neglect them at your peril!
293 kr
Skickas
126 kr
Skickas
Alexander Pope
72 kr
Skickas
157 kr
Läs direkt efter köp
589 kr
Skickas inom 5-8 vardagar
123 kr
Skickas
197 kr
Skickas inom 11-20 vardagar
136 kr
Skickas
136 kr
Skickas inom 11-20 vardagar
2 689 kr
Skickas inom 10-15 vardagar
211 kr
Skickas inom 3-6 vardagar
841 kr
Läs direkt efter köp
This book presents power system analysis methods that cover all aspects of power systems operation, utilization, control, and system management.
At the beginning of each chapter, an introduction is given describing the objectives of the chapter. The authors have attempted to present power system parameters in a lucid, logical, step-by-step approach in a lucid, logical, step-by-step approach.
In recognition of requirements by the Accreditation Board for Engineering and Technology (ABET) on integration of engineering computer tools, the authors demonstrate the use of MATLAB® programming in obtaining solutions to engineering power problems. MATLAB is introduced in a student-friendly manner and follow up is given in Appendix A. The use of MATLAB and power system applications arepresented throughout the book.
Practice problems immediately follow each illustrative example. Students can follow the example step-by-step to solve the practice problems. These practice problems test students’ comprehension and reinforce key concepts before moving on to the next chapter.
In each chapter, the authors discuss some application aspects of the chapter''s concepts using computer programming. The material covered in the chapter applied to at least one or two practical problems to help students see how the concepts are used in real-life situations.
Thoroughly worked examples are provided at the end of every section. These examples give students a solid grasp of the solutions and the confidence to solve similar problems themselves.
Designed for a three-hour semester course on Power System Operation, Utilization, and Control, this book is intended as a textbook for a senior-level undergraduate student in electrical and computer engineering. The prerequisites for a course based on this book are knowledge of standard mathematics, including calculus and complex numbers and basic undergraduate engineering courses.
841 kr
Läs direkt efter köp
This book presents power system analysis methods that cover all aspects of power systems operation, utilization, control, and system management.
At the beginning of each chapter, an introduction is given describing the objectives of the chapter. The authors have attempted to present power system parameters in a lucid, logical, step-by-step approach in a lucid, logical, step-by-step approach.
In recognition of requirements by the Accreditation Board for Engineering and Technology (ABET) on integration of engineering computer tools, the authors demonstrate the use of MATLAB® programming in obtaining solutions to engineering power problems. MATLAB is introduced in a student-friendly manner and follow up is given in Appendix A. The use of MATLAB and power system applications arepresented throughout the book.
Practice problems immediately follow each illustrative example. Students can follow the example step-by-step to solve the practice problems. These practice problems test students’ comprehension and reinforce key concepts before moving on to the next chapter.
In each chapter, the authors discuss some application aspects of the chapter''s concepts using computer programming. The material covered in the chapter applied to at least one or two practical problems to help students see how the concepts are used in real-life situations.
Thoroughly worked examples are provided at the end of every section. These examples give students a solid grasp of the solutions and the confidence to solve similar problems themselves.
Designed for a three-hour semester course on Power System Operation, Utilization, and Control, this book is intended as a textbook for a senior-level undergraduate student in electrical and computer engineering. The prerequisites for a course based on this book are knowledge of standard mathematics, including calculus and complex numbers and basic undergraduate engineering courses.
891 kr
Läs direkt efter köp
This textbook provides an excellent focus on the advanced topics of the power system protection philosophy and gives exciting analysis methods and a cover of the important applications in the power systems relaying. Each chapter opens with a historical profile or career talk, followed by an introduction that states the chapter objectives and links the chapter to the previous ones, and then the introduction for each chapter. All principles are presented in a lucid, logical, step-by-step approach. As much as possible, the authors avoid wordiness and detail overload that could hide concepts and impede understanding. In each chapter, the authors present some of the solved examples and applications using a computer program.
Toward the end of each chapter, the authors discuss some application aspects of the concepts covered in the chapter using a computer program.
In recognition of requirements by the Accreditation Board for Engineering and Technology (ABET) on integrating computer tools, the use of SCADA technology is encouraged in a student-friendly manner. SCADA technology using the Lucas-Nulle GmbH system is introduced and applied gradually throughout the book.
Practice problems immediately follow each illustrative example. Students can follow the example step by step to solve the practice problems without flipping pages or looking at the book''s end for answers. These practice problems test students'' comprehension and reinforce key concepts before moving on to the next section.
Power System Protection and Relaying: Computer-Aided Design Using SCADA Technology is intended as a textbook for a senior-level undergraduate student in electrical and computer engineering departments and is appropriate for graduate students, industry professionals, researchers, and academics.
The book has more than ten categories and millions of power readers. It can be used in more than 400 electrical engineering departments at top universities worldwide.
Based on this information, targeted lists of the engineers from specific disciplines including electrical, computer, power control, technical power system, protection, design, and distribution engineers.
Designed for a three–hours semester course on "power system protection and relaying," the prerequisite for a course based on this book are knowledge of standard mathematics, including calculus and complex numbers.
891 kr
Läs direkt efter köp
This textbook provides an excellent focus on the advanced topics of the power system protection philosophy and gives exciting analysis methods and a cover of the important applications in the power systems relaying. Each chapter opens with a historical profile or career talk, followed by an introduction that states the chapter objectives and links the chapter to the previous ones, and then the introduction for each chapter. All principles are presented in a lucid, logical, step-by-step approach. As much as possible, the authors avoid wordiness and detail overload that could hide concepts and impede understanding. In each chapter, the authors present some of the solved examples and applications using a computer program.
Toward the end of each chapter, the authors discuss some application aspects of the concepts covered in the chapter using a computer program.
In recognition of requirements by the Accreditation Board for Engineering and Technology (ABET) on integrating computer tools, the use of SCADA technology is encouraged in a student-friendly manner. SCADA technology using the Lucas-Nulle GmbH system is introduced and applied gradually throughout the book.
Practice problems immediately follow each illustrative example. Students can follow the example step by step to solve the practice problems without flipping pages or looking at the book''s end for answers. These practice problems test students'' comprehension and reinforce key concepts before moving on to the next section.
Power System Protection and Relaying: Computer-Aided Design Using SCADA Technology is intended as a textbook for a senior-level undergraduate student in electrical and computer engineering departments and is appropriate for graduate students, industry professionals, researchers, and academics.
The book has more than ten categories and millions of power readers. It can be used in more than 400 electrical engineering departments at top universities worldwide.
Based on this information, targeted lists of the engineers from specific disciplines including electrical, computer, power control, technical power system, protection, design, and distribution engineers.
Designed for a three–hours semester course on "power system protection and relaying," the prerequisite for a course based on this book are knowledge of standard mathematics, including calculus and complex numbers.
357 kr
Skickas inom 5-8 vardagar
255 kr
Skickas inom 5-8 vardagar
History of Berwick Upon Tweed
Including a Short Account of the Villages of Tweedmouth and Spittal, &c
514 kr
Skickas inom 5-8 vardagar
History of Berwick Upon Tweed
Including a Short Account of the Villages of Tweedmouth and Spittal, &c
400 kr
Skickas inom 5-8 vardagar
2 435 kr
Skickas inom 10-15 vardagar