Dependency Injection
Architecture
1 Feb 2022
Dependency Injection allows us to create more maintainable code which is easier to test.
Architecture
1 Feb 2022
Dependency Injection allows us to create more maintainable code which is easier to test.
Swift
19 Jan 2022
Map, filter and reduce allow you to manipulate sequences. You iterate of a list of items and perform an action on each of those items.
Tooling
19 Jan 2022
Linting is the automated checking of your source code to flag programming errors, bugs, stylistic errors, and suspicious constructs. SwiftLint is a linter specifically for Swift code. But how do you use it?