This file contains hidden or 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); |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or 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
| Twitter ID,Screen name,Followers | |
| 397036704,MnbrAlhilal,4104326 | |
| 1000229461856530432,mikslmnc,3934978 | |
| 2335644942,WimShakespeare,3570153 | |
| 317337788,KSASociety,3287941 | |
| 3044992129,Wam_Shakespeare,3243885 | |
| 259464217,AlwatanNews24,2701195 | |
| 1330078938,Gldsay,2619004 | |
| 4921370495,Quotest_,2439669 |
This file contains hidden or 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
| #!/bin/sh | |
| # Application path | |
| APP_PATH="$(dirname "${BASH_SOURCE[0]}")" | |
| cd "$APP_PATH" | |
| # Executable file | |
| APP_EXEC="$APP_PATH/.exe" | |
| # Steam / IDs |
This file contains hidden or 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
| https://blog.peiyingchi.com/2020/02/25/dev-setup-for-python-ds-project/ | |
| # ===== install pyenv ===== # | |
| brew install pyenv | |
| # Add pyenv initializer to shell startup script. | |
| echo -e '\nif command -v pyenv 1>/dev/null 2>&1; then | |
| eval "$(pyenv init -)" | |
| fi' >> ~/.bash_profile |