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
events {} | |
rtmp { | |
server { | |
listen 1935; | |
chunk_size 4096; | |
application multiple { | |
live on; | |
record off; | |
push rtmp://a.rtmp.youtube.com/live2/<live-stream-id>; |
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
// Following these steps to clean up your Instagram profile, just in case it has followed thoudsand of accounts. Now you don't want anybody knows that, so clean it up. | |
// 1. Open your profiles account | |
// 2. Click on Following button (link) to open the pop-up pane. Keep scroll down to list all the following account. | |
// 2. Press F12 | |
// 3. Copy and past the code bellow into console. Enter. | |
// 4. Keep the window open for few hours, or days in some cases to finish the job. Don't try to speed up as Instagram has rate limit on unfollow requests; | |
function findElementsByInnerText(textToFind, tagName) { | |
const elements = document.getElementsByTagName(tagName); // Get all elements of the specified tag | |
const matchingElements = []; // Initialize an empty list to store matching elements |
OlderNewer