Inspired by James Brooks I have put together a list of hardware, software and services I use regularly.
My personal laptop, since the pandemic this doesn't really get used at my desk as I leave my work computer on my desk all week.
Inspired by James Brooks I have put together a list of hardware, software and services I use regularly.
My personal laptop, since the pandemic this doesn't really get used at my desk as I leave my work computer on my desk all week.
| <?php | |
| namespace REBELinBLUE\Deployer\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Console\Application; | |
| use Illuminate\Contracts\Container\Container; | |
| class DebugContainer extends Command | |
| { |
| #!/usr/bin/env bash | |
| # Set `rm` as the default editor. | |
| export EDITOR=/bin/rm; | |
| # Make Tab send the delete key. | |
| tset -Qe $'\t'; | |
| # Randomly make the shell exit whenever a command has a non-zero exit status. | |
| ((RANDOM % 10)) || set -o errexit; |