Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz| <?php | |
| namespace App\Repositories; | |
| use Carbon\CarbonImmutable; | |
| use Closure; | |
| use DateTimeInterface; | |
| use Illuminate\Bus\BatchFactory; | |
| use Illuminate\Bus\BatchRepository; | |
| use Illuminate\Bus\PendingBatch; |
| #!/bin/bash | |
| # | |
| # DEFINE PROPER WRITABLE PERMISSIONS FOR LARAVEL PROJECT. | |
| # Run this script in a fresh Laravel install. | |
| # | |
| # @author Adriano Rosa (https://adrianorosa.com) | |
| # @created: 2015-02-15 00:59:19 | |
| # @updated: 2021-01-28 14:19:16 | |
| # @updated: 2023-11-25 20:53:36 | |
| # |
Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz
 { | |
| // It is necessary to create a new blob object with mime-type explicitly set | |
| // otherwise only Chrome works like it should | |
| const blob = new Blob([data], {type: mime || 'application/octet-stream'}); | |
| if (typeof window.navigator.msSaveBlob !== 'undefined') { | |
| // IE doesn't allow using a blob object directly as link href. |
Brought to you by Headjack
FFmpeg is one of the most powerful tools for video transcoding and manipulation, but it's fairly complex and confusing to use. That's why I decided to create this cheat sheet which shows some of the most often used commands.
Let's start with some basics:
ffmpeg calls the FFmpeg application in the command line window, could also be the full path to the FFmpeg binary or .exe fileOnce in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm