Make sure current project folder totally empty:
docker run --rm -v $(pwd):/app composer create-project laravel/laravel .
Make sure current project folder totally empty:
docker run --rm -v $(pwd):/app composer create-project laravel/laravel .
psk=YOUR_WIFI_PASSWORDor you can use grep for filter
-i for incase-sensitive
-A 10 for show 10 line after found text
| WEBVTT | |
| NOTE | |
| Transcription provided by Deepgram | |
| Request Id: d1edd3d2-865f-4750-abd2-7a4120f9db82 | |
| Created: 2024-09-09T04:17:30.388Z | |
| Duration: 679.9035 | |
| Channels: 1 | |
| 00:00:00.080 --> 00:00:02.640 |
| export const downloadHandler = async (uri) => { | |
| try { | |
| const response = await fetch(uri, { | |
| mode: 'cors', | |
| }); | |
| if (!response.ok) { | |
| throw new Error('Network response was not ok'); | |
| } |
Steps
<input type="file" jsname="tif8Pe" jsaction="change:E7zRc" accept="image/jpeg, image/png" style="display: none;">
Where it says accept="image/jpeg, image/png"
and replace to this
accept="image/jpeg, image/png, image/gif, video/mp4"
| <?php | |
| function jsonToHtml($jsonStr) { | |
| $obj = json_decode($jsonStr); | |
| $html = ''; | |
| foreach ($obj->blocks as $block) { | |
| switch ($block->type) { | |
| case 'paragraph': | |
| $html .= '<p>' . $block->data->text . '</p>'; | |
| break; |