Artturi Jalli

I'm an entrepreneur and a blogger from Finland. My goal is to make coding and tech easier for you with comprehensive guides and reviews.

5+ Useful Tools and Resources for Developers (Updated 2023)

Hi friend! When it comes to software development, there is a lot of wonderful tools that can boost your performance and increase productivity. To save you from the hassle, I have collected a list of tools and resources I personally use. Disclaimer: This post contains affiliate links to products I use and recommend. I may receive a

5+ Useful Tools and Resources for Developers (Updated 2023) Read More »

Classes in Swift

In Swift, you can implement custom types using classes. A class acts as a factory for creating objects. For example, let’s create a Fruit class and two Fruit objects: This is the quick answer to what is a class in Swift. But if you are unfamiliar with classes, there is so much more to learn.

Classes in Swift Read More »

Structs in Swift

In Swift, you can implement custom types using structures. A structure acts as a factory for creating objects. For example, let’s create a Fruit structure and some Fruit instances of it: This is the quick answer for what is a structure in Swift. However, if you are unfamiliar with structures, there is so much more

Structs in Swift Read More »