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 Video Link Collector + History Poison Blocker - iOS Optimized | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.5 | |
| // @description Collect & copy all video links from page, and block back-button history traps. | |
| // @match *://www.thekamababa.com/* | |
| // @match *://desibf.com/* | |
| // @match *://www.xxxvideoindian2.com/* | |
| // @run-at document-start | |
| // @grant none |
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
| import time | |
| import threading | |
| import ipywidgets as widgets | |
| from IPython.display import display, HTML | |
| import datetime | |
| # Function to read current network usage | |
| def get_network_usage(): | |
| try: | |
| with open('/proc/net/dev', 'r') as f: |