<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| @echo off | |
| setlocal | |
| rem Create a file list for FFmpeg | |
| ( | |
| for %%f in (*.mp4) do echo file '%%f' | |
| ) > filelist.txt | |
| rem Run FFmpeg to merge the videos |
| [wsl2] | |
| memory=2GB # Limits VM memory in WSL 2 to 4 GB | |
| processors=2 # Makes the WSL 2 VM use two virtual processors | |
| # PS > Restart-Service LxssManager |
| // This code will generate links to all the subreddit you have joined. | |
| // Use these links to transfer all your subs to a new account | |
| // 1.) From your old account, go to: https://www.reddit.com/subreddits/mine | |
| // 2.) Open the devtool console and paste the code below | |
| // 3.) Save the generated links | |
| // 4.) Log in to your new account | |
| // 5.) Open each generated link and click join (or use the auto-join code) | |
| <?php | |
| /** | |
| * Laravel Passport - Customize Token response. | |
| * | |
| * @author Messi89 OVERGEN <@messi89minou> | |
| * @link https://github.com/messi89 | |
| */ | |
| namespace App\Http\Controllers\Api; | |
| use App\Models\User; |
| <?php | |
| public function logger_cli($message, $time = true) { | |
| if(php_sapi_name() !== 'cli') return; | |
| if($time) | |
| { | |
| $t = date(DATE_ATOM); | |
| $message = "[{$t}] - {$message}"; | |
| } |
| mysql> create database new_db; | |
| > mysqldump -uroot -proot old_db | mysql -u root -proot new_db |
Make sure these boxes are checked before submitting/approving the PR
| <?php | |
| if (isset($_GET['seek'])) { | |
| $seek = $_GET['seek']; | |
| $lines = []; | |
| $handle = fopen('error_log', 'rb'); | |
| if ($seek > 0) { | |
| fseek($handle, $seek); | |
| } |