- buka terminal
- composer install
- rename file
.env.examplejadi.env - bikin database
- isi informasi database di .env
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
| dana.id | |
| link.dana.id | |
| shp.ee | |
| wa.me | |
| tokopedia.link | |
| tokopedia.com | |
| onlyfans.com | |
| tokopedia.app.link | |
| danaindonesia.app.link |
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 pylottie | |
| import sys | |
| inFile = sys.argv[1] | |
| outFile = sys.argv[2] | |
| pylottie.convertLottie2Webp("./{}".format(inFile), "./{}".format(outFile)) |
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
| 144.126.138.140##+js(noeval-if, deblocker) | |
| @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=144.126.138.140 | |
| @@||googleads.g.doubleclick.net/pagead/id$domain=144.126.138.140 |
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
| =================== CHANNEL =================== | |
| - MALAYSIA - | |
| TV1-A | |
| TV1-B | |
| TV2-A | |
| TV2-B | |
| TV3-A | |
| TV3-B | |
| TV3-C |
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 | |
| function multiple_download(array $urls, $save_path = '/tmp') | |
| { | |
| $multi_handle = curl_multi_init(); | |
| $file_pointers = []; | |
| $curl_handles = []; | |
| // Add curl multi handles, one per file we don't already have | |
| foreach ($urls as $key => $url) { |
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
| url=$1 | |
| if [[ "$url" == *"ouo.io"* ]]; then | |
| ck=".ck.txt" | |
| res=$(curl -ls $url -c $ck) | |
| while true; do | |
| if [[ "$res" == *"x-token"* ]] && [[ "$res" == *"_token"* ]] && ! [[ $res == *"Redirecting to"* ]]; then | |
| token=$(echo $res | grep -Po '(?<=_token"\stype\="hidden"\svalue\=")([^"]+)') | |
| url=$(echo $res | grep -Po '(?<=action\=")(http[^"]+)') | |
| res=$(curl $url -sd "_token=$token&x-token=&v-token=" -b $ck) | |
| echo -e "\x1b[96m[REDIRECT]\x1b[0m $url " |
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
| const fetch = require('node-fetch'); | |
| const originalUrl = "https://www.facebook.com/buzzfeedtasty/videos/558134848844881/"; | |
| const url = new URL(originalUrl); | |
| const mobileUrl = `https://m.facebook.com${url.pathname}`; | |
| fetch(mobileUrl) | |
| .then(async res => { | |
| const response = await res.text(); | |
| const find = response.match(/>{(.*?)}</); |
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
| == INDONESIA == | |
| ANTV | |
| ATV | |
| Berita Satu | |
| CNBC Indonesia | |
| CNN Indonesia | |
| DAAI TV | |
| Dunia Lain | |
| GTV | |
| IDX Channel |
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 decodeMorse(morseCode) { | |
| let ref = { | |
| '.-': 'a', | |
| '-...': 'b', | |
| '-.-.': 'c', | |
| '-..': 'd', | |
| '.': 'e', | |
| '..-.': 'f', | |
| '--.': 'g', | |
| '....': 'h', |
