If you are moving your development machine from an unrestricted to a restricted network and back, the chances are high that you will have problems using ssh or git dependent on the network where your computer is currently set up.
A good way to circumvent this is to use a local development proxy (like fiddler) on your computer and to tunnel all connections through it.
For example I am running fiddler on my machine on port 8888 (accepting external connections) and I am using the following 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
from matplotlib import animation | |
import matplotlib.pyplot as plt | |
import gym | |
""" | |
Ensure you have imagemagick installed with | |
sudo apt-get install imagemagick | |
Open file in CLI with: | |
xgd-open <filelname> |
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
general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS;250 | |
general.smoothScroll.msdPhysics.enabled;true | |
general.smoothScroll.msdPhysics.motionBeginSpringConstant;450 | |
general.smoothScroll.msdPhysics.regularSpringConstant;450 | |
general.smoothScroll.msdPhysics.slowdownMinDeltaMS;50 |