Configuring Linux Environment for Machine Learning Development
Development Tasks
Primary Task
Establish SSH connection with port forwarding and execute `hello_world.py`
10min
Optional Task 1
Execute fundamental Linux commands on the development machine
10min
Optional Task 2
Connect to development machine remotely using VSCode and ...
Posted on Mon, 13 Jul 2026 16:51:49 +0000 by kelliethile
Rocky Linux Post-Installation Setup and Customization Guide
Creating a Bootable USB Drive
Download the ISO from a local mirror, such as Alibaba Cloud, or the official site, wich automatically selects the fastest route.
When using tools like UltraISO, select RAW mode for writing the image to avoid many common issues.
Alternatively, write the USB on Linux:
sudo dnf install -y epel-release ntfsprogs ntfs ...
Posted on Sun, 12 Jul 2026 16:49:44 +0000 by hyperpcs
Structure and Setup of a ROS2 Workspace for Robot Development
A workspace in ROS2 serves as the central repository for organizing all development artifacts, including source code, configuration parameters, and scripts, for robot functionality. This structured directory facilitates systematic project management.
A canonical ROS2 workspace contains four primary subdierctories:
src (Source Space): Contains ...
Posted on Mon, 15 Jun 2026 16:10:20 +0000 by trulyafrican
Setting Up Python Environment on CentOS 7
Preserving Python 2
First, locate the Python installation and back up the Python 2.7 symlink.
# Navigate to home directory and find Python locations
cd ~
whereis python
# Check existing Python symlinks in /usr/bin
cd /usr/bin
ls -l python*
# Back up the python symlink
mv python python.backup
Downloading and Installing Python 3
Download Pytho ...
Posted on Wed, 03 Jun 2026 18:06:01 +0000 by usvpn
Vue 3 Project Setup: Environment Configuration and Common Issues
Project Initialization
This guide covers environment setup for Vue 3 projects on Windows, including Node.js configuration, build toolchain setup, and troubleshooting for common development errors.
Environment Setup
Node.js Installation
Download Node.js from the official distribution page:
https://nodejs.org/dist/v14.16.1/
To check your system ...
Posted on Sun, 10 May 2026 23:42:24 +0000 by foxtrotwhiskey
Installing the ROS Qt Creator Plugin on Ubuntu
Prerequisites
Update the package index and install required system dependencies:
sudo apt update
sudo apt install libgl1-mesa-dev ninja-build libyaml-cpp-dev libqtermwidget5-0-dev libutf8proc-dev
sudo apt install python3-pip
pip3 install pyyaml requests py7zr tqdm_loggable
Plugin Source Acquisition
Clone the plugin repository from GitHub:
git ...
Posted on Sat, 09 May 2026 11:05:29 +0000 by Daegalus