Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

ALL Articles

Setting up multipath in Linux

Multipathing in Linux is offered by DM-Multipath. This article describes how to configure DM-Multipath

How to send PowerShell output to a text file

Learn how to redirect PowerShell output to a file. Comprehensive guide to using the Out-File cmdlet and redirect output to text file using redirect operators

Configure and manage Windows 10 IoT Core device using SSH

How to connect your Windows 10 IoT core device using SSH (Secure SHell). Also contains a list of frequently used windows commands for administration.

Configuring external NTP on Windows 2012 Domain Controller

How to configure a external NTP source on Windows 2012 PDC Emulator

How to check a number is prime or not in C

This is a C program to check if a number is prime or not

C# Console App to Record and Playback Mouse Movements

Here is a simple C# console application that uses Win32 API function calls GetCursorPos and SetCursorPos to record and playback mouse movements.

VB.Net : Prevent user entering text not in a combobox list

How to prevent users from entering text in a VB.net combobox that does not exist in the dropdown list.

Track clicks on links using Google Universal Analytics

How to track clicks on external links, images, videos, ads etc. using event tracking feature of Google Universal Analytics

Defining custom Config Item classes in OTRS CMDB

There are five types of configuration items (CIs)available in OTRS by default. This article shows you how to create a custom Config item class in OTRS.

Java program to print N Fibonacci numbers using recursion

Java program to print the first N Fibonacci numbers using the recurssive method. This is a popular question for Java and C programming interviews