- https://github.com/AhmadWaleed/laravel-blanket
- https://github.com/ahmedesa/laravel-api-tool-kit # standard way of having api and more
- https://github.com/JustIversen/laravel-job-chainer
- https://github.com/Laravel-Backpack/CRUD
- https://github.com/Laravel-Lang/lang
- https://github.com/Maatwebsite/Laravel-Excel
- https://github.com/Pod-Point/laravel-mail-export
- https://github.com/Propaganistas/Laravel-Phone
- https://github.com/area17/twill
- https://github.com/barryvdh/laravel-debugbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| USERNAME=wpk8s # TODO: Customize the sudo non-root username here | |
| # Create user and immediately expire password to force a change on login | |
| useradd --create-home --shell "/bin/bash" --groups sudo "${USERNAME}" | |
| passwd --delete "${USERNAME}" | |
| chage --lastday 0 "${USERNAME}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Default settings for chromium-browser. This file is sourced by /bin/sh | |
| # from /usr/bin/chromium-browser | |
| CHROMIUM_FLAGS="$CHROMIUM_FLAGS \ | |
| --disable-low-res-tiling \ | |
| --num-raster-threads=6 \ | |
| --profiler-timing=0 \ | |
| --disable-composited-antialiasing \ | |
| --test-type \ | |
| --show-component-extension-options \ | |
| --ignore-gpu-blacklist \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh user@yourhost "cat /etc/php/7.4/fpm/php.ini" | clip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Foundation\Console\ServeCommand as OriginalServeCommand; | |
| class ServeCommand extends OriginalServeCommand | |
| { | |
| protected function getOptions() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'active_support/core_ext/string' | |
| # Defines the matching rules for Guard. | |
| guard :minitest, spring: "bin/rails test", all_on_start: false do | |
| watch(%r{^test/(.*)/?(.*)_test\.rb$}) | |
| watch('test/test_helper.rb') { 'test' } | |
| watch('config/routes.rb') { interface_tests } | |
| watch(%r{app/views/layouts/*}) { interface_tests } | |
| watch(%r{^app/models/(.*?)\.rb$}) do |matches| | |
| "test/models/#{matches[1]}_test.rb" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Settings] | |
| gtk-application-prefer-dark-theme = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| APT::Install-Recommends "false"; | |
| APT::Install-Suggests "false"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div { | |
| /* this is the cool smooth background gradient on aws.amazon.com */ | |
| background-image: linear-gradient(0deg,#eaeded 0,#fff); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Some plugins, colors and other things are expected. | |
| " Check another time for complete instructions | |
| " Set 'nocompatible' to ward off unexpected things that your distro might | |
| " have made, as well as sanely reset options when re-sourcing .vimrc | |
| set nocompatible | |
| " Attempt to determine the type of a file based on its name and possibly its | |
| " contents. Use this to allow intelligent auto-indenting for each filetype, | |
| " and for plugins that are filetype specific. |