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
| # ATTENTION PLEASE! | |
| # NOTE BY @riwazp7 | |
| # Note for future visitors of this gist: Mac OS has Apache Benchmark by default ab --help | |
| curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz | |
| tar -xzf libtool-2.4.2.tar.gz | |
| cd libtool-2.4.2 | |
| ./configure && make && sudo make install | |
| # brew install 'https://raw.github.com/simonair/homebrew-dupes/e5177ef4fc82ae5246842e5a544124722c9e975b/ab.rb' |
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\Contracts\ArrayableInterface; | |
| use Illuminate\Support\Contracts\JsonableInterface; | |
| class Excel implements ArrayableInterface, JsonableInterface{ | |
| protected $objPHPExcel; | |
| public function __construct($file){ | |
| if($file instanceof \SplFileInfo){ | |
| $filename = $file->getRealPath(); |
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 | |
| /** | |
| * A helper file for Laravel 5, to provide autocomplete information to your IDE | |
| * Generated for Laravel 5.5.13 on 2017-09-28. | |
| * | |
| * @author Barry vd. Heuvel <barryvdh@gmail.com> | |
| * @see https://github.com/barryvdh/laravel-ide-helper | |
| */ | |
| namespace { | |
| exit("This file should not be included, only analyzed by your IDE"); |
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
| #!/bin/bash | |
| ################ | |
| # Uncomment if you want the script to always use the scripts | |
| # directory as the folder to look through | |
| #REPOSITORIES="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| REPOSITORIES=`pwd` | |
| IFS=$'\n' |
NewerOlder