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
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
pid /var/run/nginx.pid; | |
events { |
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
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install -y git build-essential ffmpeg libpcre3 libpcre3-dev libssl-dev zlib1g-dev | |
git clone https://github.com/sergey-dryabzhinsky/nginx-rtmp-module.git | |
wget https://nginx.org/download/nginx-1.18.0.tar.gz | |
tar -xf nginx-1.18.0.tar.gz | |
cd nginx-1.18.0 | |
sudo ./configure --with-http_ssl_module --add-module=../nginx-rtmp-module | |
make -j 1 | |
sudo make install |
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
<?php | |
class InstagramID | |
{ | |
/** | |
* Base64 URL Safe Character Map. | |
* | |
* This is the Base64 "URL Safe" alphabet, which is what Instagram uses. | |
* | |
* @var string | |
* |
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
(function() { | |
const originalFetch = window.fetch; | |
window.fetch = function(input, init){ | |
if(init && init.method === 'GET' && input.indexOf("something.com/aes") !== -1) { | |
const rewrittenUrl = "https://example.com/key.php?key="+input; | |
init = { ...init, url: rewrittenUrl }; | |
const modifiedRequest = new Request(rewrittenUrl, init); | |
return originalFetch.call(this, modifiedRequest); | |
} | |
return originalFetch.call(this, input, init); |
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 requests | |
import os | |
from bs4 import BeautifulSoup | |
SERIES_URL = "https://www.thenetnaija.net/videos/series/10134-bob-hearts-abishola" #stick the series url here and run | |
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', 'Referer': 'https://www.thenetnaija.net/'} | |
def createFolder(folder_name): | |
if not os.path.exists(folder_name): | |
os.makedirs(folder_name) |
OlderNewer