Table of Contents
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
| # command: source | |
| # Allow autocomplete for conda environments | |
| _complete_source_activate_conda(){ | |
| if [ ${COMP_WORDS[COMP_CWORD-1]} != "activate" ] | |
| then | |
| return 0 | |
| fi | |
| local cur=${COMP_WORDS[COMP_CWORD]} | |
| COMPREPLY=($(ls ~/anaconda3/envs | xargs -I dirs bash -c "compgen -W dirs $cur")) |
-
Open Terminal
Ctrl+Alt+TDownload Firefox Developer Editiontar filewget https://download.mozilla.org/?product=firefox-aurora-latest-ssl&os=linux64&lang=en-US -
Copy tar file to
optsudo cp -rp firefox-35.0a2.en-US.linux-x86_64.tar.bz2 -
Open
optfolder (cd /opt/) and untar filesudo tar xjf firefox-35.0a2.en-US.linux-x86_64.tar.bz2
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
| figlet "I've got something to say" | |
| figlet -f thick "Make Tech ASCIIer" | |
| date | figlet -f basic |
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
| <launch> | |
| <!-- | |
| To distinguish between the cases where the rgb image is | |
| 1280x1024 versus 640x480. This affects the pipeline. | |
| --> | |
| <arg name="high_res_rgb" default="true"/> | |
| <arg name="cloud_input_ns" value="camera/rgb_downsampled" | |
| if="$(arg high_res_rgb)"/> | |
| <arg name="cloud_input_ns" value="camera/rgb" unless="$(arg high_res_rgb)"/> |
NewerOlder