- 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
<?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. |
- Hire only coders.
- Have an SLA for your service.
- Measure and report performance against the SLA.
- Use Error Budgets and gate lanches on them.
- Have a common staffing pool for SRE and Developers.
- Have excess Ops work overflow to the Dev team.
- Cap SRE operational load at 50 percent.
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
alias docker_remove_all_containers='docker rm ($docker ps -aq)' | |
alias force_docker_remove_all_containers='docker rm -f ($docker ps -aq) | |
alias docker_remove_all_unused_volumes='docker volume prune' | |
alias docker_remove_all_images='docker rmi $(docker images -q)' | |
alias force_docker_remove_all_images='docker rmi -f $(docker images -q)' |
- IIFE -- immediately invoked function expression
- closure -- technique for implementing lexically scoped name binding in a language with first-class functions
- transpiler, transcompiler, source-to-source compiler -- is a type of compiler that takes the source code of a program written in one programming language as its input and produces the equivalent source code in another programming language