This file contains 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 requests | |
from bs4 import BeautifulSoup | |
import time | |
import re | |
CF = "" # cf_clearance cookie value for the psa site from your browser | |
URL = "" # psa url, ex: https://psa.wf/movie/corner-office-2022/ | |
SLEEP_TIME = 5 # do not change this | |
def try2link_bypass(url): |
This file contains 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 random | |
from os import system, name | |
############################################################################ | |
# Clear function | |
def clear(): | |
# for windows | |
if name == 'nt': |
This file contains 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 requests | |
from bs4 import BeautifulSoup | |
def decodeKey(encoded): | |
key = '' | |
i = len(encoded) // 2 - 5 | |
while i >= 0: | |
key += encoded[i] | |
i = i - 2 |
This file contains 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
from bs4 import BeautifulSoup | |
import cloudscraper | |
import requests | |
import json | |
url = input("enter filecrypt link like https://filecrypt.co/Container/73F6D9D43B.html or html filepath like 75C3806BBE.html: ") | |
def getlinks(dlc): | |
headers = { | |
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:103.0) Gecko/20100101 Firefox/103.0', |
This file contains 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
# functions | |
def decimalToBinary(n): | |
return bin(n).replace("0b", "").zfill(size) | |
def binaryToDecimal(n): | |
return int(n,2) | |
def printNumbers(numList): | |
ele = 0 |
This file contains 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
How to build OpenCV from sources for Android on Windows | |
------------------------------------------------------- | |
This is a step by step guide on how to get the source code and tools necessary for building OpenCV from scratch. | |
Downloading required packages: | |
------------------------------ | |
* Download the Android NDK: | |
ndk-r20 was used as of the time of writing. |