Blog

What is .NET Core vs .NET Framework

What is .NET Core vs .NET Framework

What is .net core vs .net framework. The first launch of .NET Framework was in 2002, and over the years, it grew a huge set of APIs. On the other hand, .NET Core was introduced in 2016. Short Intro: The .Net Framework is an immense and mature development platform to create Windows desktop, web, mobile, games, and IoT applications. .NET Core, on the other hand, is an open-source .NET platform that allows you to build cross-platform applications; So your apps can run on Windows, Linux, and Mac OS. We had the option to gain from the .NET Framework experience and…
Read More
I don’t need postman anymore! I use VS Code Instead

I don’t need postman anymore! I use VS Code Instead

We all use postman to send and test http requests. While coding at the same time we test the requests that we code. In the meantime to test our request or APIs we open post and switch between both of the Applications, postman and VS Code that is a separate headache. The new Postman update is very slow to load with complex user interface. It use a lot of ram as well that can slow the speed of pc and our productivity got hurt. So I have a solution for you guys. You don’t have to switch between postman and…
Read More
Type Checking in C#

Type Checking in C#

The purpose of this article is to introduce you to C# type checking. Using typeof, we can determine the type of built-in types such as int, float, etc, and user-defined types such as classes, interfaces, delegates, and structs. int num = 1; Employee emp = new Employee(); Console.WriteLine(typeof(Employee)); Console.WriteLine(typeof(int)); There is no way to pass user-defined type objects and built-in type variables through typeof. int num = 1; Employee emp = new Employee(); Console.WriteLine(typeof(emp)); // throws compile time error Console.WriteLine(typeof(num)); // throws compile time error The typeof function checks the type at compile time. User-defined type objects may be found…
Read More
Top 13 Most Valuable NFT Trading Cards 2022

Top 13 Most Valuable NFT Trading Cards 2022

Trading cards have always been valuable and used by traders. NFTs became popular in 2021 and people started to become interested in NFTs trading cards as well. So I have researched a lot about NFT trading cards and listed some of the most valuable NFT trading cards. What are some most valuable NFT Trading cards? NFT trading cards are not physical cards. You can easily trade them using your digital wallets. NFT trading cards are becoming more common among NFT enthusiasts, and some NFT trading cards allow users to earn while playing.  Here is the list of the most valuable…
Read More
How To Protect Yourself From NFT Fraud?

How To Protect Yourself From NFT Fraud?

Non-fungible tokens (NFTs) are one-of-a-kind digital assets that belong only to their owner and are stored on a blockchain or digital ledger. One may be thought of as a one-of-a-kind, collectible work of art that is simply saved on the internet. After achieving a market value of over $40 billion, this new cryptographic asset effectively captured the interest of online fans all over the world. As the popularity of NFT grew, so did the related scams, with Google searches for "NFT scams" reaching an all-time high in the first week of January 2022. You should be aware of the tactics…
Read More
Is It Too Late To Get Into NFTs Or Is It the Right Time?

Is It Too Late To Get Into NFTs Or Is It the Right Time?

If you are new to NFTs, you may be shocked at how such a piece of art can be so pricey. You might have a question, is it too late to get into NFTs? It is not too late to get into NFTs, the blockchain technology is evolving day by day. The NFTs will take at least a decade to be adopted and accepted as normal. Most non-technical people are still unaware of NFT technology. So, it is the right time to get into NFTs.  In this post, I will answer this question in complete detail and provide you with…
Read More
What Is File Size Upload Limit In NFT Minting? Solution

What Is File Size Upload Limit In NFT Minting? Solution

Mostly NFT creators are interested in high-quality NFT creations like GIFs, HD resolution images, and animation videos. Because of their high quality, they have a large file size. If you are a creator, you might face file size upload limit in NFT Minting or errors when you try to upload these types of high-quality and big-sized NFTs. NFTs themselves do not have any restrictions on file type or size. However, the marketplaces we use to mint NFTs have their own rules and restrictions on file types and sizes. Most of the time in these marketplaces the file size upload limit…
Read More
Top NFT Trends To Profit From In 2022

Top NFT Trends To Profit From In 2022

Everyone wants to earn money from NFTs now a days. So they can earn while following their passion. Before you start doing anything into the NFTs space. You should know the top NFT trends to profit from. After spending two years in the web3 NFT world. I’m writing this post for the newbies so they can understand the top NFT trends to cash in on. In addition, they can avoid the mistakes that most beginners make. Without further ado, let's get started. Which type of NFTs are in top trends? This is the most asked question when someone starts their…
Read More
How to Send Emails ASP.NET Core 5 Using SMTP

How to Send Emails ASP.NET Core 5 Using SMTP

In this tutorial, we will learn How to Send Emails ASP.NET core 5 Web API Application using SMTP. If you want to set up a new ASP.NET Core Multi-tier Project click on this link and if want to configure Identity click on this. What is SMTP: SMTP is a "Simple mail transfer protocol" that allows applications to send emails. Like Gmail, office365, live, etc. Tools: Visual Studio Community 2019 Windows OS Create A Email Template Class that will hold the data that we want to send our user. public class EmailTemplate { public string From { get; set; } public…
Read More