Skip to content

Instantly share code, notes, and snippets.

@eborden
eborden / cheesecake.md
Last active January 15, 2021 02:57
My Mom's South Philly Cheesecake

Story

My Mother worked as a special needs teacher at Saint Catherine's school in Philadelphia. She became friends with a parent of two autistic twins. This mother was South Philly in every way. Big hair, big attitude, larger than life. She shared this recipe with my mother and it has been a staple in our household.

Ingredients

  • 1 lb cream cheese
  • 1 lb ricotta cheese
  • 6 eggs
@pat
pat / webmock_json_helpers.rb
Created December 14, 2021 06:52
Helpers for stubbing JSON requests with Webmock
# frozen_string_literal: true
require "delegate"
require "webmock/rspec"
module WebmockJSONHelpers
def stub_request(method, uri)
RequestStub.new(super)
end