Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexlynd/colab-tools
InfoSec research and password cracking tools with Google Colab
https://github.com/alexlynd/colab-tools
colab-notebook google-colab google-colaboratory jupyter-notebook password-cracker python
Last synced: about 2 months ago
JSON representation
InfoSec research and password cracking tools with Google Colab
- Host: GitHub
- URL: https://github.com/alexlynd/colab-tools
- Owner: AlexLynd
- Created: 2020-07-10T03:56:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-12T02:08:35.000Z (over 3 years ago)
- Last Synced: 2023-03-09T16:05:37.826Z (almost 2 years ago)
- Topics: colab-notebook, google-colab, google-colaboratory, jupyter-notebook, password-cracker, python
- Language: Jupyter Notebook
- Homepage:
- Size: 15.6 KB
- Stars: 39
- Watchers: 3
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Colab Tools
Prevent runtime disconnect:
```
function clickConnect() {
document.querySelector("colab-connect-button").click()
console.log("Reconnected notebook.");
}
setInterval(clickConnect,60000)
```