Fading Coder

One Final Commit for the Last Sprint

Resolving CUDA_ILLEGAL_INSTRUCTION and Event Polling Errors with tf.one_hot on Windows GPU

Exceuting standard TensorFlow operations on a Windows system equipped with an NVIDIA GPU can trigger specific runtime failrues. A common scenario involves the following crash logs: 2019-04-02 09:50:47.986024: I C:\users\nwani\_bazel_nwani\swultrt5\execroot\org_tensorflow\tensorflow\core\common_runti...

Installing and Configuring MongoDB on Windows

Obtaining the Installation Package Head to the MongoDB Community download page and choose the MSI installer for Windows. Running the Installer Launch the downloaded MSI and follow these steps. When the setup type selection appears, pick the Custom option so you can specify the installation path—for...

Identifying and Resolving Port Usage Conflicts in Java Applications on Windows

Identifying Port Usage in Java Applications When a Java application fails to start due to a port conflict, it is necessary to identify wich process is occupying that port. This can be done using built-in Windows command-line tools or third-party applications. Using Command-Line Tools The netstat com...

Implementing Process Creation and Termination Monitoring in Windows Kernel Drivers

Process Notification Callback Implementation The implementation involves three primary components: defining the callback function, registering it, and unregistering it. #include <ntddk.h> // Callback prototype declaration VOID ProcessNotificationCallback( _Inout_ PEPROCESS Process, _In_ HANDLE...

Running Ubuntu Through WSL on Windows: Essential Commands and Tool Setup

WSL Command Reference wsl # Launch Ubuntu shell wsl --list # Show installed Linux distributions wsl --shutdown # Terminate all Linux instances wsl -l -v # Display version and state of each distribution Core Linux File Commands Directory Navigation cd /home/user # Navigate to specified home directory...

Installing and Configuring MySQL 5.7 on Windows

1. Donwload the Distribution Obtain the MySQL 5.7 ZIP archive from the official site: https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.33-winx64.zip 2. Extract the Archive Unzip the downloaded file into a directory without spaces (for example, C:\mysql). The folder structure should contain bin, da...

Installing West Tool on Windows for Zephyr Development

West serves as the official command-line utility for the Zephyr Project, facilitating source code management and dependency handling. This tool enables developers to download, update, and build Zephyr-based projects efficiently. Python Installation West requires Python 3.6 or later. Verify your Pyth...

Configuring External SSH Access to WSL on Windows

Installing OpenSSH in WSL Begin by reinstalling OpenSSH server in your WSL instance: sudo apt-get remove openssh-server sudo apt-get install openssh-server Modify the SSH server configuration: sudo vi /etc/ssh/sshd_config Update these crtiical parameters: Port 22 PermitRootLogin Yes PasswordAuthenti...

Windows Installation Guide for VMamba with CUDA Acceleration

Repository Setup Begin by retrieving the official VMamba source code using Git: git clone https://github.com/MzeroMiko/VMamba.git cd VMamba Environment Configuration Establish a dedicated Conda environment. The following configuration utilizes Python 3.10 and CUDA 11.8, which ensures compatibility w...

Adapting a Selenium Web Scraper for Windows Environments

To run the web scraping script on a Windows operating system, specific environment configurations are required. Begin by installing the Selenium bindings via the Python package manager. pip install selenium Verify the installation by attempting to import the module in a Python shell. No errors shoul...