Design Patterns in Swift: Singleton

What is Singleton Singleton is a pattern that creates a single instance of a type for the entire application, usually in a global scope (with visibility from any place in the code). The idea ...
0 Read More

Code Smell 294 - Implicit Return

Code Smell 294 - Implicit Return
Your language adds clever features. Making YOU more obsolete TL;DR: Overusing implicit returns makes your code harder to read and debug. Problems šŸ˜” Reduced readability Hidden logic and un...
0 Read More

Building a MCP server in Swift

The Model Context Protocol (MCP) is one of the most exciting emerging concepts, extending LLM capabilities to interact with real-world data and tools. For Apple platform developers, building an MCP se...
0 Read More