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

Activity Rings in WatchOS using SwiftUI

We will make this below UI View. Step_01: Click Xcode then choose Create New Project... Step_02: Then select from WatchOS segment App. If you are already running Xcode, then choose File->New->Project. Then clic...

63
J
Joynal Abedin in

Searching & Filtering data in ASP.NET Core 7.0

Now i will implement searching api method. If user given text matched with database value then api will reture these array types of values. Step_01: namespace RootCRUDAPI.Interfaces.Manager { public interface ICoffeeM...

63
J
Joynal Abedin in

Get data list from database server in Get API

Step_01: First of all, i need to create DbContext file. Then we will create Controller from where we will fetch data; namespace RootCRUDAPI.Data { public class CoffeeDbContext: DbContext { public CoffeeDbContext(Db...

71