Apple Empanadas

Some flour tortillas, an egg wash and some cooked apples. Let's roll them and fry them!

Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Apple Fritters

After visiting & picking apples at an orchard, I have plenty of material to make some yummy desserts.

This is a quick batter with apple bits in them and then I deep fried to make something like a donut hole.
Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Black Gold

Mmmm, now that is good and fresh -- homemade chocolate sauce. This stuff is so easy to make and fun, too.

Click to see an enlarged image.

1 1/2 Csugar
3/4 Cwater
2 Tlight corn syrup
1/4 tkosher salt
3/4 Ccocoa, unsweetened
3/4 stickbutter, chopped into table spoon pieces
1 Tvanilla extract
Combine sugar, corn syrup and water in a medium sauce pan. Bring sugar solution to a boil. Add salt. Reduce heat to medium and, using a whisk, mix in the cocoa. Add one piece of butter at a time and mix it in before adding the next piece. Try to keep the liquid at a low simmer, which might require increasing the heat. You can replace the cocoa and butter with Dutch-processed cocoa.

After the ingredients are mixed in, let the syrup come to a boil then reduce heat to medium low, but keep a simmer. Reduce the syrup to a slight thickening.

After it is cool, you can pour it into a squirt bottle. After the chocolate sauce is safely put away, you can get your first cup of hot chocolate. Set the pan over medium low heat. Deglaze your pan by adding a little milk and scrapping the pan. Slowly add more milk to deglaze the pan. Scrap the sides and bottom to work all the chocolate into the milk.

Rachel is enjoying the first cup of hot chocolate.

Click to see an enlarged image. Click to see an enlarged image.

Rachel is also enjoying licking out the used funnel.
Click to see an enlarged image.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Almond Butter

After Liz's visit, we talked about what can someone do with almonds besides eating straight. I suggested almond butter. Now I finally made it.

I roasted in my oven at 250° for about 30 minutes a good handful of almonds. After they cooled completely, I ground them in my food processor until they became butter. Very simply and very good flavor. I would describe the taste as smoother then peanut butter.


Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

I'm going to win

They say pride comes before the fall. This might be true, but this chili is amazing!! There will be a chili cook off in my department soon, so I had to make a dry run of my chili. I think this is terrific stuff and I am no longer using the store-bought season packet!

Before

Click to see an enlarged image.

After

Click to see an enlarged image.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Cookie Crumb Crusts: Pink and Mini

Our friend Laura, blew me away when she described this way of making a crust. It totally makes sense, but I never thought about it. The first set of pictures is the mini pies as the title suggests. I'm using my coffee bean grinder to do all the work.

Grind up or crush up a few cookies, pictured here is a sugar cookie and chocolate chip. Add a few pecans and then grind.
Click to see an enlarged image.

Grinding makes the crumb.
Click to see an enlarged image.

Pour the crumb into any container. It doesn't have to be oven safe, because it is only going to see the inside of the refrigerator.
Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.

Click to see an enlarged image.
Now for the pink. This time I using a full 9" pie pan using animal cookies.
Click to see an enlarged image.
Crushed
Click to see an enlarged image.
Butter to make it stay togetyer.
Click to see an enlarged image.
CHOCOLATE pudding
Click to see an enlarged image.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Use the Title from Content Pages in Masterpage Design

Warning: this is a geek posting. Every so often, you'll find them here. I am a programmer by trade and a cook by passion.

Situation:
You are using ASP.NET and have Masterpages. You want to display the title for your content pages, but there is no <title> tag on the content pages. Instead, you notice there is a title attribute on the @Page directive. How does this work? How can you take advantage of it?

Follow this set up to display the value from the title attribute. I added a few advanced concepts that adds a degree of professionalism.

Masterpage HTML Source
<head id="headPage" runat="server">
  <title></title>
</head>


Masterpage codebehind (VB.NET)
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
     headPage.Title = HttpUtility.HtmlEncode(headPage.Title)
End Sub

Content page
<%@ Page ... MasterPageFile="~/MyMaster.Master" title="Recipe Details" %>

This is it. Try it out. There is nothing more you have to do. Keep reading if you want to see some more you can do.

Masterpage codebehind (VB.NET) Advanced Topic
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
     headPage.Title = String.Format("{0}{1}{2}", My.Settings.WebPageTitlePrefix, HttpUtility.HtmlEncode(headPage.Title), My.Settings.WebPageTitleSuffix)
End Sub

Here is the idea. Have you noticed professional sites have their name on every page's title? If you visit Microsoft.com's Office pages, then you'll see "Microsoft Office Online" in every title. Use the above code to do the same thing.

You either need to create the two settings I have listed or replace those two settings (WebPageTitlePrefix and WebPageTitleSuffix) with literal string values. I like the settings because the value for My.Settings are stored in the web.config. This technique allows me to change the value without having to compile the application and deploy it. I can simply access the web.config and edit the values.


Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Apple Crumble in a Cup

Start off with a few staples. Notice I'm using coffee cups instead of ramekins. The idea here is to have one apple per cup which is a single serving.
Print outs:
PDF Version of the recipe (updated 10/24/2008)
PDF of helpful apple information

Click to see an enlarged image.
Skin the apple and core it.
Click to see an enlarged image.
In this case, I chopped the two apples since I'm doing two servings.
Click to see an enlarged image.
Add lots of cinnamon!
Click to see an enlarged image.
Add 1 T brown sugar per apple, so 2 T total for me.
Click to see an enlarged image.
And shake it all about. That's how we do the hokey-pokey
Click to see an enlarged image.
Dish the apple filling to two coffee cups -- don't forget the little bit of apple juice that came off the apples.

In another dish, mix 2 T granola cereal, 1 T brown sugar, 1 T flour & 1/2 T melted butter per apple.
Click to see an enlarged image.
Mix.
Click to see an enlarged image.
Pour topping on apples.
Click to see an enlarged image.
Bake at 400 degrees for 20 minutes. Let them cool for 5 to 10 minutes. Since the cups are ceramic, they are going to hold a lot of heat for a long time. BE CAREFUL!

Tip: it is done when you hear boiling and the topping is becoming a darker color.
Click to see an enlarged image.
Enjoy!

Location: PostList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: