This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/awk -f | |
# Authors: @esperlu, @artemyk, @gkuenning, @dumblob | |
# FIXME detect empty input file and issue a warning | |
function printerr( s ){ print s | "cat >&2" } | |
BEGIN { | |
if( ARGC != 2 ){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Foundation\Auth\Access\AuthorizesRequests; | |
use Illuminate\Foundation\Auth\Access\AuthorizesResources; | |
use Illuminate\Foundation\Bus\DispatchesJobs; | |
use Illuminate\Foundation\Validation\ValidatesRequests; | |
use Illuminate\Routing\Controller as BaseController; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
const yargs = require('yargs') | |
const express = require('express') | |
const request = require('request') | |
const uuid = require('node-uuid') | |
const querystring = require('querystring') | |
const opener = require('opener') | |
let argv = require('yargs') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Support\Collection; | |
abstract class AbstractEloquent implements BaseRepositoryInterface | |
{ | |
/** | |
* Model repository. | |
*/ | |
protected $resource; |