Skip to content

Instantly share code, notes, and snippets.

View aleksejalex's full-sized avatar

aleksejalex

View GitHub Profile
height width layers folds length clamps weight_distrib max_num_of_batteries support_length
3.5 4.5 1 5 24.5 0 0 8 2.5
3.5 4.5 1 5 24.5 0 1 8 2.5
3.5 4.5 1 5 24.5 1 1 8 2.5
3.5 4.5 1 5 24.5 1 0 4 2.5
3.5 4.5 2 5 24.5 0 1 25 2.5
3.5 4.5 2 5 24.5 0 0 16 2.5
3.5 4.5 2 5 24.5 1 1 28 2.5
3.5 4.5 2 5 24.5 1 0 13 2.5
3.5 4.5 1 3 24.5 0 1 26 2.5
@aleksejalex
aleksejalex / su2_cv2_dcv.ipynb
Last active November 7, 2023 23:08
su2_cv2_dcv.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aleksejalex
aleksejalex / pip_upgrade_all.sh
Created October 25, 2023 17:53
simple terminal script to update all pip-packages that are installed (works perfectly inside PYENV ! )
#!/bin/bash
# List outdated Python packages
outdated_packages=$(pip list --outdated)
if [ -z "$outdated_packages" ]; then
echo "No outdated packages to upgrade."
else
echo "Upgrading packages..."
pip list --outdated --format=columns | tail -n +3 | cut -d" " -f1 | xargs -n1 pip install --upgrade