alias pa="php artisan"
alias g:st="git status"
alias g:status="git status"
alias g:acm="git add . && git commit -m"
alias g:p="git push"
version: "3.3" | |
services: | |
job: | |
container_name: hackthon_job | |
build: | |
context: ./python-hackathon # specify the directory of the Dockerfile | |
args: | |
ENV: development | |
image: python-hackathon |
# This will retrieve v8 7.4.288.25 when installled | |
wget https://raw.githubusercontent.com/Homebrew/homebrew-core/0a6171330678879285f2c566db9349da421d6f62/Formula/v8.rb | |
brew install v8.rb | |
brew list v8 | |
# You will see this: | |
# /usr/local/Cellar/v8/7.4.288.25/bin/d8 | |
# /usr/local/Cellar/v8/7.4.288.25/libexec/include/ (21 files) | |
# /usr/local/Cellar/v8/7.4.288.25/libexec/ (7 files) |
<?php | |
namespace App\Traits; | |
trait FullTextSearch | |
{ | |
/** | |
* Replaces spaces with full text search wildcards | |
* | |
* @param string $term |
<?php | |
namespace App\Macros\QueryBuilder; | |
use Illuminate\Support\Collection; | |
use Illuminate\Database\Eloquent\Builder; | |
class JsonPaginate | |
{ |