I hereby claim:
- I am kauhat on github.
- I am kauhat (https://keybase.io/kauhat) on keybase.
- I have a public key whose fingerprint is FB47 53D1 3E9B 0946 9BED ACCC AA1F 2C34 F36C 2863
To claim this, I am signing this object:
# Add ~/bin directory to path if it exists | |
if [ -d "$HOME/bin" ] ; then | |
PATH="$PATH:$HOME/bin" | |
fi | |
# Set up alias for WP CLI | |
alias wp="php-7.2 $HOME/bin/wp-cli.phar" |
SELECT *, STR_TO_DATE(application.completed, '%m-%d-%y') AS `dateCompleted` | |
FROM `web244-newassess`.application | |
WHERE | |
completed | |
HAVING | |
(dateCompleted BETWEEN '2013-04-01' AND '2015-04-01') | |
ORDER BY dateCompleted; |
hr | |
{ | |
position: relative; | |
height: 1px; | |
margin: 2em 0; | |
padding: 0; | |
clear: both; | |
text-align: center; |
#!/bin/sh | |
workdirname="error-logs"; | |
mkdir -p ${workdirname}; | |
workdir=$(cd $workdirname; pwd); | |
echo "Finding all error_log files" | |
find /home -maxdepth 16 -name "error_log" -exec echo -n -e {}"\0" \; \ | |
| du -hc --files0-from=- \ |
# Add correct content types for fonts | |
AddType application/vnd.ms-fontobject .eot | |
AddType font/ttf .ttf | |
AddType font/otf .otf | |
AddType font/x-woff .woff | |
AddType image/svg+xml .svg | |
# Enable keep-alive if we can | |
<IfModule mod_headers.c> | |
Header set Connection keep-alive |
git submodule sync | |
git submodule update --init --recursive --remote |
I hereby claim:
To claim this, I am signing this object:
version: '2' | |
services: | |
applications: | |
image: tianon/true | |
volumes: | |
- ${APPLICATION}:/var/www | |
- node_local:/var/www/node_modules | |
- composer_local:/var/www/vendor |
@component('panel') | |
@slot('title') | |
Example | |
@endslot | |
{{-- Buttons and input inside 'panel-heading' --}} | |
@slot('actions') | |
<a class="btn btn-default" href="#">Create</a> | |
@endslot |
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\Http\Controllers\Controller; | |
use Cache; | |
use Omnipay; | |
use Omnipay\Common\CreditCard; |