Skip to content

Instantly share code, notes, and snippets.

View AnimeAllstar's full-sized avatar
🇨🇦

Asad Dhorajiwala AnimeAllstar

🇨🇦
View GitHub Profile
@bolshakov
bolshakov / gist:2240761b9280110bb2da
Last active July 3, 2023 14:11
SOLID Code Smells

Single Responsibility

A class should have one, and only one, reason to change.

  • Large Class
    • You can't easily describe what the class does in one sentence.
    • You can't tell what the class does without scrolling.
    • The class needs to change for more than one reason.
    • The class has more than seven methods.
    • The class has a total flog score of 50.
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 28, 2024 03:34
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites