Skip to content

Instantly share code, notes, and snippets.

View samlester's full-sized avatar

Sam Lester samlester

View GitHub Profile
@samlester
samlester / mac-setup.sh
Last active April 1, 2024 16:53
Script to setup a new Mac
# Mac setup script
# By Sam Lester
# Originally based on https://gist.github.com/codeinthehole/26b37efa67041e1307db
# Usage:
# - Add email address and any additional apps to this file
# - Run sh ./mac-setup.sh
# - Run installers for apps that have them (Adobe Creative Cloud, Microsoft Office)
# - Install apps that aren't on cask (Magnet, Mactracker, iA Writer, Hand Mirror)
@samlester
samlester / _macros.html
Last active November 4, 2015 15:20
Retina image macros for Craft CMS
{% macro srcset(image, desiredWidth, desiredHeight) %}
{%- spaceless %}
{# Calculate the widths #}
{% set width = desiredWidth %}
{% set width2x = desiredWidth * 2 %}
{# Calculate the heights if they exist #}
{% if desiredHeight %}
{% set height = desiredHeight %}