In your command-line run the following commands:
brew doctorbrew update
| #!/bin/bash | |
| export LDFLAGS=-Wl,-rpath=/var/task/lib/ | |
| export PKG_CONFIG_PATH='/canvas/lib/pkgconfig' | |
| export LD_LIBRARY_PATH='/canvas/lib':$LD_LIBRARY_PATH | |
| C_INCLUDE_PATH=/canvas/include/ | |
| CPLUS_INCLUDE_PATH=/canvas/include/ | |
| export C_INCLUDE_PATH | |
| export CPLUS_INCLUDE_PATH |
| <?php | |
| /** | |
| * Retrieve remote image dimensions | |
| * - getimagesize alternative | |
| */ | |
| /** | |
| * Get Image Size | |
| * |
In your command-line run the following commands:
brew doctorbrew updateOutdated note: the process is a lot easier now: after you brew install postgresql you can initialize or stop the daemon with these commands: brew services start postgresql or brew services stop postgresql.
new out put may look like
To have launchd start postgresql now and restart at login:
brew services start postgresql
Or, if you don't want/need a background service you can just run:
pg_ctl -D /usr/local/var/postgres start
| <select class=""> | |
| <option>Select Country...</option> | |
| <option value="AF">Afghanistan</option> | |
| <option value="AL">Albania</option> | |
| <option value="DZ">Algeria</option> | |
| <option value="AS">American Samoa</option> | |
| <option value="AD">Andorra</option> | |
| <option value="AO">Angola</option> | |
| <option value="AI">Anguilla</option> | |
| <option value="AQ">Antarctica</option> |
| // 1 | |
| $mock = \Mockery::mock(Newsletter::class); | |
| $mock->shouldReceive('someMethod')->with('key', $value)->once(); | |
| app()->instance(Newsletter::class, $mock); | |
| // 2 | |
| $this->instance(Newsletter::class, \Mockery::mock(Newsletter::class, function($mock) { | |
| $mock->shouldReceive('someMethd')->with('key', 'value')->once(); |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; | |
| use Illuminate\Support\Facades\Gate; | |
| class AuthServiceProvider extends ServiceProvider | |
| { | |
| /** |
| Mudules | Use |
|---|---|
libapache2-mod-php7.3 |
server-side, HTML-embedded scripting language (Apache 2 module) |
libphp7.3-embed |
HTML-embedded scripting language (Embedded SAPI library) |
php7.3 |
server-side, HTML-embedded scripting language (metapackage) |
php7.3-bcmath |
Bcmath module for PHP |
php7.3-bz2 |
bzip2 module for PHP |
php7.3-cgi |
server-side, HTML-embedded scripting language (CGI binary) |
php7.3-cli |
command-line interpreter for the PHP scripting language |
| # Source From https://gist.github.com/jlong/2428561 | |
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" |
| Host github.com | |
| User git | |
| AddKeysToAgent yes | |
| IdentityFile ~/.ssh/id_rsa |