practical object oriented design sandi metz

Practical Object-Oriented Design - Sandi Metz

The Complete Guide to Writing Maintainable, Manageable, Pleasing, and Powerful Object-Oriented Applications Object-oriented programming languages exist to help you create beautiful, straightforward applications that are easy to change and simple to extend. Unfortunately, the world is awash with object-oriented (OO) applications that are difficult to understand and expensive to change. Practical Object-Oriented Design, Second Edition, immerses you in an OO mindset and teaches you powerful, real-world, object-oriented design techniques with simple and practical examples. Sandi Metz demonstrates how to build new applications that can “survive success” and repair existing applications that have become impossible to change. Each technique is illustrated with extended examples in the easy-to-understand Ruby programming language, all downloadable from the companion website, poodr.com. Fully updated for Ruby 2.5, this guide shows how to Decide what belongs in a single class Avoid entangling objects that should be kept separate Define flexible interfaces among objects Reduce programming overhead costs with duck typing Successfully apply inheritance Build objects via composition Whatever your previous object-oriented experience, this concise guide will help you achieve the superior outcomes you’re looking for. Register your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details.

Objev podobné jako Practical Object-Oriented Design - Sandi Metz

Simple Object Oriented Design - Mauricio Aniche

Write object-oriented code that''s manageable, maintainable, and future-proof.Keeping your object-oriented designs simple demands a creative approach and that''s exactly what you''ll find in Simple Object-Oriented Design. This book is full of patterns and principles for reducing complexity, each one proven in author Mauricio Aniche''s 20-year career in software development. You''ll learn how to tackle code''s natural growth in complexity, and adopt a "good enough" approach that means it''s easy to refactor when requirements change.You''ll discover insightful principles for: Making code readable and documented Improving consistency and encapsulation Managing dependencies Designing abstractions Handling infrastructure Effective modularization Learn what constitutes both good and bad object-oriented software design, discover how to make better trade-offs in design decisions, and when to embrace complexity over simpler data structures. With this book as your vital reference, you''ll be ready to write code that will last the test of time, without slowing feature delivery to a crawl.

Objev podobné jako Simple Object Oriented Design - Mauricio Aniche

Head First Design Patterns - Elisabeth Robson, Eric Freeman

With Design Patterns, you get to take advantage of the best practices and experience of others so you can spend your time on something more challenging. Something more fun. This book shows you the patterns that matter, when to use them and why, how to apply them to your own designs, and the object-oriented design principles on which they're based.

Objev podobné jako Head First Design Patterns - Elisabeth Robson, Eric Freeman

Object-Oriented Python - Irv Kalb

Object-Oriented Python is an intuitive and thorough guide to mastering object-oriented programming from the ground up. You''ll cover the basics of building classes and creating objects, and put theory into practice using the pygame package with clear examples that help visualize the object-oriented style. You''ll explore the key concepts of object-oriented programming - encapsulation, polymorphism, and inheritance - and learn not just how to code with objects, but the absolute best practices for doing so. Finally, you''ll bring it all together by building a complex video game, complete with full animations and sounds. The book covers two fully functional Python code packages that will speed up development of graphical user interface (GUI) programs in Python.

Objev podobné jako Object-Oriented Python - Irv Kalb

Object-Oriented Ontology - Graham Harman

What is reality, really?Are humans more special or important than the non-human objects we perceive?How does this change the way we understand the world?We humans tend to believe that things are only real in as much as we perceive them, an idea reinforced by modern philosophy, which privileges us as special, radically different in kind from all other objects. But as Graham Harman, one of the theory''s leading exponents, shows, Object-Oriented Ontology rejects the idea of human specialness: the world, he states, is clearly not the world as manifest to humans. At the heart of this philosophy is the idea that objects - whether real, fictional, natural, artificial, human or non-human - are mutually autonomous. In this brilliant new introduction, Graham Harman lays out the history, ideas and impact of Object-Oriented Ontology, taking in everything from art and literature, politics and natural science along the way.Graham Harman is Distinguished Professor of Philosophy at SCI-Arc, Los Angeles. A key figure in the contemporary speculative realism movement in philosophy and for his development of the field of object-oriented ontology, he was named by Art Review magazine as one of the 100 most influential figures in international art.

Objev podobné jako Object-Oriented Ontology - Graham Harman

Growing Object-Oriented Software, Guided by Tests - Nat Pryce, Steve Freeman

Foreword by Kent Beck "The authors of this book have led a revolution in the craft of programming by controlling the environment in which software grows.” --Ward Cunningham “At last, a book suffused with code that exposes the deep symbiosis between TDD and OOD. This one''s a keeper.” --Robert C. Martin “If you want to be an expert in the state of the art in TDD, you need to understand the ideas in this book.”--Michael Feathers Test-Driven Development (TDD) is now an established technique for delivering better software faster. TDD is based on a simple idea: Write tests for your code before you write the code itself. However, this "simple" idea takes skill and judgment to do well. Now there''s a practical guide to TDD that takes you beyond the basic concepts. Drawing on a decade of experience building real-world systems, two TDD pioneers show how to let tests guide your development and “grow” software that is coherent, reliable, and maintainable. Steve Freeman and Nat Pryce describe the processes they use, the design principles they strive to achieve, and some of the tools that help them get the job done. Through an extended worked example, you’ll learn how TDD works ... Unknown localization key: "more"

Objev podobné jako Growing Object-Oriented Software, Guided by Tests - Nat Pryce, Steve Freeman

The Object-Oriented Approach to Problem Solving and Machine Learning with Python - Maha Hadid, Sujith Samuel Mathew, Shahbano Farooq, Mohammad Amin K

This book is a comprehensive guide suitable for beginners and experienced developers alike. It teaches readers how to master object-oriented programming (OOP) with Python and use it in real-world applications.Start by solidifying your OOP foundation with clear explanations of core concepts like use cases and class diagrams. This book goes beyond theory as you get practical examples with well-documented source code available in the book and on GitHub.This book doesn''t stop at the basics. Explore how OOP empowers fields like data persistence, graphical user interfaces (GUIs), machine learning, and data science, including social media analysis. Learn about machine learning algorithms for classification, regression, and unsupervised learning, putting you at the forefront of AI innovation.Each chapter is designed for hands-on learning. You''ll solidify your understanding with case studies, exercises, and projects that apply your newfound knowledge to real-world scenarios. The progressive structure ensures mastery, with each chapter building on the previous one, reinforced by exercises and projects.Numerous code examples and access to the source code enhance your learning experience. This book is your one-stop shop for mastering OOP with Python and venturing into the exciting world of machine learning and data science.

Objev podobné jako The Object-Oriented Approach to Problem Solving and Machine Learning with Python - Maha Hadid, Sujith Samuel Mathew, Shahbano Farooq, Mohammad Amin K

Data-Oriented Programming - Yehonathan Sharvit

Eliminate the unavoidable complexity of object-oriented designs. Using the persistent data structures built into most modern programming languages, Data-oriented programming cleanly separates code and data, which simplifies state management and eases concurrency. In Data-Oriented Programming you will learn how to: Separate code from data Effectively manage state using immutable data Represent data with generic data structures Manipulate data with general-purpose functions Control concurrency in highly scalable systems Specify the shape of your data Benefit from polymorphism without objects Debug programs without a debugger Distinguish data-oriented programming from functional and OO programming Data-Oriented Programming teaches you to design applications using the data-oriented paradigm. These powerful new ideas are presented through conversations, code snippets, diagrams, and even songs to help you quickly grok what''s great about DOP. You''ll learn to write DOP code that can be implemented in languages like JavaScript, Ruby, Python, Clojure and also in traditional OO languages like Java or C#.

Objev podobné jako Data-Oriented Programming - Yehonathan Sharvit

The Feeling of the Form - Joseph R. Metz

The Feeling of the Form explores the concept of Einfuehlung - the projection of human feelings and life into inanimate forms - developed by German aesthetic theorists in the late nineteenth century. The word would be translated into English as "empathy" and migrate in meaning from the aesthetic to the interpersonal sphere. Combining close analysis and cultural "para-history," The Feeling of the Form reads literary texts by Georg Buechner, Adalbert Stifter, and Rainer Maria Rilke alongside philosophical texts by Robert Vischer, Vernon Lee, and Theodor Lipps to uncover the often-uncanny intersections of aesthetic and interpersonal empathy. Traveling both backward and forward in time from the 1873 invention of Einfuehlung, Joseph R. Metz traces the diverse and multidirectional exchanges among subjects and objects, feelings and forms, and selves and others that together yield an expanded understanding of Einfuehlung, empathy, and the connections between them. In its surprising juxtapositions, The Feeling of the Form also shows how nineteenth- and early twentieth-century texts prefigure a wide array of later thought, including affect theory, "other minds," artificial intelligence, object-oriented ontology, and cinema and video game aesthetics.

Objev podobné jako The Feeling of the Form - Joseph R. Metz

Kinetic Sand Forma hradu s tekutým pískem

Sada Kinetic Sand Forma hradu obsahuje 0,45 kg modrozeleného tekutého písku vhodného pro děti od 3 let. Písek se nelepí na ruce a umožňuje vytváření 3D objektů. Materiál je bezpečný, neobsahuje alergeny a umožňuje míchání barev.

  • Netvrdnoucí písek se nelepí na ruce a nešpiní
  • Bezpečný materiál bez pšenice, lepku a kaseinu
  • Možnost míchání barev pro kreativní hru
  • Vhodné pro rozvoj jemné motoriky od 3 let

Objev podobné jako Kinetic Sand Forma hradu s tekutým pískem

Mäser Sada šálků na espresso s podšálky Cordelia Sand, 6+6 ks

Sada obsahuje 6 šálků na espresso o objemu 90 ml a 6 podšálků o průměru 12 cm. Výrobky jsou z odolné kameniny s reaktivní glazurou v pískovém odstínu. Celá sada je vhodná do myčky nádobí a mikrovlnné trouby.

  • Vyrobeno z odolné kameniny s dlouhou životností.
  • Reaktivní glazura vytváří na každém kuse unikátní vzor.
  • Vhodné do myčky nádobí a mikrovlnné trouby.
  • Ergonomický tvar šálků s pohodlným ouškem.

Objev podobné jako Mäser Sada šálků na espresso s podšálky Cordelia Sand, 6+6 ks

Tom Tailor Osuška do sauny Sunny Sand, 80 x 200 cm

Osuška do sauny Tom Tailor Sunny Sand o rozměrech 80 x 200 cm je součástí řady COLOR BATH. Je vybavena dvěma poutky pro snadné skladování a rychlé sušení, má vysokou savost a je vyrobena z příjemného materiálu. Produkt nese certifikát OEKO-TEX® MADE IN GREEN.

  • Dvě praktická poutka pro snadné skladování a rychlé sušení
  • Vysoká savost a příjemný, hebký materiál na dotek
  • Certifikát OEKO-TEX® MADE IN GREEN zaručující bezpečnost a udržitelnost
  • Nadčasová barva Sunny Sand, která se hodí do jakékoliv koupelny

Objev podobné jako Tom Tailor Osuška do sauny Sunny Sand, 80 x 200 cm

Kinetic Sand krabice tekutého písku s podložkou zelená

Kinetic Sand je jemný kinetický písek vhodný pro děti od 3 let. Sada obsahuje 454 g netvrdnoucího písku, 7 formiček s nástroji a podložku. Děti mohou vytvářet různé 3D tvary jako hrady, žraloky nebo želvy.

  • Nepřilne k prstům a ruce zůstávají suché
  • Snadno se tvaruje a dlouho nevysychá
  • Sada obsahuje 7 multifunkčních formiček s nástroji
  • Praktická podložka pro čisté hraní

Objev podobné jako Kinetic Sand krabice tekutého písku s podložkou zelená

Secrets of Sand Hill Road - Scott Kupor

''Worth far more than its cover price ... I wish I’d had it available to me when I was first looking for startup funding'' -- Eric RiesEvery startup needs capital, and ambitious startups seek it on Sand Hill Road – Silicon Valley’s dream street for entrepreneurs. That’s where you’ll find the biggest names in venture capital, including the famed VC firm Andreessen Horowitz, where lawyer-turned-entrepreneur-turned-VC Scott Kupor serves as managing partner.Whether you’re trying to get a new company off the ground or scale an existing business to the next level, you need to understand how VCs think. Secrets of Sand Hill Road is the first book that shows you exactly how VCs decide where and how much to invest. It will help you get the best possible deal and make the most of your relationships with VCs. You’ll learn, for instance:-- Why most VCs typically invest in only one startup in a given business category-- Why the talent you need most when raising venture capital is your storytelling ability-- How to handle a ''down round'', when you have to raise funds at a lower valuation than in your previous round-- Why bridge financing (reopening your last round to existing investors) ... Unknown localization key: "more"

Objev podobné jako Secrets of Sand Hill Road - Scott Kupor

Kinetic Sand korálový útes velká hrací sada

Kinetic Sand korálový útes je velká hrací sada obsahující 500 g stříbrného, zlatého a třpytivého netvrdnoucího písku. Součástí jsou formičky, perly, drahokamy s mořskou tematikou a 6 ukrytých překvapení. Sada je určena pro děti od 3 let.

  • Nelepí se na ruce a nezanechává je mokré
  • Snadno tvarovatelný a nevysychá
  • Obsahuje 6 ukrytých překvapení a mořské motivy
  • Vhodný pro rozvoj jemné motoriky dětí od 3 let

Objev podobné jako Kinetic Sand korálový útes velká hrací sada

Playfoam® Sand Abeceda Sada s nástroji

Playfoam® Sand Abeceda Sada je kreativní sada pískové modelíny s nástroji a razítky písmen. Děti mohou válcovat, razítkovat a vytvářet písmenkové tvary, čímž se zábavně seznamují s abecedou. Modelína je plastická, ohebná, nevysychá a nešpiní.

  • Nevysychající a nešpinící modelína pro opakované použití
  • Sada obsahuje 26 razítek abecedy pro zábavné učení
  • Stimuluje smysly a rozvíjí kreativitu i jemnou motoriku
  • Vhodná pro děti již od 3 let

Objev podobné jako Playfoam® Sand Abeceda Sada s nástroji

Kinetic Sand Pohyblivý tekutý písek sada

Sada obsahuje uzavíratelný kufřík se třemi druhy kinetického písku, lopatkou a třemi tiskátky ve tvaru hvězdy, slunce a žraloka. Písek je netvrdnoucí, nelepí se na ruce a je hypoalergenní. Hračka je vhodná pro děti od 3 let a podporuje rozvoj představivosti a jemné motoriky.

  • Nelepí se na ruce a nezanechává je mokré
  • Hypoalergenní a netoxické složení bez lepku
  • Nezasychá a je vhodný pro opakované použití
  • Rozvíjí jemnou motoriku a kreativitu dětí

Objev podobné jako Kinetic Sand Pohyblivý tekutý písek sada

KikkaBoo Kelímek Platinum Silicone Sand

Kelímek KikkaBoo Platinum Silicone Sand je určen pro děti od 6 měsíců, má objem 150 ml a je vyroben z platinum silikonu. Je vhodný do myčky, mikrovlnné trouby a sterilizátoru. Jeho tvar podporuje samostatné pití a snadnou manipulaci.

  • Vyrobeno z měkkého a hypoalergenního platinum silikonu
  • Snadno se čistí, vhodné do myčky, mikrovlnky i sterilizátoru
  • Ergonomický tvar podporující samostatné pití
  • Odolný a bezpečný materiál pro děti

Objev podobné jako KikkaBoo Kelímek Platinum Silicone Sand

Moonie Usínáček Medvěd 2.0 Organic Sand

Moonie Usínáček Medvěd 2.0 Organic Sand je hračka s nočním světlem a relaxačními zvuky pro uspávání miminek. Disponuje senzorem pláče, pěti zvuky, sedmi barvami světla a časovačem. Je vyroben z organické bavlny, dobíjí se přes USB a je vhodný pro děti od narození.

  • Automatický senzor pláče zapne světlo a zvuky
  • 5 přírodních relaxačních zvuků a 7 barev světla
  • Vyrobeno z měkké organické bavlny, bezpečné od narození
  • Dobíjecí přes USB s výdrží až 8 hodin

Objev podobné jako Moonie Usínáček Medvěd 2.0 Organic Sand

KikkaBoo Bryndák s kapsou Platinum Silicone Flora Sand

Bryndák KikkaBoo Platinum Silicone Flora Sand je vyroben z 100% potravinářského platinum silikonu. Nabízí širokou kapsu pro zachycení nepořádku při krmení a nastavitelné zapínání pro prodloužení životnosti. Je hypoalergenní, bez BPA a vhodný pro děti od 6 měsíců.

  • Široká kapsa účinně zachytává drobky a kapky
  • Měkký a pružný platinum silikon se pohodlně přizpůsobí
  • Nastavitelné zapínání roste s dítětem
  • Snadná údržba – stačí opláchnout nebo otřít

Objev podobné jako KikkaBoo Bryndák s kapsou Platinum Silicone Flora Sand

Kinetic Sand výroba pizzy

Sada Kinetic Sand – výroba pizzy umožňuje dětem vytvářet pizzy z barevného kinetického písku pomocí přiložených forem a nástrojů. Hra rozvíjí jemnou motoriku a fantazii bez nutnosti úklidu, protože písek nikdy nevysychá. Jedná se o čistou a nekonečně tvořivou aktivitu.

  • Kinetický písek nikdy nevysychá a je vždy připraven k hraní.
  • Sada obsahuje formičky a nástroje pro realistickou výrobu pizzy.
  • Podporuje rozvoj jemné motoriky a kreativity u dětí.
  • Hra je čistá a bez nepořádku díky vlastnostem písku.

Objev podobné jako Kinetic Sand výroba pizzy

Lžička Platinum Silicone Sand

Lžička KikkaBoo Platinum Silicone Sand je určena pro první příkrmy dětí od 6 měsíců. Je vyrobena z bezpečného platinum silikonu s měkkou špičkou chránící dětské dásně. Lžička má ergonomický tvar pro snadné držení a je vhodná do myčky i mikrovlnné trouby.

  • Měkká a zaoblená špička šetrná k dětským dásním
  • Ergonomický tvar pro pohodlné držení při krmení
  • Vyrobena z bezpečného platinum silikonu - hypoalergenní a odolný
  • Snadná údržba - vhodná do myčky i mikrovlnné trouby

Objev podobné jako Lžička Platinum Silicone Sand

Mäser 12dílná servírovací sada Cordelia Sand

Servírovací sada Cordelia Sand od značky Mäser obsahuje 12 dílů z kvalitní kameniny. Skládá se ze šesti menších misek a šesti podlouhlých talířků v pískovém odstínu. Všechny kusy mají organicky zvlněný tvar a jsou vhodné do myčky i mikrovlnné trouby.

  • Vyrobeno z odolné kameniny s dlouhou životností.
  • Reaktivní glazura vytváří na každém kusu jedinečný vzor.
  • Vhodné do myčky nádobí i mikrovlnné trouby.
  • Variabilní sada s 6 miskami a 6 podlouhlými talířky.

Objev podobné jako Mäser 12dílná servírovací sada Cordelia Sand

Mäser Sada mělkých talířů Cordelia Sand 27 cm, 6 ks

Sada šesti mělkých talířů o průměru 27 cm je vyrobena z pevné kameniny. Talíře mají reaktivní glazuru v pískovém odstínu, která vytváří originální vzor a lesklý povrch. Jsou vhodné do myčky a mikrovlnné trouby, ideální pro servírování hlavních chodů.

  • Vyrobeno z odolné kameniny odolné proti poškrábání a vysokým teplotám.
  • Reaktivní glazura v pískovém odstínu vytváří na každém kusu jedinečný vzor s lesklým povrchem.
  • Lehce nepravidelný tvar dodává přirozený, ručně vyráběný dojem.
  • Vhodné do myčky nádobí i mikrovlnné trouby pro snadnou údržbu.

Objev podobné jako Mäser Sada mělkých talířů Cordelia Sand 27 cm, 6 ks

Mäser Sada dezertních talířů Cordelia Sand Textura 22 cm, 6 ks

Sada šesti dezertních talířů o průměru 22 cm je vyrobena z kvalitní kameniny. Talíře mají reaktivní glazuru v pískovém odstínu, která vytváří jedinečný vzor, a lesklý povrch. Jsou vhodné do myčky i mikrovlnné trouby a hodí se pro každodenní i slavnostní použití.

  • Vyrobeno z odolné kameniny vhodné do myčky i mikrovlnné trouby.
  • Unikátní reaktivní glazura vytváří na každém kuse jedinečný přírodní vzor.
  • Lehce nepravidelný tvar s měkce zaoblenými okraji působí ručně vyrobeným dojmem.
  • Praktický průměr 22 cm je ideální pro dezerty, malé porce nebo lehké snídaně.

Objev podobné jako Mäser Sada dezertních talířů Cordelia Sand Textura 22 cm, 6 ks

Tom Tailor Perkálové povlečení Dark Navy - Sunny Sand, 140 x 200 cm, 70 x 90 cm

Povlečení Tom Tailor Dark Navy - Sunny Sand je vyrobeno z kvalitního perkálu, který zajišťuje příjemný chladivý pocit a prodyšnost. Souprava obsahuje povlak na přikrývku 140 x 200 cm a povlak na polštář 70 x 90 cm s barevným lemováním. Certifikát OEKO-TEX® MADE IN GREEN garantuje bezpečnost výrobku.

  • Vyrobeno z jemného perkálu, hladkého a prodyšného
  • Dvoustranný design: barevné pruhy a jednobarevná strana
  • Certifikát OEKO-TEX® MADE IN GREEN pro bezpečnost
  • Snadné povlékání díky kvalitnímu zipu

Objev podobné jako Tom Tailor Perkálové povlečení Dark Navy - Sunny Sand, 140 x 200 cm, 70 x 90 cm

Practical Model-Based Systems Engineering - Carl Hernandez, Jose L. Fernandez

This comprehensive resource provides systems engineers and practitioners with the analytic, design and modeling tools of the Model Based Systems Engineering (MBSE) methodology of Integrated Systems Engineering (ISE) and Pipelines of Processes in Object Oriented Architectures (PPOOA) methodology.

Objev podobné jako Practical Model-Based Systems Engineering - Carl Hernandez, Jose L. Fernandez

Design Patterns - Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides

Capturing a wealth of experience about the design of object-oriented software, four top-notch designers present a catalog of simple and succinct solutions to commonly occurring design problems. Previously undocumented, these 23 patterns allow designers to create more flexible, elegant, and ultimately reusable designs without having to rediscover the design solutions themselves. The authors begin by describing what patterns are and how they can help you design object-oriented software. They then go on to systematically name, explain, evaluate, and catalog recurring designs in object-oriented systems. With Design Patterns as your guide, you will learn how these important patterns fit into the software development process, and how you can leverage them to solve your own design problems most efficiently. Each pattern describes the circumstances in which it is applicable, when it can be applied in view of other design constraints, and the consequences and trade-offs of using the pattern within a larger design. All patterns are compiled from real systems and are based on real-world examples. Each pattern also includes code that demonstrates how it may be implemented in object-oriented programming languages like C++ or Smalltalk.

Objev podobné jako Design Patterns - Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides

What Design Can’t Do - Silvio Lorusso

Kniha Silvia Lorusso kriticky zkoumá limity a rozpory v oboru designu prostřednictvím historických i současných příkladů. Autor využívá humor a ironické vizuály k analýze rozdílu mezi očekáváními a realitou v designérské praxi. Publikace představuje akademickou úvahu o budoucnosti designové profese.

  • Kritický a humorný pohled na obor designu
  • Kombinace akademického přístupu a srozumitelnosti
  • Bohatě ilustrovaná s vtipnými vizuály
  • Zaměření na každodenní realitu designérské praxe

Objev podobné jako What Design Can’t Do - Silvio Lorusso

Domain-Driven Design - Eric Evans

Incorporate effective domain modeling into the software development process Software design thought leader and founder of Domain Language, Eric Evans, provides a systematic approach to domain-driven design, presenting an extensive set of design best practices, experience-based techniques, and fundamental principles that facilitate the development of software projects facing complex domains. Intertwining system design and development practice, this book incorporates numerous examples based on actual projects to illustrate the application of domain-driven design to real-world software modeling and development. Domain Model: Part I outlines the goals of domain-driven development, defines terms, and gives an overview of the implications of using the domain model to drive communication and design Model-Driven Design: Part II condenses a core of best practices in object-oriented domain modeling into a set of basic building blocks and focuses on the kinds of decisions that keep the model and implementation aligned with each other, each reinforcing the other’s effectiveness Refactoring: Part III delves into modeling principles that can guide choices along the way, and techniques that help direct the search Strategic Design: Part IV explores a triad of principles that apply to the system as a whole: context, distillation, and large-scale structure Throughout the book, discussions are illustrated not ... Unknown localization key: "more"

Objev podobné jako Domain-Driven Design - Eric Evans

Functional Design and Architecture - Alexander Granin

Design patterns and architectures for building production quality applications using functional programming, with examples in Haskell and other FP languages. In Functional Design and Architecture you will learn: Designing production applications in statically typed functional languages such as Haskell Controlling code complexity with functional interfaces Architectures, subsystems, and services for functional languages Developing concurrent frameworks and multithreaded applications Domain-driven design using free monads and other functional tools Property-based, integrational, functional, unit, and automatic whitebox testing Functional Design and Architecture is a pioneering guide to software engineering using Haskell and other functional languages. In it, you''ll discover Functional Declarative Design and other design principles perfect for working in Haskell, PureScript, F#, and Scala. about the technology Functional programming offers a powerful alternative to object-oriented programming that helps tackle the complexities of large-scale software. Entrenched design patterns and architectural principles made for OOP are poorly suited for creating large-scale functional applications. This book lays out new methodologies, principles, and architectures optimized for high-level software design using functional languages. about the book Functional Design and Architecture is a comprehensive guide to software engineering using functional programming. Inside, you''ll find cutting-edge functional design principles and practices for every stage of application development, from architecting ... Unknown localization key: "more"

Objev podobné jako Functional Design and Architecture - Alexander Granin

Design Patterns Explained - Alan Shalloway, James Trott

"One of the great things about the book is the way the authors explain concepts very simply using analogies rather than programming examples–this has been very inspiring for a product I''m working on: an audio-only introduction to OOP and software development." –Bruce Eckel "...I would expect that readers with a basic understanding of object-oriented programming and design would find this book useful, before approaching design patterns completely. Design Patterns Explained complements the existing design patterns texts and may perform a very useful role, fitting between introductory texts such as UML Distilled and the more advanced patterns books." –James Noble Leverage the quality and productivity benefits of patterns–without the complexity! Design Patterns Explained, Second Edition is the field''s simplest, clearest, most practical introduction to patterns. Using dozens of updated Java examples, it shows programmers and architects exactly how to use patterns to design, develop, and deliver software far more effectively. You''ll start with a complete overview of the fundamental principles of patterns, and the role of object-oriented analysis and design in contemporary software development. Then, using easy-to-understand sample code, Alan Shalloway and James Trott illuminate dozens of today''s most useful patterns: their underlying concepts, advantages, tradeoffs, implementation techniques, and pitfalls to ... Unknown localization key: "more"

Objev podobné jako Design Patterns Explained - Alan Shalloway, James Trott

Design History and Culture - Javier Gimeno-Martinez

This student-friendly text provides a comprehensive exploration of the methods and approaches employed within design scholarship, drawing upon influences from history, art history, anthropology and interdisciplinary studies such as science and technology studies and material culture studies.Drawing connections between these methods and the evolving landscape of design, the book expands design culture beyond traditional outcomes to encompass areas like design for social innovation, digital design, critical design, design anthropology and craftivism. Additionally, the book introduces novel theoretical frameworks to facilitate discussions on contemporary designers’ work, including new materialism, object-oriented ontology and decolonization.This comprehensive overview of methods and approaches will enable students to select the most appropriate methodological tools for their own research. It is an ideal guide for both undergraduate and postgraduate students in design, design culture, design history, design studies and visual culture.

Objev podobné jako Design History and Culture - Javier Gimeno-Martinez

Městský bezpečnostní batoh, Soft Tote, 16", XD Design, modrý

Městský batoh Soft Tote od XD Design nabízí bezpečnostní funkce včetně RFID ochrany a zamykatelných zipů. S objemem 12-15 litrů poskytuje 11 organizačních zón pro notebook, dokumenty a osobní věci. Je vyroben z recyklovaného voděodolného nylonu a disponuje reflexními prvky pro viditelnost.

  • Bezpečnostní design s ochranou proti krádeži a RFID štítkem pro platební karty
  • Rozšiřitelný objem 12-15 litrů díky inovativním duo zipům
  • Vyrobeno z odolného a voděodolného recyklovaného nylonu
  • 11 promyšlených úložných zón včetně polstrované kapsy na 16" notebook

Objev podobné jako Městský bezpečnostní batoh, Soft Tote, 16", XD Design, modrý

Collistar Twist Design Lip Pencil krémová tužka na oči odstín 5 - Rosa del Deserto 0.4 g

Collistar Twist Design Lip Pencil je automatická konturovací tužka s krémovou texturou pro snadné nanášení. Zajišťuje precizní konturu a intenzivní barvu s dlouhotrvající výdrží až 12 hodin. Tužka má vestavěné ořezávátko a je vhodná pro konturování i vyplnění rtů.

  • Dlouhotrvající výdrž až 12 hodin bez obtiskávání
  • Praktický otočný mechanismus a vestavěné ořezávátko
  • Krémová textura pro snadné nanášení a roztírání
  • Voděodolný a sametově matný finiš

Objev podobné jako Collistar Twist Design Lip Pencil krémová tužka na oči odstín 5 - Rosa del Deserto 0.4 g

AG Design 1 dílná fototapeta MCQUEENN FTDNM 5201, 160 x 110 cm vlies (FTDNM5201)

Fototapeta AG Design MCQUEENN FTDNM 5201 je jednodílná dekorace z vliesového materiálu o rozměrech 160 x 110 cm. Disponuje vícebarevným motivem vhodným do obytných místností. Produkt umožňuje rychlou proměnu vzhledu interiéru.

  • Jednodílná konstrukce pro snadnou aplikaci
  • Vliesový materiál zajišťující odolnost a snadnou údržbu
  • Výrazný vícebarevný motiv vhodný do obytných prostor
  • Standardní rozměr 160x110 cm pro pokrytí větší plochy zdi

Objev podobné jako AG Design 1 dílná fototapeta MCQUEENN FTDNM 5201, 160 x 110 cm vlies (FTDNM5201)

CIARKO DESIGN TUBUS W WHITE (CDW3801B)

Ostrůvková digestoř CIARKO DESIGN TUBUS W WHITE je stropní spotřebič v bílé barvě o šířce 38,2 cm. Disponuje výkonem odsávání 560 m3/hod při hlučnosti 61 dB a nabízí recirkulační režim s tukovým filtrem. Součástí je LED osvětlení a elektronické ovládání.

  • Výkonné odsávání až 560 m3/hod
  • Nízká hlučnost pouze 61 dB
  • Moderní design v bílém matném provedení
  • Praktické LED osvětlení a recirkulační režim

Objev podobné jako CIARKO DESIGN TUBUS W WHITE (CDW3801B)

Hotspot Design Tričko Linear Zander - XXL,Hotspot Design Tričko Linear Zander - XXL

Tričko Linear Zander z kolekce LINEAR je vyrobeno ze 100% bavlny, což zajišťuje měkkost a prodyšnost. Na přední straně nese výrazné logo Hotspot Design, na zadní straně je motiv ryby (kapr, sumec, candát nebo štika). Spodní část zdobí ornamenty medových plástů pro moderní vzhled.

  • Vyrobeno ze 100% bavlny pro maximální pohodlí
  • Prodyšný a odvětrávaný materiál vhodný i do teplého počasí
  • Výrazný design s rybím motivem a logem Hotspot Design
  • Univerzální nošení pro rybaření i běžné aktivity

Objev podobné jako Hotspot Design Tričko Linear Zander - XXL,Hotspot Design Tričko Linear Zander - XXL

Konvice Vialli Design Diamante 1,5 l

Konvice Vialli Design Diamante je vyrobena z nerezové oceli a má objem 1,5 litru. Patří do kolekce Vialli Design a je určena pro každodenní použití. Její design Diamante dodává elegantní a moderní vzhled.

  • Elegantní design Diamante z kolekce Vialli Design
  • Vyrobena z kvalitní nerezové oceli pro dlouhou životnost
  • Objem 1,5 litru je ideální pro každodenní použití
  • Moderní a stylový vzhled, který se hodí do každé kuchyně

Objev podobné jako Konvice Vialli Design Diamante 1,5 l

The Politics of Design - Ruben Pater

Many designs that appear in today''s society will circulate and encounter audiences of many different cultures and languages. With communication comes responsibility; are designers aware of the meaning and impact of their work? An image or symbol that is acceptable in one culture can be offensive or even harmful in the next. A typeface or colour in a design might appear to be neutral, but its meaning is always culturally dependent. If designers learn to be aware of global cultural contexts, we can avoid stereotyping and help improve mutual understanding between people.Politics of Design is a collection of visual examples from around the world. Using ideas from anthropology and sociology, it creates surprising and educational insight in contemporary visual communication. The examples relate to the daily practice of both online and offline visual communication: typography, images, colour, symbols, and information.Politics of Design shows the importance of visual literacy when communicating beyond borders and cultures. It explores the cultural meaning behind the symbols, maps, photography, typography, and colours that are used every day. It is a practical guide for design and communication professionals and students to create more effective and responsible visual communication.

Objev podobné jako The Politics of Design - Ruben Pater

Sensory Design - Joy Monice Malnar

What if we designed for all of our senses? Suppose for a moment that sound, touch, and odor were treated as the equals of sight, and emotion considered as important as cognition. What would our built environment be like if sensory response, sentiment, and memory were critical design factors, the equals of structure and program? In Sensory Design, Joy Monice Malnar and Frank Vodvarka explore the nature of our responses to spatial constructs—from various sorts of buildings to gardens and outdoor spaces, to constructions of fantasy. To the degree that this response can be calculated, it can serve as a typology for the design of significant spaces, one that would sharply contrast with the Cartesian model that dominates architecture today.In developing this typology, the authors consult the environmental sciences, anthropology, psychology, and architectural theory, as well as the spatial analysis found in literary depiction. Finally, they examine the opportunities that CAVE™ and other immersive virtual reality technologies present in furthering a new, sensory-oriented design paradigm. The result is a new philosophy of design that both celebrates our sensuous occupation of the built environment and creates more humane design.Joy Monice Malnar, AIA, is associate professor of architecture at the University of ... Unknown localization key: "more"

Objev podobné jako Sensory Design - Joy Monice Malnar

Fractal Design 120mm Dynamic X2 GP černá

Fractal Design Dynamic X2 GP je černý 120mm ventilátor s rozměry 120x120x25mm. Disponuje otáčkami 1200 RPM a 3-pin konektorem. Kabel má délku 500 mm.

  • Univerzální použití pro skříně i chladiče
  • Dobrý průtok vzduchu při nízké hlučnosti
  • Dlouhý 500mm kabel pro snadnou instalaci
  • Standardní rozměry 120x120x25mm pro kompatibilitu

Objev podobné jako Fractal Design 120mm Dynamic X2 GP černá

H&D Home Design koš na prádlo s víkem hyacint s prací vsadkou 75 cm (AKP3033_HN1)

Plastový koš na prádlo s víkem o výšce 75 cm a objemu 150 litrů. Rozměry 74×45×45 cm umožňují pohodlné umístění v domácnosti. Béžová barva a design s prací vsadkou usnadňují organizaci špinavého prádla.

  • Praktická prací vsadka pro snadné přenášení prádla
  • Víko zabraňuje šíření pachů a udržuje čistý vzhled
  • Objem 150 litrů pro velkou kapacitu prádla
  • Odolný plastový materiál snadný na údržbu

Objev podobné jako H&D Home Design koš na prádlo s víkem hyacint s prací vsadkou 75 cm (AKP3033_HN1)

Casa Chic Norwich Zrcadlo Obdélníkový dřevěný rám 130 x 45 cm Mozaikový design

Nástěnné zrcadlo Norwich z kolekce Casa Chic by blumfeldt má obdélníkový tvar s rozměry 130 x 45 cm. Dřevěný rám o šířce 7 cm je zdoben mozaikovým vzorem a rámuje kulatý zrcadlový povrch s broušenými hranami. Zrcadlo je vhodné do moderně zařízených interiérů jako obývací pokoj, ložnice, koupelna nebo vstupní hala.

  • Elegantní mozaikový vzor na dřevěném rámu šířky 7 cm
  • Kulatý zrcadlový povrch s broušenými hranami pro bezpečnost
  • Univerzální využití do obývacího pokoje, ložnice, koupelny i haly
  • Štípaná povrchová úprava dodávající moderní luxusní vzhled

Objev podobné jako Casa Chic Norwich Zrcadlo Obdélníkový dřevěný rám 130 x 45 cm Mozaikový design

MaDe Auto, hasičská dodávka, CZ design i box

Hasičská dodávka MaDe Auto CZ Design i Box je plastová a kovová hračka pro děti od 3 let. Rozměry 16 x 6,5 x 8 cm a obsahuje 3 baterie AG13 potřebné pro provoz. Je dodávána v okenním boxu.

  • Autentický design hasičské dodávky CZ Design
  • Okamžitá hratelnost – baterie AG13 součástí balení
  • Robustní konstrukce z plastu a kovu pro dětské hraní
  • Praktické balení v okenním boxu – ideální jako dárek

Objev podobné jako MaDe Auto, hasičská dodávka, CZ design i box

Ottobre design woman 2/2021

Časopis Ottobre design 2/2021 obsahuje kolekci ženských šicích střihů pro jarní a letní sezónu. Nabízí různé modely oděvů včetně šatů, halenek a sukní. Všechny střihy jsou doplněny podrobnými návody a technickými specifikacemi.

  • Aktuální jarní a letní kolekce módních střihů
  • Profesionální krejčovské vzory s přesnými rozměry
  • Široký výběr modelů od casual po elegantní
  • Podrobné návody včetně doporučení materiálů

Objev podobné jako Ottobre design woman 2/2021

RED - DESIGN RENDL RENDL BERIT I hliník 230V GU10 50W R10119

Stropní svítidlo RENDL BERIT I s hranatým designem je vyrobeno z hliníku a disponuje výklopným mechanismem pro nastavení směru světla. Je určeno pro žárovky GU10 s maximálním příkonem 50 W a je plně kompatibilní s LED zdroji. Svítidlo lze instalovat na strop i na zeď a je vhodné pro domácnosti i veřejné prostory.

  • Výklopný mechanismus pro přesné nasměrování světla
  • Kvalitní hliníková konstrukce zajišťující dlouhou životnost
  • Univerzální design vhodný pro moderní i industriální interiéry
  • Možnost montáže na strop i na stěnu

Objev podobné jako RED - DESIGN RENDL RENDL BERIT I hliník 230V GU10 50W R10119

Design Patterns in .NET - Timur Yaroshenko

A comprehensive guide that takes you on a journey through the world of design patterns in .NET, empowering you to create software that is not only robust and efficient but also maintainable, scalable, and testable. Develop a solid understanding of object-oriented programming (OOP) principles, including inheritance, encapsulation, and polymorphism, forming the groundwork for well-structured code. Explore creational design patterns like Factory and Abstract Factory, mastering object instantiation, and delve into structural patterns such as Adapter and Composite, governing object composition. Navigate the intricacies of behavioral patterns like Template Method and Observer to control object interaction effectively. Unravel the mysteries of SOLID principles: Single Responsibility, Open-Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion for building maintainable, scalable, and testable code.

Objev podobné jako Design Patterns in .NET - Timur Yaroshenko

65" Metz 65MUC7000Z (65MUC7000Z )

Televize SMART ANDROID LED, 165cm, 4K Ultra HD, SMO 800 (50Hz), Direct LED, HDR10, HLG, DVB-T2/S2/C, H.265/HEVC, 3× HDMI, 2× USB, CI+, USB nahrávání, LAN, WiFi, Bluetooth, HbbTV 2.0, herní režim, Netflix, Disney+, HBO Max, Apple TV, Voyo, Telly, Google Assistent, VESA 400×200, repro 24W, Dolby Digital Plus, en. třída F Smart TV METZ 65MUC7000Zsystém ANDROID TV 10váš neomezený svět multimediálního obsahuPokud hledáte víc, než jen chytrou televizi, jste na správném místě. SMART TV METZ 65MUC7000Z o úhlopříčce 65" se stane moderním doplňkem vaší domácnosti díky stylovému bezrámovému designu. Televize se systémem Android TV 10 vám poskytne nespočet zážitků s oblíbenými službami jako je NETFLIX, YouTube nebo Prime Video. Technologie Dolby Audio a DTS StudioSound zajistí dokonalou atmosféru při sledování vašich oblíbených pořadů, filmů či při poslechu hudby.Hlavní přednosti SMART TV METZ 65MUC7000ZChytrá televize METZ 65MUC7000Z o uhlopříčce 164 cm (65") s...

Objev podobné jako 65" Metz 65MUC7000Z (65MUC7000Z )

What Makes Life Meaningful? - Joshua W. Seachris, Thaddeus Metz

Can human life be meaningful? What does talk about life’s meaning even mean? What is God’s role, if any, in a meaningful life? These three questions frame this one-of-a-kind debate between two philosophers who have spent most of their professional lives thinking and writing about the topic of life’s meaning.In this wide-ranging scholarly conversation, Professors Thaddeus Metz and Joshua W. Seachris develop and defend their own unique answers to these questions, while responding to each other’s objections in a lively dialog format. Seachris argues that the concept of life’s meaning largely revolves around three interconnected ideas—mattering, purpose, and sense-making; that a meaningful human life involves sufficiently manifesting all three; and that God would importantly enhance the meaningfulness of life on each of these three fronts. Metz instead holds that talk of life’s meaning is about a variety of properties such as meriting pride, transcending one’s animal self, making a contribution, and authoring a life-story. For him, many lives are meaningful insofar as they exercise intelligence in positive, robust, and developmental ways. Finally, Metz argues that God is unnecessary for an objective meaning that suits human nature.Metz and Seachris develop and defend their own unique answers to these three questions, while ... Unknown localization key: "more"

Objev podobné jako What Makes Life Meaningful? - Joshua W. Seachris, Thaddeus Metz