Skip to content

Instantly share code, notes, and snippets.

View grumpysi's full-sized avatar

Simon Nicklin grumpysi

  • The Greenhouse People
  • Stoke-on-Trent, UK
  • X @SimonNjO
View GitHub Profile
@grumpysi
grumpysi / Find files that have changed in the last 7 days
Last active August 30, 2017 12:00
Find files that have changed in the last 7 days
find . -type f -mtime -7
@grumpysi
grumpysi / Install Imagemagick PHP 7.0
Last active January 28, 2020 13:58
Install Imagemagick on Laravel Homestead box Ubuntu 14 + PHP 7.0
sudo apt-get update && sudo apt-get install -y imagemagick php-imagick && sudo service php7.0-fpm restart && sudo service apache2 restart