CodeSteps

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

PowerShell – How to get network adapter details?

PowerShell provides a bunch of cmdlets through the NetAdapter module to manage network adapters. Through this article, we are going to discuss how we get the network adapter details, properties, etc, using PowerShell cmdlet(s). Get-NetAdapter is to get the details/properties of the network adapter. The below command shows the basic details of the network adapter. PS […]

PowerShell – How to unzip files?

In our previous article, we have discussed about zip / compress the selected files or directories using PowerShell Compress-Archive cmdlet. Through this article, we are going to discuss how to unzip the zipped files. Expand-Archive cmdlet – Unzip files from Archived file(s) PowerShell provides Expand-Archive cmdlet to unzip the zipped files. Through its -Path argument […]

Powershell – How to zip / compress / archive selected files or directories?

Windows PowerShell provides commands to zip (compress) and unzip the files. Through this article, we are going to discuss the PowerShell command to zip the selected files or directories. Compress-Archive cmdlet – Compress / Zip / Archive the selected files or directories PowerShell provides Compress-Archive cmdlet, to archive the specified files or directories. We can […]

Microsoft Visio – How to enable or disable hardware graphics acceleration?

Hardware acceleration is used to improve performance, to enable to use of the hardware for particular tasks instead of performing the tasks through software. Hardware graphics acceleration is used to perform the graphics-related activities through the hardware; instead of the software. Microsoft Office applications use hardware acceleration to enable to improve the performance of the […]

Load Balancing Pattern – Understanding the mechanism of Load Balancing in Cloud Computing

As information technology grows, and for that raison cloud computing has emerged as a main option for developers in developing a high-performance applications. Throughout time cloud technology has known an increased use of cloud infrastructure which led to implementing a load balancing mechanism in order to optimize the use of resources and improve performance for […]

Microservice Architecture – Service Discovery Pattern

Through this article we’re going to discuss, one of the most vital components of a microservice architecture, which are Service Discovery and Service Registry. Let’s starts with an Introduction In a traditional monolithic architecture, as the complexity of building an application can increase over time. Using auto-scaling feature cannot be a breeze because this type […]

Microservices – Understanding Microservices Architecture

In this article, we’re going to discuss; the Microservices Architecture, compare Monolithic vs Microservices Architectures and learn when to opt for a Microservices Architecture. But, before start this topic, I want to shed some light on the Layered Architecture. What’s a Layered Architecture? Layered Architecture is a pattern used to build web applications despite of […]

Scroll to top