Home
Categories
EXPLORE
True Crime
Comedy
Society & Culture
Business
Sports
History
Music
About Us
Contact Us
Copyright
© 2024 PodJoint
00:00 / 00:00
Sign in

or

Don't have an account?
Sign up
Forgot password
https://is1-ssl.mzstatic.com/image/thumb/Podcasts221/v4/86/6d/3a/866d3a68-4b22-52a5-8ab9-f64daa13bf04/mza_15510450257039777025.jpg/600x600bb.jpg
Tech Book Podcast
Ai
13 episodes
9 hours ago
Reviewing tech and engineering books and articles!
Show more...
Technology
RSS
All content for Tech Book Podcast is the property of Ai and is served directly from their servers with no modification, redirects, or rehosting. The podcast is not affiliated with or endorsed by Podjoint in any way.
Reviewing tech and engineering books and articles!
Show more...
Technology
https://d3t3ozftmdmh3i.cloudfront.net/staging/podcast_uploaded_nologo/42046368/42046368-1730027411532-eba843b2b2d8d.jpg
Clean Architecture by Robert Cecil Martin
Tech Book Podcast
14 minutes 21 seconds
1 year ago
Clean Architecture by Robert Cecil Martin

This book, Clean Architecture: A Craftsman’s Guide to Software Structure and Design, by Robert C. Martin, presents a guide to building software systems with longevity and profitability. The book discusses the importance of software architecture, emphasizing its role in:

● Development: The architecture should make the system's intent clear and support the implementation of its features.

● Deployment: A good architecture allows for easy deployment into the production environment.

● Operation: The architecture should be capable of handling the required throughput and response times.

● Maintenance: A well-designed architecture allows for easy modification and extension of the system over time.The book advocates for a Clean Architecture, a layered approach where business rules are at the core and are independent of details like databases, user interfaces, and frameworks. This approach focuses on:

● The Dependency Rule: Dependencies should always point inwards towards the core business rules, ensuring that changes in details do not impact the core logic.

● Abstraction: Using abstract interfaces and the Dependency Inversion Principle to decouple layers and isolate components.The book emphasizes the importance of testability, suggesting that a good architecture inherently supports testing. It introduces the Humble Object pattern, a design pattern for separating hard-to-test behaviors from easy-to-test ones, making it easier to create testable components. The book also offers a case study demonstrating the principles discussed, including:

● Identifying actors and use cases to understand system requirements.

● Creating a component architecture based on the actors and use cases, emphasizing separation of concerns and the Dependency Rule.

● Managing dependencies to ensure system stability and flexibility. It’s important to note that “Clean Architecture” is just one approach to software architecture, and the specific details may vary depending on the project.

Tech Book Podcast
Reviewing tech and engineering books and articles!