This file contains 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 | |
/** | |
* An extremely basic class for creating people objects | |
*/ | |
class Person | |
{ | |
public $employed; | |
public $gender; | |
This file contains 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
trait EnforcableTrait | |
{ | |
/** @return $this */ | |
public function must($otherwise = null) | |
{ | |
return (new class ($this, $otherwise) | |
{ | |
private $parent; | |
private $otherwise; |
This file contains 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 | |
// Helper function. | |
if (! function_exists('timer')) { | |
function timer($expression) | |
{ | |
$start = microtime(true); | |
if ($expression instanceof Closure) { | |
$expression(); |
This file contains 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
# install brew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# update brew | |
brew update | |
# should be added by homebrew installation? | |
sudo chown -R `whoami`:admin /usr/local/opt | |
# Node Version Manager |
This file contains 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
# Install command line developer tools | |
xcode-select --install | |
# Install Brew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Reset brew | |
brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup | |
# Install HTTPIE |
This file contains 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 | |
# Get database name from .env file | |
# | |
DB_DATABASE=$(grep DB_DATABASE .env | cut -d '=' -f 2-) | |
if [ -z $DB_DATABASE ]; then | |
echo 'Could not read database name from .env file' | |
exit | |
fi |
This file contains 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
/** | |
* Create a second table for translations if schema is translatable | |
*/ | |
if (false) { | |
$blueprint = $this->createBlueprint($table.'_translations'); | |
$blueprint->create(); | |
$blueprint->increments('id'); | |
$blueprint->unsignedInteger('entry_id'); |
This file contains 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
# Search: | |
import (\w+) from '@shared.*' | |
# Replace | |
import \{ $1 \} from 'library-js' |
This file contains 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
devServer: { | |
host: 'acp.superv.dev.io', | |
port: 8080, | |
proxy: { | |
'/api': { | |
target: 'http://api.superv.dev.io', | |
pathRewrite: { '^/api': 'acp' }, | |
changeOrigin: true, | |
}, | |
}, |
This file contains 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
find the app's executable name | |
sudo opensnoop -n appName |
OlderNewer