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
| // ==UserScript== | |
| // @name Mangasee123 Fast Scroll | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Simulate Option + Down arrow when I just press down arrow on mangasee123.com with smooth scrolling. | |
| // @author You | |
| // @match https://mangasee123.com/* | |
| // @grant none | |
| // ==/UserScript== |
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
| #!/usr/bin/env python | |
| import requests | |
| import sys | |
| import getpass | |
| username = input('Enter username: ') | |
| pa = str(getpass.getpass(prompt='Enter password: ')) | |
| with requests.session() as s: | |
| try: | |
| page = s.post('https://netaccess.iitm.ac.in/account/login' , data={ 'userLogin':username, 'userPassword':pa, 'submit':''}, verify=False) |
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
| # Copy paste this gist in a Google Collab cell | |
| # Go to your Kaggle competition page -> data, scroll below to see the kaggle api command which looks similar to below line | |
| # !kaggle competitions download -c competitive-data-science-predict-future-sales -p data | |
| # Replace that line accordingly in the below code | |
| # Run the cell | |
| !pip install kaggle | |
| from google.colab import files | |
| files.upload() |
NewerOlder