0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Google Colaboratory の 90分ルールを対策する bat スクリプト

Posted at

はじめに

便利ですね、GoogleColaboratory。
しかしながら、有名な90分ルールと12時間ルールが厄介です。
簡単な数値計算をする際は、前者が厄介です。
90分に一度PCを触る、などといった非人間的な作業をしたくないので、タイトルの通り簡単に対策することにしました。
なお、この問題に関しては例えば
enmaruさんの記事
など様々なところで取り上げられていますが、
bat スクリプトが記述されているものは見かけなかったので本記事を執筆しました。

スクリプト本体

以下に、目的を達成するためのスクリプトを示します。
chrome を使うことを前提としています。
だいぶ汚いですが、あまりにも簡単です。
単に、start %URL% として、Colab. 非対応の思わぬブラウザで開かれることを回避します。

a.bat
@echo off
set URL="Colab. のURL"
start chrome.exe %URL%
timeout 3600 /nobreak 
start chrome.exe %URL%
timeout 3600 /nobreak
start chrome.exe %URL%
timeout 3600 /nobreak 
start chrome.exe %URL%
timeout 3600 /nobreak
start chrome.exe %URL%
timeout 3600 /nobreak 
start chrome.exe %URL%
timeout 3600 /nobreak
start chrome.exe %URL%
timeout 3600 /nobreak 
start chrome.exe %URL%
timeout 3600 /nobreak
start chrome.exe %URL%
timeout 3600 /nobreak 
start chrome.exe %URL%
timeout 3600 /nobreak
start chrome.exe %URL%
timeout 3600 /nobreak 
start chrome.exe %URL%
timeout 3600 /nobreak
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?