Skip to content

Instantly share code, notes, and snippets.

View betawax's full-sized avatar

Holger Weis betawax

View GitHub Profile
@betawax
betawax / gist:7160345
Last active December 26, 2015 13:39
Laravel foreign key schema
$table->integer('foobar_id')->unsigned()->nullable();
$table->foreign('foobar_id')->references('id')->on('foobar')->onUpdate('cascade')->onDelete('set null');
@betawax
betawax / .gitignore
Last active December 23, 2015 11:19
Xcode 5 .gitignore
*.mode1v3
*.mode2v3
*.pbxuser
*.perspectivev3
*.xcworkspace
xcuserdata
.DS_Store
@betawax
betawax / gist:6613423
Created September 18, 2013 18:31
Count Git commits
git rev-list --count HEAD
git rev-list --count <branch>
@betawax
betawax / absolute-center.css
Last active December 20, 2015 22:59
CSS Absolute Centering
.absolute-center {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
@betawax
betawax / bootstrap.html
Last active February 2, 2016 17:45
Bootstrap
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="/assets/css/application.css" rel="stylesheet" />
@betawax
betawax / enum.php
Last active December 19, 2015 03:09
PHP Enumeration
<?php
abstract class Foobar {
const Foo = 1;
const Bar = 2;
}
var_dump(Foobar::Foo); // int(1)
@betawax
betawax / laravel-querylog.php
Last active December 18, 2015 19:09
Laravel query log
\DB::flushQueryLog();
dd(print_r(\DB::getQueryLog()));
@betawax
betawax / gist:5765108
Last active December 18, 2015 09:59
PHP artisan alias
alias artisan="php artisan"
@betawax
betawax / gist:5620114
Last active December 17, 2015 13:49
Apache benchmark
ab -t 10 -c 10 <host>
@betawax
betawax / benchmark.php
Last active December 17, 2015 05:39
PHP benchmark
$bm_start = microtime(true); for ($bm_i=0; $bm_i<1000; $bm_i++) {
// Code to benchmark
} printf("%s\n", number_format((microtime(true)-$bm_start)/$bm_i, 10));