10 new features or treasures in Java 11 | JDK 11

10 new features or treasures in Java 11 | JDK 11

There are a few 🏆 treasures that have been added as a part of JDK 11 and help developers to minimize coding efforts. Some of them you definitely know such as responsive Http2/API, you can run the source code directly without compiling. However, have you tried extensions of common classes such as String, Optional, Collections…

Android Cab Booking App Tutorial Part 2
| | | |

Android Cab Booking App Tutorial Part 2

This article is the second part of the series, Frisbee an Android cab booking app tutorial. If you did not read the previous one, you can start here. Previously in Android cab booking App In the previous pit stop, we had our discussion on GoogleMaps, Marker Animation and on Reverse Geocode. We learned how to show GoogleMaps,…

Top 10 .Net Core Features You need to know
| | |

Top 10 .Net Core Features You need to know

.Net Core is a lightweight and cross-platform version of the DotNet framework and the awesome thing is Developers required the same expertise to work with Asp.Net Core as .Net Framework. With Every Update, new features are added that help developers deploy high-performance & highly scalable web applications using less Code. Are you a Web Developer or want to Develop an app for Desktop…

Keep An Eye On Android Layout Performance Optimization | Rendering
|

Keep An Eye On Android Layout Performance Optimization | Rendering

Layout Performance Optimization is always a tricky business. Having a good, high-performance code is great. So, how can you write a good app? In a word to answer this question: details are always important. Today we will talk about how to improve Android application performance. Optimizing your layouts fairly early in the development process is one easy…

Everything you need to know about using Google Maps in Cab Booking App (Part 1)
| | | |

Everything you need to know about using Google Maps in Cab Booking App (Part 1)

Hey, Android Developers! I would like to share my experience with you guys when I got to make Cab booking application. I learn a lot during the development of this application. The following are the features which we’re going to discuss in this article: Show GoogleMaps. Animate multiples marker simultaneously on GoogleMaps. Calculate the distance…

Creating Interactive Dashboards in Asp.net Core MVC
| | | | | | |

Creating Interactive Dashboards in Asp.net Core MVC

Dashboards used to represent Application’s Data. Actually one of the main purposes of a Dashboard is to give an overview of the complete application. In Applications like Admin Panel, Dashboards should be Powerfull enough to give a complete summary of your Apps running in a real-time environment. Here’s my Tutorial, If you’re interested in Dynamic User-defined Dashboards using Asp.Net…

Dynamic Role Based Authorization Asp.net Core | Assign Role from DB
| | | |

Dynamic Role Based Authorization Asp.net Core | Assign Role from DB

Often times, after you’ve authenticated your user, now you want to authorize what he actually has control over based on his role. A user should only have access for what he’s authorized to control. In Applications like Admin Panel where your Application is being managed by multiple users, you must manage your users according to…

Deep Dive Into Kotlin Conventions | Get | Set | In | RangeTo
|

Deep Dive Into Kotlin Conventions | Get | Set | In | RangeTo

We all know, Kotlin use the principle of a convention, instead of relying on types of  Java does, because this allows developers to adapt existing Java classes to the requirement of Kotlin language features. The set of interfaces implemented by a class is fixed, and Kotlin can’t modify an existing class so that it would implement additional interfaces. What…

User’s Activity Logging in Asp.net Core MVC Application | C#
| | | |

User’s Activity Logging in Asp.net Core MVC Application | C#

In this Article, I’m going to Implement User’s Activity Logging in Asp.net Core MVC Application. If an application is managed by more than one users then you must be aware that who is performing which activity. Why Activity Logging Before start Implementation, you must have a clear idea for what kind of applications Activity Logging is necessary….

Playing With Kotlin Coroutines For Best Practices | Example
| | | |

Playing With Kotlin Coroutines For Best Practices | Example

There are so many articles and talks out there which focused on what Kotlin Coroutines are and why, conceptually, they are useful. So, in this article, we’re not gonna see what Coroutines are instead of seeing some practical examples of how to use them…? Theory without practice is empty; practice without theory is blind. 1….