Cooking and Singing

December 10, 2019

Without resorting to reality, one can, given infinite time and resources, produce all conceivable theories. One of these theories is bound to be the “truth”.

Pear Tart Recipe

  • 3 tablespoons butter
  • 1/2 cup sugar
  • 3/4 teaspoon ground cinnamon
  • 3/4 cup flour
  • 1 package cream cheese
  • 1/4 cup sugar
  • 1 egg,
  • 1 can sliced pears
  1. Preheat oven to 425°. Beat butter, sugar and cinnamon until crumbly. Beat in flour.
  2. For filling, beat cream cheese and 1/4 cup sugar until smooth. Beat in egg and vanilla. Spread into crust. Arrange pears over top. Mix cinnamon and remaining sugar; sprinkle over pears.
  3. Bake 10 minutes.

If you choose not to hire a crew, usually more convenient, you will have to show that you are knowledgeable of sailing and can handle the ship competently.

Without resorting to reality, one can, given infinite time & resources, produce all conceivable theories. One of these theories is bound to be the “truth”.

Enjoy!

/** @jsx jsx */
import { jsx } from 'theme-ui'
// eslint-disable-next-line no-unused-vars
import React from 'react'
import { Link } from 'gatsby'
export const Author = ({ post }) => {
  return (
    <>
      {post.author && post.author.node && (
        <>
          <span>by </span>
          <Link
            sx={{ variant: 'special.underlineOnHover' }}
            to={post.author.node.uri}
          >
            {post.author.node.name}
          </Link>
        </>
      )}
    </>
  )
}