Thursday, July 22, 2010

Chicken & Roasted Red Pepper Bruschetta Rounds

Chicken & Roasted Red Pepper Bruschetta Rounds


  • 4 slices Texas-style toast
  • 4 Ramekins (or something else round and bakeable)
  • 1 red pepper
  • 1 large (or 2 small) chicken breasts (3/4 lb)
  • hard goat (or other flavorful) cheese (1 c, finely grated)
  • 4 thin slices of tomato
  • 1/4 cup basalmic vinegar
  • basil leaves (~8-12)
  • 1 egg
  • 1 Tbsp flour
  • seasoning (salt, pepper)
Roast red pepper (cut in half, deseed/vein, put cut side down on foil on baking pan, cook an hour at 350-400 or until skin blackens, wrap up in it's foil, set aside for 5 minutes or until cool, peel & discard skin)
While the pepper is roasting, marinate the tomatos with the basalmic (I used a small ziplock) -- turn occasionally.
Cook up the chicken.
Chop up the red pepper & chicken and mix in a bowl with some seasoning (you may want to use some olive oil to help it out) until it starts to want to stick together.
Mix in the egg and flour
Use ramekin (or other round) to cut out circles from the toast.
Separate chicken & pepper mixture equally into the ramekins.
Bake the ramekins and toast until the toast is as crispy as desired (but not too soft).

Plate up the bruchetta: put down the toast, top with the chicken & pepper "patty", a slice of marinated tomato, and 1/4 of the cheese. Broil or torch until the cheese is brown, top with basil leaves and serve.

Tuesday, January 5, 2010

Cranberry Sangria Jam

Cranberry Sangria Jam

  • 2 (12 or 16oz) bags of cranberries
  • 3 cups sugar
  • 2 oranges (zest & juice)
  • 1-2 limes (zest & juice)
  • Red wine (make sure it's something you'd drink!)
  • 1 pouch liquid pectin (optional)
Put the cranberries in a colander, give them a quick rinse and pick out any bad ones or stems.
In a large pot, put the cleaned cranberries.  Zest and juice the fruit into a large measuring device, and add enough wine to make around 2 1/2 cups total liquid.  Dump it into the pot.
Boil for about 6-8 minutes until a lot of the cranberries pop and are soft.  At this point, I decided I wanted more "jam" less whole berry, so I used my stick blender.
I've also been told that the cranberries have a lot of natural pectin and would probably thicken up on their own, but since I added the fruit juice and I wanted it definitely "jam" like, I added a pouch of liquid pectin (Certo) at the end and boiled it for one more minute before putting into jars.

Makes enough to fill seven 1/2 pint jars.

Friday, September 18, 2009

mod_rewrite Voodoo

Ok, so not quite so much voodoo yet... but I have other tweaks in mind for it, and they promise to be more fun.
Background:  I have a new short domain name (flw.bz) resolving to the same place my original domain does (flowbuzz.com).  I decided to keep my flw.bz files in a subfolder (/short).  Oh, and my domain/webserver is virtual (and I think shared). I'm using YOURLS at the moment to provide URL-shortening capability (yay!).
Problem: How to get requests for flw.bz/blahblah to resolve properly while maintaining functionality of Yourls, not ending up in a mod_rewrite endless loop, etc.?
Answer: I tweaked the code in the .htaccess file that came with Yourls to look like this:



RewriteEngine On
# this doesn't do anything for me due to way my server is set up, so I left it commented out
#RewriteBase /

# take anything that's coming in to flw.bz
# and if its not a real file or directory, map it to short/ subfolder
RewriteCond %{HTTP_HOST} ^flw.bz$ [NC]
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_URI} !-d
RewriteRule ^(.*)$ short/$1

# if I've put flw.bz/ in front of another URL, shorten it like a bookmarklet
RewriteCond %{HTTP_HOST} ^flw.bz$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/(http://|https://)(.*)$
RewriteRule ^(.*)$ flwbz/admin/index.php?u=%1%2 [L]

# take anything that's coming in to flw.bz
# and now that it's mapped to short subfolder,
# if it *still* isn't a file or directory send it to YOURLS
RewriteCond %{HTTP_HOST} ^flw.bz$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^short/([0-9A-Za-z]+)/?$ short/yourls-go.php?id=$1 [L]


I may continue to do some tweaks, and probably will write my own PHP catching page and just use the Yourls API page. But after many hours of glazed-eye fiddling with complex mod_rewrite rules, this turned out to work.
[edited to add http catching code]

Friday, June 12, 2009

Jalapeño Margarita Sorbet

Jalapeño Margarita Sorbet

  • 1 1/4 cups sugar
  • 1 1/2 cups water
  • 1 egg white
  • ~1/2 - 2/3 cup lime juice (4-6 limes)
  • lime zest (couple of limes worth)
  • 1/4 tequila
  • 1/4 triple sec
  • 3 jalapeño peppers, deseeded & deveined (use gloves!)

Puree the peppers & water well
Make the simple syrup: boil sugar & peppers/water for a minute or two then pull off the heat.
Beat the egg white, mix in the remaining ingredients (not the syrup yet)
Temper the lime/egg white mixture by adding a little bit at a time of the warm pepper syrup & mixing.
Mix everything, cool completely, then put in your ice cream maker.

This is really tasty... the peppers give it just a teensy bit of "wow" and some great flavor but nothing too overpowering. if you've done a good job deveining them.  I adapted this from a several different sorbet recipes online.  The egg white is supposed to help keep this smooth, creamy, and help it last a while in the freezer.  Not that this will stick around long enough :)

Thursday, April 16, 2009

Converting Entrust Certs

Just a quick tip -- you can convert the PKCS#7 certificates that Entrust exports in a binary format (*.p7c) to an ascii format *.PEM file:

C:\OpenSSL\bin>openssl pkcs7 -in c:\bens_cert.p7c -inform DER -outform PEM -out c:\bens_cert.pem

References:
http://forum.pgp.com/pgp/board/message?board.id=46&thread.id=1148
https://www.sipit.net/CertToolsInstructions