echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4
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
| /* Available globally */ | |
| :root { | |
| --wpe-transition-distance: 15px; | |
| --wpe-transition-rotation: 15deg; | |
| /* use as globals if you wish to | |
| e.g. var(--wpe-animation-duration--fast); | |
| */ | |
| --wpe-animation-duration--fast: 0.2s; |
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 | |
| /** | |
| * Plugin Name: PXB - Random Beaver Layouts | |
| * Description: Show random saved layouts in BB with shortcode | |
| * Version: 1.0 | |
| * Author: Pixablaze | |
| * Author URI: https://www.pixablaze.com | |
| */ | |
| /*---------------------------------------------------------- |
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 web; | |
| # One worker process per CPU core. | |
| worker_processes 8; | |
| # Also set | |
| # /etc/security/limits.conf | |
| # web soft nofile 65535 | |
| # web hard nofile 65535 | |
| # /etc/default/nginx |
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
| // ---------------------------------------------------------------------------- | |
| // File: PROJECT_ROOT/ ... / servers/app1/app.js | |
| // Define this **before** all the `require`s. | |
| function initRekuire(baseDir, appDir) { | |
| var base = baseDir || '.', | |
| app == appDir || '.'; | |
| global.rekuire = function(name) { | |
| return require( |
Between [your name] and [their name]
You ([their name]), located at [customer address] are hiring me ([your name]) located at [company address] to [design and develop a web site] for the estimated total price of [total] as outlined in our previous correspondence.
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
| http://stackoverflow.com/questions/927358/git-undo-last-commit | |
| Undo a commit and redo | |
| $ git commit ... | |
| $ git reset --soft HEAD^ (1) | |
| $ edit (2) | |
| $ git commit -a -c ORIG_HEAD (3) | |
| This is most often done when you remembered what you just committed is incomplete, or you misspelled your commit message, or both. Leaves working tree as it was before "reset". |
