Floyk com
2 months ago

Problems with youtube-dl
When runing youtube-dl command you get the ouptut:

solution:

                    python3 -m pip install --force-reinstall https://github.com/yt-dlp/yt-dlp/archive/master.tar.gz

// and then run it with
yt-dlp -- youtube_ID
                  

more details here!

Floyk com
3 months ago
Floyk com
3 months ago
Floyk com
5 months ago

#aws set up S3 bucket to be accessed only from limiter range of IPs

Floyk com
5 months ago

#laravel 9 how to add prefix to #jetstream routes? 
open config/jetsream.php and add:

                    'prefix' => 'app', // app will be prefix for all jetstream routes
                  

Floyk com
6 months ago

how to use FB API for creating and updating FB ads?

FB API for FB ads
Igor Simic
7 months ago
Vizenzo Caponera
Edited 7 months ago
Igor Simic
Edited 7 months ago

How do I view events fired on an element click in Chrome DevTools?
open console and execute this command, it will monitor every click

                    monitorEvents(document.body, 'click')
                  
Vizenzo Caponera
7 months ago