Floyk com
1 month ago

#fabricjs very good tutorial about how to draw lines or arrow line 👍

Floyk com
Edited 4 months ago

how to set up custom error pages in #laravel?
easy, execute:

                    php artisan vendor:publish --tag=laravel-errors
                  

all of the error pages will be extracted to view/errors/... folder.
You can modify them as you need 

Floyk com
Edited 4 months ago

problems with permissions in #cpanel for the newly installed #laravel app?execute this:😱

                    find /path/to/your/laravel/app -type d -exec chmod 755 {} \;
find /path/to/your/laravel/app -type f -exec chmod 644 {} \;
Floyk com
8 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
8 months ago
Floyk com
8 months ago
Floyk com
10 months ago

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

Floyk com
10 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
1 year ago

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

FB API for FB ads
Igor Simic
1 year ago