Install private package with composer

install private package with composer

Most of the PHP framework now a day uses private packages from repositories using a Composer. To install a private package with the composer, we need to set the additional configuration for our composer.json file. Then we need to generate an SSH key and register it to our existing Git Repository. Just follow the steps … Read more

How do I install Visual Studio offline?

The latest version of Visual Studio removed the availability to download an offline installer. Instead, they offer to download a layout of the installer if you have unreliable network environments or no internet at all. Basically, this method is to create a copy of the installer itself, selecting the specific tools you need. This article … Read more

Read text from PDF using iTextSharp

Read text from PDF using iTextSharp

Read text from PDF using iTextSharp – I started my day searching for a solution on how to read PDF files, and finally, I was able to search for a solution. Here is a solution from stack overflow.I am posting this to help readers from this blog who have also searched for this problem. Credit … Read more

Categories C#

ASP.Net SignalR Real-Time Chat Application

SignalR Chat App With ASP.NET

This article will show you an actual ASP.Net SignalR Real-Time Chat Application. This project’s main goal is to have an idea of how we can use SignalR in a real-time web application. As stated on this site https://www.asp.net/signalr: “ASP.NET SignalR is a library for ASP.NET developers that makes developing real-time web functionality easy. SignalR allows … Read more

AngularJS with Asp.Net MVC

AngularJS

What is Angular? AngularJS is a JavaScript framework that extends HTML attribute to help develop a dynamic Web application. AngularJS with Asp.Net MVC Definition of Angular JS from its Official Page: AngularJS is a structural framework for dynamic web apps. It lets you use HTML as your template language and lets you extend HTML’s syntax … Read more