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
| # Instructions below | |
| # | |
| # Download and run the following, Open Broadcaster Software Studio [OBS] (downloadable at: https://obsproject.com/) | |
| # Create a video from OBS studio by recording while your webcam is running (you can open webcam in many ways I don't need to explain this part) | |
| # Save the video and then use it for any verification app such as (FB), or any other online site that may require webcam verification | |
| # Lastly you can then freely run this script while you're at the verification app of any site as mentioned and while the webcam verification is opened and listening to your webcam you can then see if it passes or not | |
| # This has been confirmed to work on (FB) which is notoriously the most secure of all social networks on the planet, so I would say this Python script is flawless. | |
| import cv2 | |
| import pyvirtualcam |
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
| class NetClient { | |
| constructor(serverUrl) { | |
| this.ws = null; | |
| this.serverUrl = serverUrl; | |
| this.connected = false; | |
| this.authenticated = false; | |
| this.seq = 0; |
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
| class NetClient { | |
| constructor(url) { | |
| this.url = url; | |
| this.ws = null; | |
| this.connected = false; | |
| this.authenticated = false; | |
| this.seq = 0; |
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 asyncio | |
| import websockets | |
| import json | |
| import time | |
| PORT = 4445 | |
| TICK_RATE = 20 | |
| TIMEOUT = 5.0 |
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 asyncio | |
| import websockets | |
| import json | |
| import time | |
| # ========================= | |
| # CONFIG | |
| # ========================= | |
| PORT = 4445 |
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 asyncio | |
| import json | |
| import time | |
| # ========================= | |
| # CONFIG | |
| # ========================= | |
| HOST = "0.0.0.0" | |
| PORT = 4445 |
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 asyncio | |
| import json | |
| import time | |
| # ========================= | |
| # CONFIG | |
| # ========================= | |
| HOST = "0.0.0.0" | |
| PORT = 4445 |
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 asyncio | |
| import json | |
| import time | |
| # ========================= | |
| # CONFIG | |
| # ========================= | |
| HOST = "0.0.0.0" | |
| PORT = 4445 |
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 platform | |
| import ctypes | |
| import sys | |
| import subprocess | |
| try: | |
| import winreg | |
| except ImportError: | |
| winreg = 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Tank Physics System</title> | |
| <style> | |
| body { margin:0; overflow:hidden; background:#111; } | |
| canvas { display:block; } | |
| </style> | |
| </head> |
NewerOlder