Web 2.0Homepage → software

 

software

 
iRobot NewScooba380
software index: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

L

Code Complete: A Practical Handbook of Software Construction

Code Complete: A Practical Handbook of Software Construction by Steve McConnell from Microsoft Press

    Take a strategic approach to software constructionand produce superior productswith this fully updated edition of Steve McConnells critically praised and award-winning guide to software development best practices.

    List Price: $49.99
    complete product information...

    Design Patterns: Elements of Reusable Object-Oriented Software (Addison-Wesley Professional Computing Series)

    Design Patterns: Elements of Reusable Object-Oriented Software (Addison-Wesley Professional Computing Series) by Erich Gamma from Addison-Wesley Professional

      Design Patterns is a modern classic in the literature of object-oriented development, offering timeless and elegant solutions to common problems in software design. It describes patterns for managing object creation, composing objects into larger structures, and coordinating control flow between objects. The book provides numerous examples where using composition rather than inheritance can improve the reusability and flexibility of code. Note, though, that it's not a tutorial but a catalog that you can use to find an object-oriented design pattern that's appropriate for the needs of your particular application--a selection for virtuoso programmers who appreciate (or require) consistent, well-engineered object-oriented designs.

      Now on CD, this internationally acclaimed bestseller is more valuable than ever!

      Use the contents of the CD to create your own design documents and reusable components. The CD contains: 23 patterns you can cut and paste into your own design documents; sample code demonstrating pattern implementation; complete Design Patterns content in standard HTML format, with numerous hyperlinked cross-references; accessed through a standard web browser; Java-based dynamic search mechanism, enhancing online seach capabilities; graphical user environment, allowing ease of navigation.

      First published in 1995, this landmark work on object-oriented software design presents a catalog of simple and succinct solutions to common design problems. Created by four experienced designers, the 23 patterns contained herein have become an essential resource for anyone developing reusable object-oriented software. In response to reader demand, the complete text and pattern catalog are now available on CD-ROM. This electronic version of Design Patterns enables programmers to install the book directly onto a computer or network for use as an online reference for creating reusable object-oriented software.

      The authors first describe what patterns are and how they can help you in the design process. They then systematically name, explain, evaluate, and catalog recurring designs in object-oriented systems. All patterns are compiled from real-world examples and include code that demonstrates how they may be implemented in object-oriented programming languages such as C++ and Smalltalk. Readers who already own the book will want the CD to take advantage of its dynamic search mechanism and ready-to-install patterns.

      List Price: $59.99
      complete product information...

      C Programming Language (2nd Edition) (Prentice Hall Software)

      C Programming Language (2nd Edition) (Prentice Hall Software) by Brian W. Kernighan from Prentice Hall PTR

        Just about every C programmer I respect learned C from this book. Unlike many of the 1,000 page doorstops stuffed with CD-ROMs that have become popular, this volume is concise and powerful (if somewhat dangerous) -- like C itself. And it was written by Kernighan himself. Need we say more?

        List Price: $48.67
        complete product information...

        The Mythical Man-Month: Essays on Software Engineering, Anniversary Edition (2nd Edition)

        The Mythical Man-Month: Essays on Software Engineering, Anniversary Edition (2nd Edition) by Frederick P. Brooks from Addison-Wesley Professional

          The classic book on the human elements of software engineering. Software tools and development environments may have changed in the 21 years since the first edition of this book, but the peculiarly nonlinear economies of scale in collaborative work and the nature of individuals and groups has not changed an epsilon. If you write code or depend upon those who do, get this book as soon as possible -- from Amazon.com Books, your library, or anyone else. You (and/or your colleagues) will be forever grateful. Very Highest Recommendation.

          List Price: $39.99
          complete product information...

          User Stories Applied: For Agile Software Development (The Addison-Wesley Signature Series)

          User Stories Applied: For Agile Software Development (The Addison-Wesley Signature Series) by Mike Cohn from Addison-Wesley Professional

            List Price: $49.99
            complete product information...

            Agile Software Development with SCRUM (Series in Agile Software Development)

            Agile Software Development with SCRUM (Series in Agile Software Development) by Ken Schwaber from Prentice Hall

              List Price: $43.00
              complete product information...

              Software Requirements, Second Edition (Pro-Best Practices)

              Software Requirements, Second Edition (Pro-Best Practices) by Karl E. Wiegers from Microsoft Press

                Microsoft - Software Requirements -Second Edition

                "Requirements" are essential for creating successful software because they let users and developers agree on what features will be delivered in new systems. Karl Wiegers's Software Requirements shows you how to define and get more out of software requirements with dozens of "best practices" and tips that make this book a valuable resource for both software project managers and developers.

                The book's commonsense approach provides exemplary project management skills tailored to gathering (and refining, implementing, and eventually tracking) software requirements. While the book often cites recent software engineering studies, the focus always returns to practical management techniques. A case study for a chemical tracking application frames the book, and most chapters begin with anecdotes that demonstrate situations in which users and developers misunderstand each other about a software project's ultimate goals. (If you've ever worked in the field, these stories will probably sound all too familiar.)

                This book offers hope, though, for improving your software design process, with dozens of tips on getting better design input from your customers and then using these requirements to generate a variety of design documents. There are numerous templates and sample documents too--a big help for the busy software manager.

                Several standout sections cover negotiating difficult steps in the process, particularly how to manage shifting requirements as projects move forward and keep the various users and stakeholders content throughout the software process. Late in the book, the author surveys today's software management tools and shows how to pick the right ones for your organization.

                Anchored by the author's considerable experience and software engineering expertise, this jargon-free and practical guide to software requirements can definitely give you the edge in managing software projects more efficiently. --Richard Dragan

                Topics covered: software requirements specifications (SRS); business and user requirements; risk management; the requirements process; sample documents and templates; requirements development: elicitation, analysis, specification, and verification; rights and responsibilities for software customers; best practices; project management tips; process assessment and improvement; types of users; product champions; use cases and other diagrams; tips for prototyping; managing requirements change; change centered boards (CCBs); evaluating and using requirements tools; requirements traceability matrix; impact analysis.

                List Price: $39.99
                complete product information...

                Programming Erlang: Software for a Concurrent World

                Programming Erlang: Software for a Concurrent World by Joe Armstrong from Pragmatic Bookshelf

                  Erlang solves one of the most pressing problems facing developers today: how to write reliable, concurrent, high-performance systems. It's used worldwide by companies who need to produce reliable, efficient, and scalable applications. Invest in learning Erlang now.

                  Moore's Law is the observation that the amount you can do on a single chip doubles every two years. But Moore's Law is taking a detour. Rather than producing faster and faster processors, companies such as Intel and AMD are producing multi-core devices: single chips containing two, four, or more processors. If your programs aren't concurrent, they'll only run on a single processor at a time. Your users will think that your code is slow.

                  Erlang is a programming language designed for building highly parallel, distributed, fault-tolerant systems. It has been used commercially for many years to build massive fault-tolerated systems that run for years with minimal failures.

                  Erlang programs run seamlessly on multi-core computers: this means your Erlang program should run a lot faster on a 4 core processor than on a single core processor, all without you having to change a line of code.

                  Erlang combines ideas from the world of functional programming with techniques for building fault-tolerant systems to make a powerful language for building the massively parallel, networked applications of the future.

                  This book presents Erlang and functional programming in the familiar Pragmatic style. And it's written by Joe Armstrong, one of the creators of Erlang.

                  It includes example code you'll be able to build upon. In addition, the book contains the full source code for two interesting applications:

                • A SHOUTcast server which you can use to stream music to every computer in your house, and
                • a full-text indexing and search engine that can index gigabytes of data.

                  Learn how to write programs that run on dozens or even hundreds of local and remote processors. See how to write robust applications that run even in the face of network and hardware failure, using the Erlang programming language.

                  List Price: $36.95
                  complete product information...
                • PM FASTrack: PMP Exam Simulation Software, Version 5.2.0

                  PM FASTrack: PMP Exam Simulation Software, Version 5.2.0 by Rita Mulcahy from RMC Publications

                    Practice in a Simulated Testing Environment . . . with the Most Difficult Questions Available!

                    How good would it feel to know you will pass the PMP exam BEFORE you take it? PM FASTrack is an exam simulation software program containing more than 1,400 questions and six testing modes, allowing you to create an unlimited number of different exams. Created with the help of a psychometrician (just like the actual exam) PM FASTrack is designed to simulate the exam and eliminate any surprises. The application also:

                    - Tracks your progress with printable reports and graphs
                    - Provides explanations of answers and page references to Rita's book
                    - Contains "wordy" questions like the exam
                    - Helps you gain confidence and fill your gaps
                    - Decreases your study time!

                    In addition, users with Internet connections receive FREE real-time database updates as they become available. Students say the questions in PM FASTrack are more difficult than the ones on the actual exam!

                    List Price: $299.00
                    complete product information...

                    Software Estimation: Demystifying the Black Art (Best Practices (Microsoft))

                    Software Estimation: Demystifying the Black Art (Best Practices (Microsoft)) by Steve McConnell from Microsoft Press

                      Often referred to as the "black art" because of its complexity and uncertainty, software estimation is not as hard or mysterious as people think. However, the art of how to create effective cost and schedule estimates has not been very well publicized. While the average software organization can struggle with project costs that run double their original estimates, some of the more sophisticated organizations achieve results with estimation errors as low as 5-10%. These best-in-class organizations use scientific techniques that are not cost-effective, however, making them of limited use to most software development organizations. To address these issues, Software Estimation focuses on the art of software estimation and provides a proven set of procedures and heuristics that software developers, technical leads, and project managers can apply to their projects. Instead of arcane treatises and rigid modeling techniques, award-winning author Steve McConnell gives practical guidance to help organizations achieve basic estimation proficiency and lay the groundwork to continue improving project cost estimates. This book is organized from simple tips to more advanced ideas; it does not avoid the more hairy mathematical estimation approaches, but the non-mathematical reader will find plenty of useful guidelines without getting bogged down in complex formulas.

                      List Price: $39.99
                      complete product information...
                      page 1 of 10
                      +++

                      The Soul Is In The Software

                      The Soul Is In The Software The Soul Is In The Software

                      On Walden Software

                      On Walden Software On Walden Software

                      software engineer_0106

                      software engineer_0106 software engineer_0106

                      Software Research

                      Software Research Software Research

                      Software for Humanity

                      Software for Humanity Software for Humanity

                      Software Engineering

                      Software Engineering Software Engineering

                      Petcare Software

                      Petcare Software

                      Soul Is In The Software

                      Soul Is In The Software Soul Is In The Software

                      SOFTWARE UPGRADE

                      SOFTWARE UPGRADE

                      BGP SOFTWARE Software License NIS1905000

                      BGP SOFTWARE Software License NIS1905000

                      Tienes amigos o seguidores en twitter?

                      Desde aquí mismo puedes contarles sobre esta página!



                      oprima Ctrl-D para marcar este tópico en favoritos

                      press Ctrl-D to bookmark this topic



                      esta página contiene información acerca de programa
                      traducir esta página al CASTELLANO


                      © Copyright 1999-2008 idoneos.com | Política de Privacidad