Skip to content

Instantly share code, notes, and snippets.

@justinmayer
justinmayer / Menlo-for-Powerline.zip
Last active November 18, 2021 17:45
Menlo font, patched for Powerline. Includes regular, bold, italic, and bold italic variants.
@justinmayer
justinmayer / fabfile.py
Created December 10, 2012 21:50
Example fabfile for publishing Pelican sites via Fabric
from fabric.api import *
import os
import fabric.contrib.project as project
# Local path configuration (can be absolute or relative to fabfile)
env.theme = 'themes/your-theme'
env.deploy_path = '/absolute/path/for/generated/output'
# Remote server configuration
prod = 'username@server.example.com:22'