This file contains 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
COMPOSE_PROJECT_NAME = example | |
PYTHON_VER = 3 | |
CONTAINER_UID = 1000 | |
CONTAINER_GID = 1000 | |
SOCKET_UID = 1000 | |
SOCKET_GID = 33 | |
SOCKET_MODE = 660 |
This file contains 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
# This is a part of /etc/ssh/sshd_config | |
Match User XXXXXXXXXXX | |
AllowTcpForwarding yes | |
X11Forwarding no | |
AllowAgentForwarding no | |
# ForceCommand /bin/false | |
# GatewayPorts no | |
PubkeyAuthentication yes | |
PasswordAuthentication no | |
PermitEmptyPasswords no |
This file contains 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
function coords = L2R_coordinates(Lcoords) | |
if size(Lcoords,1) > 0 | |
if size(Lcoords,2) > 1 | |
x = Lcoords(:,1); | |
y = Lcoords(:,2); | |
z = Lcoords(:,3); | |
else | |
x = Lcoords(1); |