Skip to content

Instantly share code, notes, and snippets.

View EncodeTheCode's full-sized avatar
🤗
Coding useful tools for workflow.

EncodeTheCode

🤗
Coding useful tools for workflow.
View GitHub Profile
# 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
class NetClient {
constructor(serverUrl) {
this.ws = null;
this.serverUrl = serverUrl;
this.connected = false;
this.authenticated = false;
this.seq = 0;
class NetClient {
constructor(url) {
this.url = url;
this.ws = null;
this.connected = false;
this.authenticated = false;
this.seq = 0;
import asyncio
import websockets
import json
import time
PORT = 4445
TICK_RATE = 20
TIMEOUT = 5.0
import asyncio
import websockets
import json
import time
# =========================
# CONFIG
# =========================
PORT = 4445
import asyncio
import json
import time
# =========================
# CONFIG
# =========================
HOST = "0.0.0.0"
PORT = 4445
import asyncio
import json
import time
# =========================
# CONFIG
# =========================
HOST = "0.0.0.0"
PORT = 4445
import asyncio
import json
import time
# =========================
# CONFIG
# =========================
HOST = "0.0.0.0"
PORT = 4445
import platform
import ctypes
import sys
import subprocess
try:
import winreg
except ImportError:
winreg = None
<!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>