Skip to content

Instantly share code, notes, and snippets.

@larrybotha
larrybotha / A.markdown
Last active February 10, 2025 11:43
Export multiple artboards in Adobe Illustrator to png, or pdf

Export multiple Adobe Illustrator artboards to png, jpg, pdf

This is a reference to Matthew Ericson's article Export Illustrator Layers and/or Artboards as PNGs and PDFs in case something happens to happen to the article, and if I just forget where to find the exporter online.

Usage

  • Drop MultiExporter.js into /Applications/Adobe\ Illustrator\ CS6/Presets.localized/en_GB/Scripts
  • Restart Illustrator
@larrybotha
larrybotha / A.markdown
Last active August 29, 2015 14:01
Nginx site specific configs.

Nginx Configs For Homebrew Install

A list of configs specific to different environments.

Found at /usr/local/etc/nginx/

var distanceInput = document.getElementById("distance");
@larrybotha
larrybotha / A.markdown
Last active August 29, 2015 14:07
Fix WordPress update issues on local Apache sites by updating Apache's User and Group

Fix WordPress Asking For FTP Credentials On Mac

Credit goes to Justin Kopepasah: Change Local Apache User on a Mac (Mavericks)

Apache permissions on Mac (Mavericks) prevents uploads on certain local environments, particularly updating of WordPress' core and plugins (WordPress will ask for FTP credentials).

To fix this, change Apache's default User and Group.

# /etc/apache2/httpd.conf
@larrybotha
larrybotha / A.markdown
Created October 31, 2014 10:44
Useful Commands in PSQL
@larrybotha
larrybotha / install_rbenv.sh
Last active August 29, 2015 14:27 — forked from sdbondi/install_rbenv.sh
Install our development ruby environment
#!/usr/bin/env bash
set -eo pipefail
# Install rbenv
if [[ ! -d ~/.rbenv ]]; then
echo "Installing rbenv"
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
if [[ ! `grep 'eval "\$(rbenv init -)"' ~/.bashrc` ]]; then
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
@larrybotha
larrybotha / install_wkhtmltoimage.sh
Last active August 29, 2015 14:27 — forked from sdbondi/install_wkhtmltoimage.sh
Install wkhtmltoimage
#!/usr/bin/env bash
set -eo pipefail
DEPS='openssl build-essential libssl-dev libxrender-dev git-core libx11-dev libxext-dev libfontconfig1-dev libfreetype6-dev fontconfig xfonts-75dpi libjpeg-turbo8'
echo $DEPS | xargs apt-get -y install
rm -f /tmp/wkhtmltox-0.12.1_linux-trusty-amd64.deb
wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2.1/wkhtmltox-0.12.2.1_linux-trusty-amd64.deb -P /tmp
dpkg -i /tmp/wkhtmltox-0.12.2.1_linux-trusty-amd64.deb
@larrybotha
larrybotha / A.markdown
Last active January 27, 2016 13:43
Multiple Bundles With Gulp, Browserify, and React

Multiple Bundles With Gulp, Browserify, and React

@larrybotha
larrybotha / A.markdown
Last active January 27, 2016 13:43
Multiple Bundles With Gulp and JSPM

Multiple Bundles With Gulp and JSPM