Skip to content

Instantly share code, notes, and snippets.

View vijaybajrot's full-sized avatar
🏠
Working from home

Vijay Bajrot vijaybajrot

🏠
Working from home
View GitHub Profile
@vijaybajrot
vijaybajrot / docker-compose.yml
Last active July 16, 2021 11:06
Hackathon Docker compose
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
@vijaybajrot
vijaybajrot / macos-mojave-php72-v8js.sh
Created September 3, 2019 13:35 — forked from aozisik/macos-mojave-php72-v8js.sh
Installing PHP v8js on Ubuntu 18.04 Bionic or Mac OS Mojave (brew)
# 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)
@vijaybajrot
vijaybajrot / FullTextSearch.php
Created July 24, 2019 07:36
Full Text Search In Mysql and Laravel
<?php
namespace App\Traits;
trait FullTextSearch
{
/**
* Replaces spaces with full text search wildcards
*
* @param string $term
@vijaybajrot
vijaybajrot / aliases.md
Last active April 11, 2019 13:52
Git, PHP, NPM Aliases for zsh / bash

php

alias pa="php artisan"

git

alias g:st="git status"
alias g:status="git status"
alias g:acm="git add . && git commit -m"
alias g:p="git push"
@vijaybajrot
vijaybajrot / JsonPaginate.php
Last active December 28, 2022 04:36
Get paginate links and data for Json Response with `data` and `links` keys.
<?php
namespace App\Macros\QueryBuilder;
use Illuminate\Support\Collection;
use Illuminate\Database\Eloquent\Builder;
class JsonPaginate
{