Last active
April 9, 2021 12:41
-
-
Save thepushkarp/3e0820e9150997fb6f4a22d2c3759d7e to your computer and use it in GitHub Desktop.
Prevent Colab from Disconnecting
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
// 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