Useful lsof Commands and Switches – Linux

lsof command in Linux: lsof is one of the most powerful tool for all sysadmins to check and analyze processes running on your Linux server. This gives a detailed information about processes running on the server, path to the executables and other library files the process is calling. In other words, it gives a list… Read More »

How to Use lsof Command in Security Analysis – Linux

Hi all, Server security is very important when we run important applications or websites on servers. As a Linux systems administrator enhancing security or finding intruders, hackers etc and block them from taking or destroying our data is inevitable. Security features can be added, there are many applications, tools for this which can alert us… Read More »

AngularJS Dependency Injection

The dependency injection (DI) in angularjs is an important application design pattern. The dependency injection implements inversion of control for resolving dependencies and also it is a software design pattern. AngularJS provides a supreme dependency injection mechanism. AngularJS contains the following core types of objects and components: Value Factory Service Provider Constant Value The value… Read More »

AngularJS – Services

The service will helps to fetch data from the database when to share the data between controllers. If we store the data inside a controller, once we change to another controller the data will be discarded. AngularJS has 30 built in services. Types of Services in AngularJS Built-in Services: The angularjs has inbuilt services. That’s… Read More »