Posts

How to surf the web to find motivating and insightful content

  “ Wow! This was so cool !” my friend says. “How do you even find these things?” I tell him that I got it from the newsletter of <so-and-so> website where people post interesting stuff. And the next question goes, “Well, but how did you find out about the <so-and-so> website?” And then I end up telling him about this person on Twitter whom I follow and how she tweets interesting things and how she is SO cool. “Okay but how did you find out about this person?” … And every time, the conversation comes to an abrupt end either because my friend stops asking further questions at the risk of seeming too dumb (and ends up giving me an unsatisfactory “Oh Wow” reaction) or because I fail to remember the exact source (and end up telling something along the lines of — “I just found it while… hmm… browsing on the Internet”). What I also want to say is that these cool webpages/people that I come across can come to anyone. But that sounds like patronizing. Not helpful. And I want to say

How to easily implement QRCoder in ASP.NET Core using C#

Image
   QRCoder ASP.NET Core Implementation QRCoder is a very popular QR Code implementation library written in C#. It is available in GitHub .  Here I am going to implement the QRCoder library to generate QR Codes in my ASP.NET Core application. I will also be using C#. I will implement QRCoder in 3 ways, which are: 1. Create QR Code Bitmap image for any text. 2. Create QR Code File (.qrr) for any text and then save these files in the application. 3. Read and display all the QR Code Files (.qrr). Let’s start with the Installation of QRCoder in ASP.NET Core Framework. You can download the full code from my GitHub Respositiory . Installation Install QRCoder via NuGet Package Manager. If you want to use NuGet, just search for “QRCoder” or run the following command in the NuGet Package Manager console: PM> Install-Package QRCoder The QRCoder will install in 1 minute and will be ready to use. Now let us start with the implementation of QRCoder in the 3 ways mentioned above. Create QR Code Bi