Skip to content

Instantly share code, notes, and snippets.

@thepushkarp
Last active April 9, 2021 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thepushkarp/3e0820e9150997fb6f4a22d2c3759d7e to your computer and use it in GitHub Desktop.
Save thepushkarp/3e0820e9150997fb6f4a22d2c3759d7e to your computer and use it in GitHub Desktop.
Prevent Colab from Disconnecting
// https://medium.com/@shivamrawat_756/how-to-prevent-google-colab-from-disconnecting-717b88a128c0
function ClickConnect() {
console.log("Working");
document.querySelector("colab-toolbar-button").click()
}
setInterval(ClickConnect, 60000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment