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
# FSL Setup | |
FSLDIR=/usr/local/fsl | |
PATH=${FSLDIR}/bin:/opt/autoPtx:${PATH} | |
export FSLDIR PATH | |
. ${FSLDIR}/etc/fslconf/fsl.sh |
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
# added by Anaconda3 5.3.0 installer | |
# >>> conda init >>> | |
# !! Contents within this block are managed by 'conda init' !! | |
__conda_setup="$(CONDA_REPORT_ERRORS=false '/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" | |
CONDA_CHANGEPS1=false conda activate base |
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
#FREESURFER SETUP | |
export FREESURFER_HOME=/usr/local/freesurfer | |
source $FREESURFER_HOME/SetUpFreeSurfer.sh | |
export R_LIBS=$HOME/R/x86_64-pc-linux-gnu-library/3.5 | |
#END FREESURFER SETUP |
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
#SETUP AFNI and SUMA | |
export PATH=$PATH:/opt/afni | |
if [ ! -f ~/.afnirc ]; then | |
cp /opt/afni/AFNI.afnirc ~/.afnirc | |
fi | |
#END AFNI/SUMA SETUP |
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
rem example.com | |
cd %~DP0 | |
wget -q --read-timeout=0.0 --waitretry=15 --tries=0 --background http://freedns.afraid.org/dynamic/update.php?KEY_GOES_HERE |
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
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Uncomment the following line if you don't like systemctl's auto-paging feature: | |
# export SYSTEMD_PAGER= |
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
# .bash_profile | |
# Get the aliases and functions | |
if [ -f ~/.bashrc ]; then | |
. ~/.bashrc | |
fi | |
# User specific environment and startup programs | |
PATH=$PATH:$HOME/.local/bin:$HOME/bin | |
export PATH |
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
#!/bin/bash | |
ls -la $1 | awk '{print $1, $3, $4, $9}' |
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 seeing these types of messages, it may be helpful to remove the failed service using zmprov. See below. | |
----- The following addresses had permanent fatal errors ----- | |
<email address> | |
(reason: 554 5.7.1 Service unavailable; Client host [IP] blocked using dnsbl.njabl.org) | |
----- Transcript of session follows ----- | |
... while talking to MAIL.SERVER.HOSTNAME: | |
>>> DATA | |
<<< 554 5.7.1 Service unavailable; Client host [IP] blocked using dnsbl.njabl.org |
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
# >>> 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" |