-
-
Save CypherpunkSamurai/2872bbdc67c7c18bfc284a0fefe51edc to your computer and use it in GitHub Desktop.
Prevent google colab from disconnecting on chrome (right mouse click -> inspect -> console tab -> insert code)
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 ConnectButton(){ | |
console.log("Connect pushed"); | |
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click() | |
} | |
setInterval(ConnectButton,60000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment