Satish Kumar has Published 1032 Articles

Locate unused structures and structure-members

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:12:51

888 Views

Structures in programming languages like C and C++ are a collection of related data fields, which can be accessed and manipulated as a single entity. They are often used to group related data items into a single variable, making it easier to manage and work with complex data structures. However, ... Read More

Linking with x86 shared library on Linux x64

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:09:38

450 Views

Introduction Dynamic Link Libraries, also known as Shared Libraries, are collections of compiled code, data, and resources that can be loaded and executed by an application at runtime. Shared libraries are commonly used in development of Linux applications, and are an integral part of x86 architecture. In this article, we ... Read More

How to make a USB device multi-touch enabled

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:08:10

1K+ Views

In recent years, touch technology has become increasingly popular, with smartphones, tablets, and laptops offering capability to interact with devices by simply tapping or swiping screen. However, what if you could use touch technology on your computer using a USB device? This is where concept of multi-touch enabled USB devices ... Read More

Corrupt stack problem in C, C++ program

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:05:25

3K+ Views

Introduction The corrupt stack problem is a common issue that programmers encounter while developing software in C and C++ programming languages. This problem can arise due to a wide range of reasons and can cause severe problems in functioning of program. In this article, we will explore corrupt stack problem ... Read More

Who called my DBus API in Linux system

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:02:10

675 Views

Introduction DBus is a widely used message bus system that facilitates communication between different software applications on Linux operating systems. It is used for inter-process communication (IPC) and allows applications to communicate with each other, even if they are running in different contexts. However, it can be difficult to determine ... Read More

Is it possible to share a Cuda context between applications

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:01:10

878 Views

Introduction CUDA is a parallel computing platform and programming model created by Nvidia. It allows developers to use a CUDA-enabled graphics processing unit (GPU) to accelerate processing tasks in their applications. A CUDA context is a software environment that manages memory and other resources required by a CUDA application. A ... Read More

How to run long time process on Udev event

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 15:00:11

2K+ Views

Introduction Udev is a device manager used by modern Linux systems. It detects hardware changes and manages device nodes in /dev directory. Udev provides a flexible way to run scripts or programs in response to device events. This feature can be used to perform various tasks like automounting, launching backup ... Read More

Find Unused Fields in Simulink Structure Variables

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 14:59:23

359 Views

Introduction Simulink is a popular tool used for modeling and simulating dynamic systems. In Simulink, structure variables are used to store and organize data for easy access and manipulation. However, it is not uncommon for structure variables to contain unused fields, which can make code unnecessarily complex and hard to ... Read More

Mechanism of clipboard of xwindow

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 14:58:30

393 Views

Introduction X Window System, commonly known as X11 or simply X, is a windowing system for bitmap displays. It was initially designed in mid-1980s to run on Unix-like operating systems. X Window System has a fundamental concept of a clipboard, which is used to transfer data between applications. In ... Read More

Bash Terminal Redirect to another Terminal

Satish Kumar

Satish Kumar

Updated on 03-Mar-2023 14:58:03

3K+ Views

Introduction The Bash terminal is a powerful tool for interacting with a computer's operating system. One of essential features of Bash is ability to redirect output from one terminal to another. This can be useful in many situations, such as when you want to monitor output of a command in ... Read More

Advertisements