CRUD Operations in Asp.net Core MVC
| | | | | | | |

CRUD Operations in Asp.net Core MVC

Yes, I’d say a large percentage of most applications I’ve worked on is basic CRUD(Create, Read, Update, Delete) operations. Especially In an Admin Panel, you need to repeat the CRUD Operations for every object in your system. For creating beautiful & responsive UI, I’m using AdminLTE Template. So, In case if you missed Setting up AdminLTE in Asp.net…

Auto Generated Json Deserialization With Json Annotation In Flutter
| |

Auto Generated Json Deserialization With Json Annotation In Flutter

If you’re coming from an Android background like me then you’ve probably missed those POJO classes in Flutter. I believe the developers who do app development in flutter will encounter such problems. After requesting data from the server, the server will often return a json string and if we want to use data flexibly, we need to convert…

10 Simple Rules For Best Programming Practices/Tricks
| |

10 Simple Rules For Best Programming Practices/Tricks

Have you ever 🤔 thought about how do you write code after spending many years in programming? Yes! I know all of us of think that we write efficient and readable code. But I mean really we do? The goal of this article is to list out a few good programming practices that I think…

Setting up Admin Template in Asp.net Core MVC
| | |

Setting up Admin Template in Asp.net Core MVC

In this part of the tutorial, we’re going to Setup AdminLTE Template in an Empty Asp.net Core MVC Project. This is the 3rd Part of Admin Panel Tutorial Series. Choosing Template for Admin Panel Creating a Database Setup AdminLTE Template in Asp.net Core MVC project Creating Models Login Page for Admin Panel CRUD(Create, Read, Update, Delete) Operations Creating…

Creating Admin Panel in Asp.net Core MVC – Step by Step Tutorial
|

Creating Admin Panel in Asp.net Core MVC – Step by Step Tutorial

Hey Guys! This is the very first Article on Creating Admin Panel in Asp.net Core MVC. We’ll divide this tutorial into parts & will cover almost every necessary & required feature of the Admin Panel. Check out this Demo Application till Part 1 to 7. Role-Based Authorization will have separate code available. If you are going…

RecyclerView Loading With Facebook Shimmer Effect Android Example
| | |

RecyclerView Loading With Facebook Shimmer Effect Android Example

As an Android user and developer, I am always attracted to great apps with nice and meaningful animations. To me, such apps not only deliver great features to make their user life easier but also their experience to the next level from the team behind them. I often really like those animation and also try…

Notification Channel Utility Class For Android Notifications

Notification Channel Utility Class For Android Notifications

Android Oreo 8.0 has been around for a while, offering so many new features like Notification Bar Style, Battery Life Optimization, Automatic Adjustment of TextView, Downloadable Fonts & Emotions, Adaptive Icons and many more. Now in this post, we specifically look at one of exciting feature which is Notification Channels.  If you want to cover the…

Canceling Nested Kotlin Coroutines With CoroutineScope
| | | | |

Canceling Nested Kotlin Coroutines With CoroutineScope

Coroutines are one of the 😍 nicest language features in Kotlin. They provide a rather headache-free way to use the power of concurrency in your Kotlin program. I was very excited when I started playing around with them but eventually came across a problem: what if you have nested coroutines (like a parent-child coroutine). For instance,…