Skip to content

Instantly share code, notes, and snippets.

@amrrs
Created August 17, 2021 20:02
Show Gist options
  • Save amrrs/32e4f4a4c8a12f7f53bada6fbb7b4cdf to your computer and use it in GitHub Desktop.
Save amrrs/32e4f4a4c8a12f7f53bada6fbb7b4cdf to your computer and use it in GitHub Desktop.
How to avoid Google Colab Session Closing automatically?
//credit - https://huggingface.co/blog/fine-tune-wav2vec2-english (Patrick von Platen)
// run this on your Chrome / Browser Console (where Colab is present)
function ConnectButton(){
console.log("Connect pushed");
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click()
}
var colab = setInterval(ConnectButton,60000);
// uncomment the below line and use it for clearing
//clearInterval(colab)
@ebubekimyager
Copy link

ebubekimyager commented Jan 1, 2024 via email

@jinadarsh
Copy link

Thank you

@ErnestoAizenberg
Copy link

ErnestoAizenberg commented Jan 29, 2025

The only thing that I'm reciving executing codes for google collab close preventing is this error:
EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'nonce-f0P7+Wi9/XD70fmRVrpebQ==' 'strict-dynamic' 'report-sample' https: http: 'unsafe-inline' https://www.google.com/js/bg/ https://support.google.com/inapp/ https://www.google.com/tools/feedback/ https://www.gstatic.com/inproduct_help/ https://www.gstatic.com/support/content/ https://scone-pa.clients6.google.com/ https://feedback-pa.clients6.google.com/ https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment