Skip to content

Instantly share code, notes, and snippets.

@zetter
zetter / cheese-and-marmite-flapjacks.md
Created September 20, 2020 16:43
Cookbook example
layout title from link quote type
cookbook
Cheese and marmite flapjacks
Sarah Cook (Olive)
A great way to pack in the oats without adding tons of sugar – these savoury flapjacks combine cheese and Marmite together for an umami flavour explosion.
savoury

I was looking for a savoury recipe to use up some oats. Once I was out of marmite and used white miso paste instead.

@zetter
zetter / cache_recipies.rb
Created December 27, 2020 13:57
Script for caching external links from a jekyll site.
require "jekyll"
require "ostruct"
require "faraday"
def data_for_file(path)
content = File.read(path)
if content =~ Jekyll::Document::YAML_FRONT_MATTER_REGEXP
content = $POSTMATCH
data = SafeYAML.load(Regexp.last_match(1))
return data