- https://getloaf.io/
Animated SVG icon creator
- https://www.wirewax.com
Fully interactive videos. Eg: Witch Queen Bungie video
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Filesystem\Filesystem; | |
| class ConfigDiffVendorCommand extends Command | |
| { | |
| protected $signature = 'config:diff-vendor |
| <?php | |
| namespace App\Concerns; | |
| use Filament\Support\Icons\Heroicon; | |
| use BackedEnum; | |
| use Illuminate\Contracts\Support\Htmlable; | |
| trait HasActiveIcon | |
| { |
| [core] | |
| excludesfile = ~/.gitignore | |
| editor = subl -n -w | |
| # pager = diff-so-fancy | less -r | |
| autocrlf = input | |
| #[include] | |
| # path = ~/.gitconfig.local | |
| [alias] | |
| cp = cherry-pick | |
| st = status -s |
| import defaultTheme from 'tailwindcss/defaultTheme' | |
| /** @type {import('tailwindcss').Config} */ | |
| const config = { | |
| content: [ | |
| './js/**/*.{js,vue}', | |
| ], | |
| darkMode: 'false', |
| <?php | |
| namespace App\Concerns; | |
| use Illuminate\Contracts\Database\Eloquent\Builder; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Database\Eloquent\SoftDeletes; | |
| trait HasPrimary | |
| { |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Cache\RateLimiting\Limit; | |
| use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Support\Facades\RateLimiter; | |
| use Illuminate\Support\Facades\Route; |
| <?php | |
| /** | |
| * PHP Coding Standards fixer configuration | |
| */ | |
| $finder = PhpCsFixer\Finder::create() | |
| ->ignoreDotFiles(true) | |
| ->ignoreVCSIgnored(true) | |
| ->exclude('node_modules') |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_URI} ^/wp-content/uploads/[^\/]*/.*$ | |
| RewriteRule ^(.*)$ https://<DOMAIN>/$1 [QSA,L] | |
| </IfModule> |
| <?php | |
| // Alternative: | |
| // Install https://github.com/roots/soil | |
| // Add slug to <body> class | |
| add_filter('body_class', function ($classes) { | |
| // Add post/page slug if not present | |
| if (is_single() || is_page() && !is_front_page()) { | |
| if (!in_array($slug = basename(get_permalink()), $classes)) { |