Skip to content

Instantly share code, notes, and snippets.

View aliselcuk's full-sized avatar
💭
Reshaping

Ali Selcuk aliselcuk

💭
Reshaping
  • superV
  • Istanbul
View GitHub Profile
@aliselcuk
aliselcuk / builder.php
Last active May 27, 2022 13:28
PHP Builder Pattern Example
<?php
/**
* An extremely basic class for creating people objects
*/
class Person
{
public $employed;
public $gender;
@aliselcuk
aliselcuk / EnforcableTrait.php
Created October 25, 2017 16:50
a PHP trait to abort your methods (optionally)
trait EnforcableTrait
{
/** @return $this */
public function must($otherwise = null)
{
return (new class ($this, $otherwise)
{
private $parent;
private $otherwise;
@aliselcuk
aliselcuk / timer_helpers.php
Created April 7, 2018 22:46 — forked from calebporzio/timer_helpers.php
A simple helper function and macro for timing php scripts and eloquent queries
<?php
// Helper function.
if (! function_exists('timer')) {
function timer($expression)
{
$start = microtime(true);
if ($expression instanceof Closure) {
$expression();
@aliselcuk
aliselcuk / prep-ncv-env.sh
Created April 22, 2018 23:47 — forked from kevyworks/prep-ncv-env.sh
Prepare Dev Machine for: Node Composer & Laravel Valet
# 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
@aliselcuk
aliselcuk / configure-macos.sh
Created September 12, 2018 21:09 — forked from paulcalabro/configure-macos.sh
Script to install everything onto a new Mac
# 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
@aliselcuk
aliselcuk / reset.sh
Last active January 18, 2019 19:20
Bash script to reinstall SuperV cleanly
#!/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
/**
* 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');
@aliselcuk
aliselcuk / gist:03c1c8b43e1699e29848c6273d2814f4
Last active December 7, 2018 02:53
PhpStorm RegEx Search & Replace
# Search:
import (\w+) from '@shared.*'
# Replace
import \{ $1 \} from 'library-js'
@aliselcuk
aliselcuk / gist:e21896ccc2d20729d19092ab6a03b98e
Created December 7, 2018 13:22
Working webpack-dev-server proxy config
devServer: {
host: 'acp.superv.dev.io',
port: 8080,
proxy: {
'/api': {
target: 'http://api.superv.dev.io',
pathRewrite: { '^/api': 'acp' },
changeOrigin: true,
},
},
find the app's executable name
sudo opensnoop -n appName