Stories Worth Reading

Ideas that inspire,
code that delights.

Discover thoughtful articles, tutorials, and perspectives from developers who love what they build.

5+ Stories
43 Topics
Ideas

Recent Stories

J
Joynal Abedin in

Struct VS Class

When we need to decide how to store data and model behavior, there are two choices: Classes and Structs. In this article, I will explain what's the difference between them: [caption id=\"\" align=\"aligncenter\" width...

3
Struct VS Class
J
Joynal Abedin in

App Localization in Swift

In this article, you’ll learn how to prepare your App to support multiple languages, including resources translation How to Localize your iOS App? Localizing your App is not just adding support of translation. It inclu...

3
App Localization in Swift
J
Joynal Abedin in

C# Properties, Class & Method

A property is like a combination of a variable and a method, and it has two methods: a get and a set method: C# also provides a way to use short-hand / automatic properties, where you do not have to define the field f...

3
J
Joynal Abedin in

Operation & OperationQueue

Operations are an object-oriented way to encapsulate work that you want to perform asynchronously. Operations are designed to be used either in conjunction with an operation queue or by themselves Operations State An o...

5
Operation & OperationQueue