Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 319 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 319 Bytes

Prevent the Google colab to disconnect??

change the java script code, by clicking the inspect element > console and paste the JS code given below:

function ClickConnect(){
console.log("Working"); 
document.querySelector("colab-toolbar-button#connect").click() 
}
setInterval(ClickConnect,60000)