An open-source relational database management system.
- Official website: MySQL
- Docker repository: kiwilan/mysql-docker
| #!/bin/bash | |
| # Description: Split a M4B audiobook into chapters. | |
| # Requires: ffmpeg, ffprobe, jq, yq | |
| # Author: Hasan Arous | |
| # Improved by: Ewilan Rivière | |
| # License: MIT | |
| # https://unix.stackexchange.com/questions/499179/using-ffmpeg-to-split-an-audible-audio-book-into-chapters | |
| # Usage: ./m4b-splitter.sh <input_file.m4b> [--no-convert | -n] |
| <?php | |
| /** | |
| * Tested with 1290 files: 21.43 sec | |
| */ | |
| private function parseFilesWithLaravelFile(string $path): array | |
| { | |
| $files = \Illuminate\Support\Facades\File::allFiles($path); | |
| return array_map(fn (SplFileInfo $file) => $file->getPathname(), $files); |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| http2 on; | |
| server_name domain.com; # change to your domain | |
| # uncomment if you want to hide server for crawlers | |
| # add_header X-Frame-Options "SAMEORIGIN"; | |
| # add_header X-Content-Type-Options "nosniff"; | |
| # add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive"; |
An open-source relational database management system.
| <?php | |
| // app/Http/Middleware/HandleInertiaRequests.php | |
| namespace App\Http\Middleware; | |
| use Illuminate\Http\Request; | |
| use Inertia\Middleware; | |
| use Tighten\Ziggy\Ziggy; |
To install Rust, you can follow different guides. This one follow official Rust website guide.
Install Rust binaries
With vscode-intelephense extension (1.10.0 - 2023-11-05).
/** @param array{foo:string, bar:int} $arrayShape */ or /** @return object{foo:string, bar:int} */
| { | |
| "compilerOptions": { | |
| "target": "esnext", | |
| "module": "esnext", | |
| "moduleResolution": "node", | |
| "strict": true, | |
| "jsx": "preserve", | |
| "sourceMap": true, | |
| "resolveJsonModule": true, | |
| "esModuleInterop": true, |
| <?php | |
| namespace Kiwilan\Sentinel; | |
| use Exception; | |
| class ClientPost | |
| { | |
| protected function __construct( | |
| readonly protected string $host, |
Flutter is an open-source UI software development kit created by Google. It is used to develop cross platform applications from a single codebase for any web browser, Fuchsia, Android, iOS, Linux, macOS, and Windows. First described in 2015, Flutter was released in May 2017.
See official Flutter website for more information.
Official guide: Install on macOS