CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Outlook Add-In : Creating a Simple Add-In Using C#

I am really excited to write this Article, on Microsoft Office Object Model. To extend the functionalities of Microsoft Office Applications (like Excel, Word, etc.,) Microsoft has provided Office Object Model. Let me give a brief introduction to Microsoft Office Development. Microsoft has provided Object Models to allow to extend the functionalities of Microsoft Applications. These […]

AWS : Creating a Virtual Machine with EC2

Through this article, I am going to explain the steps required to create the Virtual Machine with EC2 from AWS (Amazon Webservice) Management Console. Assuming you have the account to use AWS Management Console. Step 1. Log in to “AWS Management Console”. Step 2. Under the Build Solution group, click on the “Launch a virtual […]

Linux – An introduction to inodes

In Linux, file system is uses i-nodes called index nodes to keep the information of the files or directories. Each file or directory in Linux file system has an associated inode. Each inode is unique. Depending on the file system setup, we can have maximum number of inodes. inode is nothing but a structure to […]

C# : Getting files from the Directory

In this Article we will discuss how to get or fetch the files from the Directory or Folder using C#. There are multiple functions we can use to fetch the files from the Directory. One of it is, and the simple one is, GetFiles method from the Directory class. The Syntax of GetFiles method looks […]

Spring Framework – Dependency Injection

What is Dependency Injection? Dependency Injection is a concept used to eliminate dependencies from Java classes to make them easy to maintain and test. In the Spring Framework, Inversion of Control (IoC) is used to achieve dependency injection. Before moving any further into the topic, let’s understand what is a dependency. What is a Dependency? […]

Scroll to top