Skip to content

Instantly share code, notes, and snippets.

View Koronaa's full-sized avatar
🏠
Working from home

Koronä Koronaa

🏠
Working from home
View GitHub Profile
@backslash-f
backslash-f / README.md
Last active January 14, 2025 19:01
Sample on adding repo images and shields.io badges on README.md files

Image that is in the repo:

![Key Mapping](https://github.com/backslash-f/ShockEmu/blob/master/KeyMapping.png)

Or by path:

![Storyboard](Images/xcode-storyboard.png)
@mjhassan
mjhassan / SOLID for dummies in Swift.md
Last active October 29, 2025 02:04
An easy and simple explanation of SOLID principles with Swift examples

Overview

SOLID represents 5 principles of object-oriented programming: Single responsibility, Open-closed, Liskov Substitution, Interface Segregation and Dependency Inversion.

These principles is to solve the main problems of a bad architecture:

  • Fragility: Unable to change.
  • Immobility: Unable to reuse, because of tightly coupled dependencies.
  • Rigidity: Single change affects several parts of the project.

Principles