Skip to content

Instantly share code, notes, and snippets.

View mildlygeeky's full-sized avatar

Patrick Harrington mildlygeeky

View GitHub Profile
@mildlygeeky
mildlygeeky / _layout.html
Created March 8, 2017 21:08 — forked from engram-design/_layout.html
SEOMatic Setup
<!doctype html>
<html lang="en">
<head>
<!-- Responsive-ness -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SE-Oh -->
{% include '_includes/seo_meta' %}
</head>
@mildlygeeky
mildlygeeky / Installing Imagick with PHP 7.md
Last active March 6, 2016 17:53 — forked from mmikkel/Installing Imagick with PHP 7.md
Installing Image Magick for PHP 7 on a Server Pilot managed server
apt-get install pkg-config libmagickwand-dev -y
cd ~/downloads
wget https://pecl.php.net/get/imagick-3.4.0.tgz
tar xvzf imagick-3.4.0.tgz
cd imagick-3.4.0
/opt/sp/php7.0/bin/phpize
./configure --with-php-config=/opt/sp/php7.0/bin/php-config
make install
rm -rf /tmp/imagick-3.4.0*