Go to WordPress Installation (e. g. wordpress/)
cd wordpress/
Download WP Command Line Interface
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
Dry-Run
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
// Breakpoints | |
$tiny: 320; | |
$small: 480; | |
$medium: 800; |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$rem-baseline: 16px !default; | |
// Function: Pixel to REM | |
@function rem($values...) { |
Go to WordPress Installation (e. g. wordpress/)
cd wordpress/
Download WP Command Line Interface
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
Dry-Run
/* ========================================================================== | |
Module | |
========================================================================== */ | |
var Module = (function() { | |
var options = { | |
$this: false, | |
}; |
'preVars' => | |
array ( | |
0 => | |
array ( | |
'GETvar' => 'L', | |
'valueMap' => | |
array ( | |
'en' => '1', | |
'tr' => '2', | |
'es' => '3', |
function test() { | |
alert('Klugscheißer'); | |
} |
alias web='cd ~/Documents/Websites' | |
alias apps='cd ~/Documents/Apps' | |
alias okgrunt='git pull && sublime . && grunt' | |
alias ok='git pull && sublime .' | |
alias okgo='git pull && sublime . && vagrant up' | |
alias okgogrunt='git pull && sublime . && vagrant up && npm install && grunt' | |
alias okupdate='ncu -u && composer update' | |
alias subl='sublime .' |
<?php | |
namespace App\Http\Controllers; | |
use App\Models\Project; | |
use Illuminate\Http\Request; | |
class ProjectController extends Controller | |
{ | |
public function update(Request $request, Project $project) |
<?php | |
namespace App\Providers; | |
use Illuminate\Support\Facades\Route; | |
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | |
class RouteServiceProvider extends ServiceProvider | |
{ | |
protected $namespace = 'App\Http\Controllers'; |
<?php | |
namespace App\Providers; | |
use Laravel\Passport\Passport; | |
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; | |
class AuthServiceProvider extends ServiceProvider | |
{ | |
// … |