Skip to content

Instantly share code, notes, and snippets.

@caneco
caneco / A_Devs_Burnout.md
Last active January 21, 2018 08:12
A Dev's Burnout // LandingFestival Berlin

A Dev's Burnout

#CallForSpeakers pitch for #LandingFestival Berlin 2018 (March 14, 15)

Vote for this talk to be selected by giving a star ★ this gist.

More info on the Festival at: landingfestival.com/berlin

Description

@mviitanen
mviitanen / create-jekyll-post.sh
Last active February 24, 2018 16:00
A shell script to create a new jekyll post. Maybe there is an easier way, but this script generates a basic markdown post for jekyll. It has head matter, samples of some common formatting, and a link to a more complete documentation of the format.
#!/bin/bash
if [ "$#" -ne 1 ] ; then
echo "Usage: $0 <title>" >&2
exit 1
fi
title=`echo "$1" |sed 's/ /-/g'`
fileName="_posts/`date +%Y-%m-%d-$title.markdown`"