I hereby claim:
- I am trovster on github.
- I am trovster (https://keybase.io/trovster) on keybase.
- I have a public key ASA_HaM551jlZGZZ67MsHbLBMQkb6rmajypbAP33jtbOTgo
To claim this, I am signing this object:
| <?php | |
| // Property::query()->nearest($property)->limit(5)->get(); | |
| // $property->nearest()->limit(5)->get(); | |
| public function scopeNearest(Builder $query, ?Property $property = null): Builder | |
| { | |
| $property = $property ?? $this; | |
| $earthRadius = 3959; | |
| $latitude = $property->address->lat; |
| sudo apt install zsh bat | |
| zsh --version | |
| chsh -s $(which zsh) | |
| sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| # General | |
| alias zshconfig="vi ~/.zshrc" | |
| alias ls="ls -la -h -Gp -F --color=auto" | |
| alias grep="grep -n --color" |
| <?php | |
| namespace App\View\Components\Form; | |
| use App\View\Components\Base as Component; | |
| use Illuminate\Contracts\View\View as Response; | |
| use Money\Money as MoneyObject; | |
| use NumberFormatter; | |
| class Money extends Component |
| <?php | |
| namespace App\Providers; | |
| use App\Auth\SessionGuard; | |
| use Illuminate\Foundation\Application; | |
| use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; | |
| use Illuminate\Support\Facades\Auth; | |
| class AuthServiceProvider extends ServiceProvider |
| <?php | |
| return [ | |
| 'html_input' => 'strip', | |
| 'allow_unsafe_links' => false, | |
| ]; |
| # If you come from bash you might have to change your $PATH. | |
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export PATH="/usr/local/opt/libpq/bin:/usr/local/sbin:$PATH" | |
| # Homebrew PHP | |
| export PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
| export PATH="/usr/local/opt/[email protected]/sbin:$PATH" | |
| # Homebrew Python | |
| export PATH=/usr/local/share/python:$PATH |
I hereby claim:
To claim this, I am signing this object:
| name: Build and Deploy | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v2 |
| <button class="button"> | |
| Standard Button | |
| </button> | |
| <button class="button button--red"> | |
| Red Button | |
| </button> | |
| <button class="button button--inline"> | |
| Inline Button |
| <?php | |
| // phpcs:disable SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingParameterTypeHint,SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingReturnTypeHint | |
| namespace App\Models\Taxonomy; | |
| use App\Exceptions\TaxonomyRegistrationException; | |
| use Rareloop\Lumberjack\ScopedQueryBuilder; | |
| use Spatie\Macroable\Macroable; | |
| use Tightenco\Collect\Support\Collection; |