Skip to content

Instantly share code, notes, and snippets.

View bipinkrish's full-sized avatar
💥
exploring

Bipin bipinkrish

💥
exploring
View GitHub Profile
@bipinkrish
bipinkrish / psa.py
Created August 4, 2023 16:03
PSA Scrape
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):
@bipinkrish
bipinkrish / tictactoe.py
Created November 12, 2022 18:48
TicTacToe v/s AI or with 2 Players
import random
from os import system, name
############################################################################
# Clear function
def clear():
# for windows
if name == 'nt':
@bipinkrish
bipinkrish / igg.py
Last active October 14, 2022 12:30
IGG Games Bypass - get direct links from igg games site
import requests
from bs4 import BeautifulSoup
def decodeKey(encoded):
key = ''
i = len(encoded) // 2 - 5
while i >= 0:
key += encoded[i]
i = i - 2
@bipinkrish
bipinkrish / filecrypt.py
Last active October 6, 2023 04:42
Filecrypt Bypass - get direct links of filecrypt links
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',
@bipinkrish
bipinkrish / guess.py
Created August 4, 2022 11:25
I Will Guess Your Number
# functions
def decimalToBinary(n):
return bin(n).replace("0b", "").zfill(size)
def binaryToDecimal(n):
return int(n,2)
def printNumbers(numList):
ele = 0
@david-serrano
david-serrano / Step by step guide - Windows.txt
Last active May 21, 2024 13:49
Building a minified version of OpenCV 3.4.3 for Android from sources
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.