Skip to content

Instantly share code, notes, and snippets.

@laygond
Created July 7, 2020 05:15
Show Gist options
  • Save laygond/9d3553c8d0f06a6840226fcd0cd825bc to your computer and use it in GitHub Desktop.
Save laygond/9d3553c8d0f06a6840226fcd0cd825bc to your computer and use it in GitHub Desktop.
Keep session active to prevent Udacity workspace to go to sleep.
#! /opt/carnd_p3/behavioral/bin/python3
from workspace_utils import active_session
import os
import subprocess
with active_session():
# do long-running work here
os.system("/opt/carnd_p3/linux_sim/linux_sim.x86_64")
print("hello")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment