lsblkand check the mount point, e.g.,/dev/sdawhich might have different partitions like/dev/sda1etcsudo umount /dev/sda*. Usesudo umount -l /dev/sda*if something refuses to unmountsudo fdisk /dev/sdato delete all partitions one-by-one:- Press
pto print the current partitions - Press
dto delete each partition (repeat for all). - Press
wto write changes and exit. - HINT: just keep doing
duntil you getno partitions remaining to be deleted, then dowand exit.
- Press
sudo parted /dev/sda mklabel gptto create a new GPT partition tablesudo parted -a optimal /dev/sda mkpart primary 0% 100%creates a new parition (/dev/sda1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Variable name | Variable value | Description | |
|---|---|---|---|
| BAZEL_SH | C:\msys64\usr\bin\bash.exe | allows Bazel to access msys64 | |
| BAZEL_VC | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC | allows Bazel to access Visual C++ compiler | |
| BAZEL_WINSDK_FULL_VERSION | 10.0.17763.0 | lets Bazel know the correct Windows SDK version to use |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| absl-py >= 0.7.0 | |
| astunparse == 1.6.3 | |
| gast == 0.3.3 | |
| google_pasta >= 0.1.8 | |
| h5py >= 2.10.0, < 2.11.0 | |
| keras_preprocessing >= 1.1.1, < 1.2 | |
| numpy >= 1.16.0, < 1.19.0 | |
| opt_einsum >= 2.3.2 | |
| protobuf >= 3.9.2 | |
| tensorboard >= 2.2.0, < 2.3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import warnings | |
| warnings.filterwarnings('ignore', category=FutureWarning) | |
| import tensorflow as tf | |
| text = tf.constant("Successfull Installation") | |
| with tf.compat.v1.Session() as sess: | |
| print(sess.run(text)) |
- completely format your external ssd into ntfs using your gist's instructions
- install virtual box on ubuntu host (get the deb for the latest virtualbox from official site)
- check the box for guest additions install
- install vbox extensions pack from official site. Then Tools -> EXtensions -> Install, to install that.
- add your user to vboxusers group (this allows usb sharing access inside machine)
- setup a win10 machine on virtualbox
- add the external ssd to the shared device inside the USB tab of machine settings
- install halseo wintousb tool in it
- get the win10 iso by going to "download win10 iso", downloading that tool, getting the iso file
A Python script to automatically scrape vLLM serve command documentation and generate a clean YAML configuration file with all available flags and their default values.
- π Auto-scrapes latest vLLM documentation
- π§Ή Clean parsing - removes symbols, handles multiple flag variants
- π YAML output with inline comments and descriptions
- π Progress bar with rich library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.5) | |
| project(minimal_tf_broadcasters) | |
| find_package(ament_cmake REQUIRED) | |
| find_package(rclcpp REQUIRED) | |
| find_package(geometry_msgs REQUIRED) | |
| find_package(tf2 REQUIRED) | |
| find_package(tf2_ros REQUIRED) | |
| find_package(tf2_geometry_msgs REQUIRED) |