Clean Code

Torrent Details


Clean code

NAME
Clean code.torrent
CATEGORY
Other
INFOHASH
47cf230629906423a3798d347fbe5ca7f2db5284
SIZE
1.4 GB in 82 files
ADDED
Uploaded on 13-07-2023 by our crawler pet called "Spidey".
SWARM
0 seeders & 0 peers
RATING
No votes yet.

Please login to vote for this torrent.


Description



Description



As a developer, you should be able to write code which works – of course!



Unfortunately, a lot of developers write bad code nonetheless – even though the code works. Because “working code” is not the same as “clean code”!



This course teaches you how to write clean code – code which is easy to read and understand by humans, not just computers!



In this course, you’ll learn what exactly clean code is and, more importantly, how you can write clean code. Because if your code is written in a clean way, it’s easier to read and understand and therefore easier to maintain.



Because it’s NOT just the computer who needs to understand your code – your colleagues and your future self needs to be able to understand it as well!



In this course, we’ll dive into all the main “pain points” related to clean code (or bad code – depending on how you look at it) and you will not just learn what makes up bad code but of course also how to turn it into clean code.



Specifically, you will learn about:



   Naming “things” (variables, properties, classes, functions, …) properly and in a clean way

   Common pitfalls and mistakes you should avoid when naming things

   Comments and that most of them are bad

   Good comments you might consider adding to your code

   Code formatting – both horizontal and vertical formatting

   Functions and how to limit the number of function parameters

   How to write clean functions by focusing on “one thing”

   How levels of abstraction help you split functions and keep them small

   How to write DRY functions and avoid unexpected side effects

   Avoiding deeply nested control structures with guards and by extracting functionality into functions

   Errors and error handling as a replacement for if-statements

   Objects & data containers/ data structures and why that differentiation could matter

   Cohesion and how to write good (small!) classes

   The Law of Demeter and why it matters for clean code

   What the SOLID principles are and why they matter when it comes to writing clean code

   Much more!



This course is a compilation of common patterns, best practices, principles and rules related to writing clean code.



In this course, you’ll learn about a broad variety of concepts, rules, ideas, thoughts and principles and by the end of course, you’ll have a good idea of what to keep in mind when it comes to writing clean code.



This is not a design patterns or general patterns course though – we will entirely focus on patterns, rules and concepts that help with writing clean code specifically.



All these concepts and rules are backed up by examples, code snippets and demos. And to ensure that you get the most out of this course, and you don’t just learn a bunch of theory which you forget soon after, there also are plenty of challenges for you to apply what you learned!



This course uses Python, JavaScript and TypeScript for code examples but you don’t need to know these languages to follow along and get a lot out of the course. In addition, the course does not focus on a specific programming style or paradigm (like functional programming, object-oriented programming etc) but instead covers general concepts and techniques which will always apply.



What are the course prerequisites?



   Basic programming knowledge (no matter which language) is required!

   You don’t need to know any specific programming language or programming paradigm to follow along

   NO prior experience with writing clean code is required



Who this course is for:



   Developers who want to ensure that their code does not just work but it also easy to read, understand and maintain

   Everyone who’s serious about development and writing real-life code



Requirements



   Basic programming knowledge (no matter which language) is required

   NO prior experience on the topic of clean code is required

   You DON’T need to know a specific programming language or paradigm



Last Updated 5/2023

Discussion

Comments 0

Post Your Comment

Files in this torrent

FILENAMESIZE
.pad/075 B
TutsNode.net.txt63 B
[TutsNode.net] - Clean code/01 - Getting Started/002 What is Clean Code_en.srt9.4 KB
[TutsNode.net] - Clean code/01 - Getting Started/003 Clean Code - Key Pain Points & How To Write Clean Code_en.srt6 KB
[TutsNode.net] - Clean code/01 - Getting Started/004 How Is This Course Structured_en.srt2.3 KB
[TutsNode.net] - Clean code/01 - Getting Started/005 Course Prerequisites_en.srt5.4 KB
[TutsNode.net] - Clean code/01 - Getting Started/008 Join Our Learning Community!.html878 B
[TutsNode.net] - Clean code/01 - Getting Started/009 Functional, OOP, Procedural The Course Concepts Always Apply!_en.srt2.4 KB
[TutsNode.net] - Clean code/01 - Getting Started/010 Clean Code, Principles & Patterns & Clean Architecture_en.srt5.7 KB
[TutsNode.net] - Clean code/01 - Getting Started/011 Clean Code vs Quick Code_en.srt8.5 KB
[TutsNode.net] - Clean code/01 - Getting Started/012 Module & Course Resources.html746 B
[TutsNode.net] - Clean code/01 - Getting Started/external-links.txt101 B
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/001 Module Introduction_en.srt1.4 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/002 Why Good Names Matter_en.srt5.3 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/003 Choosing Good Names_en.srt6.8 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/004 Casing Conventions & Programming Languages_en.srt4.7 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/005 Naming Variables & Properties - Theory_en.srt6.1 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/006 Naming Variables & Properties - Examples_en.srt7.7 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/007 Naming Functions & Methods - Theory_en.srt4.6 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/008 Naming Functions & Methods - Examples_en.srt5.3 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/011 Exceptions You Should Be Aware Of_en.srt10.7 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/012 Common Errors & Pitfalls_en.srt12.7 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/013 Demo Time!_en.srt17 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/014 Your Challenge - Problem_en.srt1.9 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/015 Your Challenge - Solution_en.srt16.8 KB
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/016 Module Resources.html91 B
[TutsNode.net] - Clean code/02 - Naming - Assigning Names to Variables, Functions, Classes & More/external-links.txt576 B
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/001 Module Introduction_en.srt1.6 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/002 Bad Comments_en.srt6.9 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/003 Good Comments_en.srt7 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/005 Vertical Formatting_en.srt14 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/007 Horizontal Formatting_en.srt6.1 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/008 Your Challenge - Problem_en.srt1.6 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/009 Your Challenge - Solution_en.srt10.9 KB
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/010 Module Resources.html91 B
[TutsNode.net] - Clean code/03 - Code Structure, Comments & Formatting/external-links.txt767 B
[TutsNode.net] - Clean code/04 - Functions & Methods/001 Module Introduction_en.srt1.8 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/002 Analyzing Key Function Parts_en.srt2.5 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/003 Keep The Number Of Parameters Low!_en.srt10.3 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/004 Refactoring Function Parameters - Ideas & Concepts_en.srt6.1 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/006 Two Parameters & When To Refactor_en.srt6.4 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/007 Dealing With Too Many Values_en.srt7.2 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/008 Functions With A Dynamic Number Of Parameters_en.srt4.4 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/009 Beware Of Output Parameters_en.srt7.2 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/010 Functions Should Be Small & Do One Thing!_en.srt17.9 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/011 Why Levels of Abstraction Matter_en.srt11.1 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/012 When Should You Split_en.srt4.5 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/013 Demo & Challenge_en.srt20.4 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/015 Splitting Functions To Stay DRY_en.srt8.7 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/016 Don't Overdo It - Avoid Useless Extractions_en.srt10.7 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/017 Understanding & Avoiding (Unexpected) Side Effects_en.srt19 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/018 Side Effects - A Challenge_en.srt15.2 KB
[TutsNode.net] - Clean code/04 - Functions & Methods/019 Why Unit Tests Matter & Help A Lot!_en.srt10.5 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/001 Module Introduction_en.srt4.5 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/003 Introducing Guards_en.srt5 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/004 Guards In Action_en.srt11.6 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/005 Extracting Control Structures & Preferring Positive Phrasing_en.srt4.8 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/006 Extracting Control Structures Into Functions_en.srt7.1 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/007 Writing Clean Functions With Control Structures_en.srt11.7 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/008 Inverting Conditional Logic.mp458.7 MB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/008 Inverting Conditional Logic_en.srt12.3 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/009 Embrace Errors & Error Handling_en.srt10.6 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/010 Creating More Error Guards_en.srt6.9 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/011 Extracting Validation Code_en.srt6.5 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/012 Error Handling Is One Thing!_en.srt5.3 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/013 Using Factory Functions & Polymorphism_en.srt13.5 KB
[TutsNode.net] - Clean code/05 - Control Structures & Errors/016 Module Summary_en.srt6.3 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/003 Objects vs Data Containers Data Structures_en.srt6.4 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/004 Why The Differentiation Matters_en.srt6.6 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/005 Classes & Polymorphism.mp491.8 MB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/005 Classes & Polymorphism_en.srt19.9 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/006 Classes Should Be Small!_en.srt9.7 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/007 Understanding Cohesion_en.srt7.6 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/008 The Law Of Demeter And Why You Should Tell, Not Ask_en.srt17.3 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/010 The Single-Responsibility-Principle (SRP) & Why It Matters_en.srt10.9 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/011 The Open-Closed Principle (OCP) & Why It Matters_en.srt8.5 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/012 The Liskov Substitution Principle_en.srt9.1 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/013 The Interface Segregation Principle_en.srt6.5 KB
[TutsNode.net] - Clean code/06 - Objects, Classes & Data Containers Structures/014 The Dependency Inversion Principle_en.srt10.9 KB
[TutsNode.net] - Clean code/07 - Summary & Checklist/001 Concepts Summary & Checklist_en.srt15.4 KB
[TutsNode.net] - Clean code/08 - Course Roundup/001 Staying Clean!_en.srt5 KB
[TutsNode.net] - Clean code/08 - Course Roundup/002 Possible Next Steps_en.srt4.7 KB

Alternative Torrents for 'Clean code'.

There are no alternative torrents found.