Skip to main content

Vegan Tamale Sauce

Vegan Tamale Sauce

Tamale Sauce with Chili Powder

Here's a straightforward recipe for a flavorful tamale sauce:

Ingredients:

  • 2 tablespoons vegetable oil
  • 2 tablespoons all-purpose flour
  • 1/4 cup chili powder (adjust according to your preference for heat)
  • 2 cups chicken or vegetable broth
  • 1 can (8 ounces) tomato sauce
  • 1 teaspoon ground cumin
  • 1/2 teaspoon garlic powder
  • 1/2 teaspoon onion powder
  • Salt to taste

Instructions:

  1. Make the Roux: In a medium saucepan, heat the oil over medium heat. Add the flour and stir together for about 1 minute, or until the mixture becomes a light, golden roux.
  2. Add Chili Powder: Stir in the chili powder to the roux and cook for another minute.
  3. Add Liquids: Slowly pour in the chicken or vegetable broth while stirring constantly to prevent lumps. Add the tomato sauce to the mixture.
  4. Season the Sauce: Stir in the ground cumin, garlic powder, and onion powder. Season with salt to taste.
  5. Simmer: Bring the sauce to a simmer and let it cook for about 15 minutes, or until it has thickened to your liking. Stir occasionally to prevent sticking.
  6. Adjust Consistency: If the sauce is too thick, you can thin it by adding a little more broth. If it's too thin, let it simmer for a few more minutes to thicken.

Comments

Popular posts from this blog

Running 2560x1080 on LG 29UM57-P on an old MacBook Pro OSX El Capitan

Yes. A mid-2011 MacBook Pro running OSX El Capitan can drive a 2560x1080 monitor via HDMI. I was not able to get 60 Hz working. I am settling with 53 Hz. I tried many settings before finding something that works. The refresh rate seems fine to me. Maybe the text could be clearer but for a $200 monitor running this resolution, I'll take it. Apple MacBook 2015 retina resolution is 2560 x 1800. Consider buying a better monitor that may literally give you fewer headaches. Install  SwitchResX Follow the instructions for disabling SIP After rebooting, run SwitchResX via System Preferences Select your LG monitor Click Custom Resolutions Click the + icon  Enter these settings  ( source ) Exit SwitchResX and save Reboot Run SwitchResX via System Preferences Select your LG monitor Click Current Resolutions Select the 2560x1080, 53 Hz setting Enable SIP If you discover better settings, please leave a comment.

Collecting and graphing metrics via Apache Camel, Statsd, and Graphite

If you're curious about Apache Camel's metrics reporting via Dropwizard , this guide will help you get Graphite running in a Docker container. Then you will run an instrumented Camel application and view its metrics via Graphite's browser UI. (1) Install Docker There are many ways to do this depending on your platform. Google it. (2) Install and run the Docker container for Statsd and Graphite Refer to  https://github.com/hopsoft/docker-graphite-statsd The instructions infer that you can run the container without specifying port mappings. This is plain wrong. So use the following command to start the container: docker run -d --name graphite --restart=always -p 80:80 -p 8125:8125/udp hopsoft/graphite-statsd It is not necessary to enable Graphite's UDP listener. Statsd receives metrics via UDP and forwards them to Graphite over TCP. (3) On Windows and OSX, determine the IP address of the graphite Docker container On Linux, you can use localhost. On Win...

How to fix "command aws.codeWhisperer.rejectCodeSuggestion not found"

AWS CodeWhisperer and GitHub Copilot don't get along in VSCode. Rejecting code suggestions sometimes triggers the pop-up (repeatedly) "command aws.codeWhisperer.rejectCodeSuggestion not found." This is especially annoying when using Vim since it breaks the Escape key which is interpreted by VSCode as rejecting code suggestions. Go to Command Palette (Command+Shift+P) Search for: Open Keyboard Shortcuts (JSON) Add: { "key": "escape", "command": "-aws.codeWhisperer.rejectCodeSuggestion", "when": "aws.codewhisperer.connected && inlineSuggestionVisible && !editorReadonly || isCloud9 && suggestWidgetVisible && !editorReadonly" } Restart VS code