Posts

00webhost file manager alternative

Image
Feature: Support unzip file Support edit file/script on different encodings Support upload,edit,open,delete,rename,and other. Support add username and password. And any other. H3K | Tiny File Manager Modified By Dimas Lanjaka <?php /** * H3K | Tiny File Manager * CCP Programmers * http://fb.com/ccpprogrammers * https://github.com/prasathmani/tinyfilemanager */ // Default language $lang = 'en'; // Auth with login/password (set true/false to enable/disable it) $use_auth = true; // Users: array('user' => 'user', 'user' => 'user2', etc); $auth_users = array( 'your_username' => md5('your_password'), 'user2' => md5('pass2'), ); // Readonly users (usernames array) $readonly_users = array( 'user2' ); // Show or hide files and folders that starts with a dot $show_hidden_files = true; // Enable highlight.js (https://highlightjs.org/) on view's page $use_h

Url Opener Script Termux

Image
URL Opener Script Termux #!/data/data/com.termux/files/usr/bin/zsh # # This is a termux-url-opener script to do diffrent tasks on my Android phone # url=$1 echo "What should I do with $url ?" echo "y) download youtube video to movies-folder" echo "u) download youtube video and convert it to mp3 (music-folder)" echo "s) download with scdl (soundcloud)" echo "w) wget file to download-folder" echo "x) nothing" read CHOICE case $CHOICE in y) youtube-dl -o /data/data/com.termux/files/home/storage/shared/Movies/%(title)s.%(ext)s $url ;; u) echo "Artist" read artist echo "Title" read title echo "Album" read album youtube-dl -o ~/storage/music/music.flv $url ffmpeg -i ~/storage/music/music.flv ~/storage/music/$artist-$title.mp3 mid3v2 -a $artist -t $title -A $album ~/storage/music/$artist-$title.mp3 rm ~/storage/music/music.flv ;; s) scdl -l $url -