sudo apt-get autoremove
sudo du -sh /var/cache/apt
sudo apt-get autoclean
sudo apt-get clean
journalctl --disk-usage
sudo journalctl --vacuum-time=3d
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 cv2 | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from sklearn.neighbors import NearestNeighbors | |
#from scipy.optimize import leastsq | |
from scipy.optimize import fmin_bfgs | |
from scipy.optimize import minimize | |
from scipy.optimize import approx_fprime | |
def res(p,src,dst): |
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
ROS | |
* Print current environtment | |
printenv | grep ROS | |
* create workspace | |
mkdir -p catkin_ws/src | |
cd catkin_ws | |
catkin_make | |
source devel/setup.bash |
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
GIT | |
* start new git repository | |
echo "# quadrotor_sim" >> README.md | |
git init | |
git add README.md | |
git commit -m "first commit" | |
git remote add origin https://github.com/juanmed/quadrotor_sim.git | |
git push -u origin master |
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
When everythin fails... follow | |
https://websiteforstudents.com/how-to-install-jekyll-cms-on-ubuntu-16-04-18-04-18-10/ | |
Siguiendo el tutorial de Github para utlizar github pages: | |
- Instalar github-pages | |
$ gem install github-pages | |
- Entrar al directorio docs/ | |
- Ahi ejecutar | |
$ bundle update |
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
https://github.com/KirstieJane/STEMMRoleModels/wiki/Syncing-your-fork-to-the-original-repository-via-the-browser |
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
sudo ln -s /opt/ros/kinetic/lib/liborocos-kdl.so.1.3 /opt/ros/kinetic/lib/liborocos-kdl.so.1.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
After you have inserted your SD card into the slot open a terminal. Type | |
``` | |
sudo fdisk -l | |
``` | |
Hopefully your SD card should be listed as a drive and it should look something like this, | |
``` | |
Device Boot Start End Blocks Id System | |
/dev/sdb1 3 2112 3860480 b W95 FAT32 |
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
https://github.com/java311/Bee-vision/blob/c8c8f5a6efd2d6c3ab39ef73e5b6f4d65abbfd42/real-sense/myRawAlign.py | |
https://github.com/opencv/opencv_contrib/issues/2234 |
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
from pycocotools.coco import COCO | |
import numpy as np | |
import matplotlib | |
matplotlib.use('TkAgg') | |
import matplotlib.pyplot as plt | |
from matplotlib.patches import Rectangle | |
import pylab | |
import cv2 | |
import shutil | |
import os |
OlderNewer