SlideShare una empresa de Scribd logo
1 de 101
Domain Driven Design
Iain Hecker

• Ruby developer at Finalist IT Group


• 4 years of Ruby experience


• Contributed to Rails core / i18n


• 9 gems released


• http://iain.nl


• http://github.com/iain


• @iain_nl
the problem
symptoms

• maintaining code is annoying


• adding features is a pain


• development speed is low


• system is unstable, but you don't exactly know why


• inconsistency and side effects fuck everything up


• fear of upgrading


• "I'm not touching that code!"
complexity
two categories of complexity
accidental complexity
          vs.
 essential complexity
"I need to do ..... because the code needs ....."
                           vs.
"I need to do ..... because the business needs ....."
lower accidental complexity

• use great frameworks (like Rails)


• test all the fucking time


• refactor all the fucking time


• use programming patterns (like MVC)


• pair-programming
domain-driven design
it's a book!
"Tackling Complexity in the Heart of Software"
organizing essential complexity
actions to organize complexity

• use the right language


• finding the core domain


• set the proper boundaries


• find the right models
the right language
ubiquitous language




technical terms domain model terms business terms
refactor when you got the name wrong
organizing complexity
example: local government
AgreementReference



                              AgreementSubscription
AgreementType




                   Agreement
AgreementReference                           RecentView   UserSession



                              AgreementSubscription
AgreementType

                                                         User

                   Agreement
AgreementReference                           RecentView   UserSession



                              AgreementSubscription
AgreementType
                                                                   SearchSubscription
                                                         User

                   Agreement
                                                                           Search
AgreementReference                                     RecentView         UserSession



                              AgreementSubscription
AgreementType
                                                                                  SearchSubscription
                                                                    User

                   Agreement
                                                                                          Search


                                                            Party



                                               Department


                                                                                Person
                                                              Group




                                                                       Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                                                                 Group




                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
high complexity
no clear structure
risk of side effects
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
bounded contexts

• boundaries lower complexity


• different contexts can interfere


• leaking between boundaries is called coupling


• side effects are bound to one context
prioritize your design
domain types

• core domains


• support domains


• generic support domains
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
As an council member (gemeenteraadslid)
I can see which agreements have been made
So I can supervise the execution of my policy
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
As a civil servant (ambtenaar)
I can see which agreements have been made
So I know what to work on
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
adding real value

• find what is important for your users


• invest time and effort in designing those core domains


• slack your efforts in support domains


• use existing products for generic support domains (like authentication)
models
models

• describe a version of reality to solve a certain problem


• do not represent technical terms like 'database tables'


• have a meaning in the business domain
AgreementReference                                      RecentView         UserSession



                                 AgreementSubscription
 AgreementType
                                                                                     SearchSubscription
                                                                       User

                          Agreement
                                                                                             Search


ProgressNote                                                   Party



                                                  Department
               Mutation


                                                                                   Person
                           Meeting                               Group



                                Notification
                                                                          Member
AgreementReference




AgreementType
                              AgreementSubscription
                                                      User


                   Agreement
                                                                 Search



Mutation

                                                         Party

                     Meeting
Reference
                                                                                   User

                                    Subscription
           Type
                                                                                          Search
                        Agreement


                                    Involvement
                                                                  Responsible



                                                        Charger


                                              Charged




                                                                                Party
Mutation              Meeting
guarding your boundaries
Mexico - United States barrier
modular design
modular design != mixins
namespacing
not just about name clashing
organizing complexity
but what about overlap?
Reference
                                                                                   user

                                    Subscription
           Type
                                                                                          search
                        Agreement


                                    Involvement
                                                                  Responsible



                                                        Charger


                                              Charged




                                                                                party
mutation              meeting
Reference
                                                                                    user

                                    Subscription
           Type
                                                                                           search
                        Agreement


                                    Involvement
                                                                      Responsible



                                                            Charger


                                              Charged

                                                        one normalized table
                                                                         party
mutation              meeting
how not to do it
module Agreement
  class Involvement
    has_one :charged,     :class_name => "Party::Group"
    has_one :charger,     :class_name => "Party::Group"
    has_one :responsible, :class_name => "Party::Group"
  end
end

module Party
  class Group < ActiveRecord::Base
  end
end
Reference
                                                                                user

                                    Subscription
           Type
                                                                                       search
                        Agreement


                                    Involvement
                                                                  Responsible



                                                        Charger


                                              Charged
                                                                      party


mutation              meeting
not just 3 boundary violations
methods are shared too
module Agreement

  class Involvement

    def charger_busy?
      charger.tasks.count > 4
    end

    def charged_busy?
      charger.tasks.count > 0
    end

  end

end
module Party

  class Group < ActiveRecord::Base

    def busy_charger?
      tasks.count > 4
    end

    def busy_charged?
      tasks.count > 0
    end

  end

end
module Party

  class Group < ActiveRecord::Base

    def busy?(charger = true)
      tasks.count > (charger ? 4 : 0)
    end

  end

end
one simple breach of the boundary can cause a lot of pain
a better way
class Group < ActiveRecord::Base
end

module Agreement
  class Involvement
    has_one :charged
    has_one :charger
    has_one :responsible
  end
  class Charged < Group
  end
  class Charger < Group
  end
  class Responsible < Group
  end
end
}
class Group < ActiveRecord::Base
end

module Agreement
  class Involvement
    has_one :charged
    has_one :charger




                                   domain logic
    has_one :responsible
  end
  class Charged < Group
  end
  class Charger < Group
  end
  class Responsible < Group
  end
end
}   implementation detail




                               }
class Group < ActiveRecord::Base
end

module Agreement
  class Involvement
    has_one :charged
    has_one :charger




                                       domain logic
    has_one :responsible
  end
  class Charged < Group
  end
  class Charger < Group
  end
  class Responsible < Group
  end
end
class Group < ActiveRecord::Base
  delegate :count, :to => :tasks, :prefix => true
end

module Agreement

  class Charged < Group
    def busy?
      tasks_count > 0
    end
  end

  class Charger < Group
    def busy?
      tasks_count > 4
    end
  end

end
there are other benefits too!
some (unrelated) problems of bleeding boundaries
class Post < ActiveRecord::Base
  scope :published, where(:published => true)
end


class PostsController < ApplicationController
  respond_to :html
  def index
    respond_with(@posts = Post.published)
  end
  def show
    respond_with(@post = Post.published.find(params[:id]))
  end
end
class Post < ActiveRecord::Base
  scope :published, where(:published => true)
  scope :visible, where(:visible => true)
end

class PostsController < ApplicationController
  respond_to :html
  def index
    respond_with(@posts = Post.published.visible.all)
  end
  def show
    respond_with(@post = Post.published.visible.find(params[:id])
  end
end
class Post < ActiveRecord::Base
  scope :published, where(:published => true)
  scope :visible, where(:visible => true)
  scope :for_frontend, published.visible
end

class PostsController < ApplicationController
  respond_to :html
  def index
    respond_with(@posts = Post.for_frontend.all)
  end
  def show
    respond_with(@post = Post.for_frontend.find(params[:id])
  end
end
default scope would be nice
but that introduces a lot of complexity for admins
"the local representative pattern"

term coined right now by me
# app/models/frontend/post.rb
module Frontend
  class Post < ::Post
    default_scope published.visible
  end
end

# app/controllers/frontend/posts_controller.rb
module Frontend
  class PostsController
    respond_to :html
    def index
      respond_with(@posts = Post.all)
    end
    def show
      respond_with(@post = Post.find(params[:id]))
    end
  end
end
module PersonalModel
  extend ActiveSupport::Concern

  included do
    attr_accessor  :current_user
                                                                 module Public
    before_update :check_current_user
                                                                   class Comment < ::Comment
    before_destroy :check_current_user
                                                                     include PersonalModel
  end
                                                                     attr_accessible :body
                                                                   end
  def owned_record?
                                                                 end
    current_user == user
  end

  def check_current_user
    raise UnauthorizedUserError.new(self) unless owned_record?
  end

end
works great for

• (default) scopes


• validations


• attr_protected / attr_accessible


• associations


• any other piece of code
problems

• introduces problems with identity


• getting the right objects


• Rails conventions
class Comment < ActiveRecord::Base
end

module Frontend
  class Comment < ::Comment
  end
end

Comment.first != Frontend::Comment.first
class Public::CommentsController < ApplicationController
  respond_to :html
  def new
    respond_with(@comment = Comment.new)
  end
end
class Public::CommentsController < ApplicationController
  respond_to :html
  def new
    respond_with(@comment = Comment.new)
  end
end




                    module Public
                      class CommentsController < ApplicationController
                        respond_to :html
                        def new
                          respond_with(@comment = Comment.new)
                        end
                      end
                    end
= form_for Comment.new do |f|
  = f.text_field :body

<form action="/comments" method="post">
  <input type="text" name="comment[body]" id="comment_body" />
</form>
= form_for Comment.new do |f|
  = f.text_field :body

<form action="/comments" method="post">
  <input type="text" name="comment[body]" id="comment_body" />
</form>




= form_for @comment do |f|
  = f.text_field :body

<form action="/public/comments" method="post">
  <input type="text" name="public_comment[body]" id="public_comment_body" />
</form>
conclusion
divide and conquer
keep accidental complexity to a minimum
essential complexity needs to be clear and organized
fix leaking contexts
prioritize on what you design perfectly
don't lose sight of reality
!ink ab"t it!

Más contenido relacionado

Último

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 

Último (20)

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 

Destacado

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 

Destacado (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 

Rotterdam.rb Domain Driven Design

Notas del editor