Infragistics Blog

Create an IRC Bot Using Python 2
If you're unfamiliar with IRC (Internet Relay Chat) it is an application layer protocol used to facilitate chat with users all over the globe and has been around since the late 1980s and is still widely used to this day.

What I Learned After Using an SSH Honeypot for 7 Days
The idea of using a honeypot to learn about potential attackers came to me while chatting with a friend that had exposed his SSH port to log into while away from home.

Building a Real Time App With SignalR – Part 2
This post is in continuation of my previous post where we discussed the needs, basics, configurations and transport mechanism of SignalR. In this post we will take this a step further by creating a sample application and analyze it further.

Implementing the Repository Pattern in ASP.NET MVC App
The Repository Pattern is one of the most popular patterns to create an enterprise level application. It restricts us to work directly with the data in the application and creates new layers for database operations, business logic, and the application’s UI.

How to Create a Custom Action Filter in ASP.NET MVC
In ASP.NET MVC, Filters are used to inject logic at different levels of request processing and allow us to share logics across Controllers. Learn more.

Injecting Dependency in AngularJS Apps
A brief overview on passing dependencies in AngularJS using the function argument, array arguments, and the $inject service.

Understanding the Grid Layout in Bootstrap
In this post, we will cover various aspects of the Bootstrap Grid system with various examples. To start with let us create a four equal column layout for medium-sized devices in Bootstrap Grid system.

What Is a Provider in AngularJS?
The provider() function allows us to create a configurable service where we can set input per application for the service created using the provider ().

What Is UI Automation Testing & Why You Should Use It?
So, what is UI Automation testing? Well, let's start off with breaking it down, UI or User Interface, is the front end of your application that your users interact with on their screens.