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

Migrations in ASP Dot Net Core

In ASP.NET Core MVC, \"migration\" refers to the process of updating your database schema to reflect changes in your Entity Framework Core (EF Core) data model. This involves creating, applying, and managing changes to t...

5
J
Joynal Abedin in

Git configure & terminal command for mac

1. Terminal command Show folder list: ls Enter any folder directory: cd folder_name Create new folder: mkdir foler_name Back from current directory to previous directory: cd .. Delete file: rm file_name Delete fol...

4
J
Joynal Abedin in

NotificationCenter in swift

A notification dispatch mechanism that enables the broadcast of information to registered observers.-----Apple NotificationCenter in Swift is a mechanism for broadcasting information within a program. It allows objects...

4
J
Joynal Abedin in

Commenting in Swift

In Swift, comments are used to add notes or explanations within the code, making it easier to understand. Swift supports two types of comments: single-line and multi-line comments. Here's a detailed explanation of both: ...

4