Initial commit of files

This commit is contained in:
2021-01-22 10:13:40 -05:00
parent 7081dcecc5
commit 56aa3a219b
47 changed files with 2157 additions and 0 deletions

68
dot/bashrc Normal file
View File

@ -0,0 +1,68 @@
# NTCNA V2X development
# Python VirtualEnv
if [ -x /usr/local/bin/virtualenvwrapper.sh ]; then
VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
source /usr/local/bin/virtualenvwrapper.sh
fi
# Android Studio
if [ -d ~/android-studio ]; then
export PATH=$PATH:~/android-studio/bin
fi
# Marben ASN.1 compiler
if [ -d /opt/marben/asnsdk ]; then
export ASNSDK_TCE_DIR=/opt/marben/asnsdk/TCE-C_V61/Compiler
export PATH=$ASNSDK_TCE_DIR/bin:$PATH
fi
# ROS 1
if [ -f /opt/ros/noetic/setup.bash ]; then
# 20.04
source /opt/ros/noetic/setup.bash
PYTHONPATH=$PYTHONPATH:$HOME/catkin_ws/devel/lib/python3/dist-packages
elif [ -f /opt/ros/melodic/setup.bash ]; then
# 16.04/18.04
source /opt/ros/melodic/setup.bash
fi
# ROS 2
#if [ -f /opt/ros/foxy/setup.bash ]; then
# 20.04
# source /opt/ros/foxy/setup.bash
#fi
# ProbeStar C/C++ library
if [ -d /usr/local/cnomicon ]; then
export PATH=$PATH:/usr/local/cnomicon/bin:/usr/local/cnomicon/sbin
fi
# NTCNA V2X C/C++ library
if [ -d /usr/local/cvehicle ]; then
export PATH=$PATH:/usr/local/cvehicle/bin:/usr/local/cvehicle/sbin
fi
# ProbeStar Python classes
if [ -d $HOME/Pynomicon/classes ]; then
export PYTHONPATH=$PYTHONPATH:$HOME/Pynomicon/classes
fi
# NTCNA V2X Python classes (install pycrate), ROS path above
if [ -d $HOME/PyVehicle/classes ]; then
export PYTHONPATH=$PYTHONPATH:$HOME/PyVehicle/classes:$HOME/PyVehicle/classes/j2735
fi
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/anaconda3/etc/profile.d/conda.sh" ]; then
. "/opt/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/opt/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<

25
dot/unison/archive.prf Normal file
View File

@ -0,0 +1,25 @@
# Two root directories to sync.
# You can use ssh:// to sync over SSH
root = /home/neal/Archive
root = ssh://neal@babylon5.probestar.com:2829//home/neal/Archive
# If you want one-way mirroring from one replica to the other, specify the source replica using "force" as follows.
# force = /home/alice/sync_folder
# If you want Unison to run without any user input, try "batch" mode.
batch = true
# If you don't want to be prompted, and just accept Unison's recommendation:
auto = true
# Optionally, you can sync specific sub directories only (under the root).
# path = dir1
# path = dir2
# Optionally, you can ignore specific files or directories that are matched with regular expressions.
ignore = Name *.o
ignore = Name *~
# ignore = Path */temp/archive_*
# If you want to ignore difference in file props:
perms = 0

25
dot/unison/projects.prf Normal file
View File

@ -0,0 +1,25 @@
# Two root directories to sync.
# You can use ssh:// to sync over SSH
root = /home/neal/Projects
root = ssh://neal@babylon5.probestar.com:2829//home/neal/Projects
# If you want one-way mirroring from one replica to the other, specify the source replica using "force" as follows.
# force = /home/alice/sync_folder
# If you want Unison to run without any user input, try "batch" mode.
batch = true
# If you don't want to be prompted, and just accept Unison's recommendation:
auto = true
# Optionally, you can sync specific sub directories only (under the root).
# path = dir1
# path = dir2
# Optionally, you can ignore specific files or directories that are matched with regular expressions.
ignore = Name *.o
ignore = Name *~
# ignore = Path */temp/archive_*
# If you want to ignore difference in file props:
perms = 0

25
dot/unison/testing.prf Normal file
View File

@ -0,0 +1,25 @@
# Two root directories to sync.
# You can use ssh:// to sync over SSH
root = /home/neal/Testing
root = ssh://neal@babylon5.probestar.com//home/neal/Testing
# If you want one-way mirroring from one replica to the other, specify the source replica using "force" as follows.
# force = /home/alice/sync_folder
# If you want Unison to run without any user input, try "batch" mode.
batch = true
# If you don't want to be prompted, and just accept Unison's recommendation:
auto = true
# Optionally, you can sync specific sub directories only (under the root).
# path = dir1
# path = dir2
# Optionally, you can ignore specific files or directories that are matched with regular expressions.
ignore = Name *.o
ignore = Name *~
# ignore = Path */temp/archive_*
# If you want to ignore difference in file props:
perms = 0

25
dot/unison/xfer.prf Normal file
View File

@ -0,0 +1,25 @@
# Two root directories to sync.
# You can use ssh:// to sync over SSH
root = /home/neal/Nxfer
root = ssh://neal@babylon5.probestar.com:2829//home/neal/Nxfer
# If you want one-way mirroring from one replica to the other, specify the source replica using "force" as follows.
# force = /home/alice/sync_folder
# If you want Unison to run without any user input, try "batch" mode.
batch = true
# If you don't want to be prompted, and just accept Unison's recommendation:
auto = true
# Optionally, you can sync specific sub directories only (under the root).
# path = dir1
# path = dir2
# Optionally, you can ignore specific files or directories that are matched with regular expressions.
ignore = Name *.o
ignore = Name *~
# ignore = Path */temp/archive_*
# If you want to ignore difference in file props:
perms = 0