Month: April 2021

55 Days of Grilling: April 16

We’d made ribs a few weeks ago using my usual pressure cooking-followed by high temp cooking to caramelize the sauce approach. While that works well in an oven — where the falling-apart-tender ribs sit safely in a baking dish — it’s not great for grilling. Scott wondered how cooking some ribs just on the grill would work out. I spent some time researching how people make bbq ribs on gas or electric grills and came up with a cooking approach that sounded reasonable — low temp, long cook, and wrapped in aluminum so they don’t dry out.

After washing the ribs and removing the silver skin, I rubbed them with a blend of salt, paprika, chipotle pepper, black pepper, cayenne pepper, thyme, and garlic. I put the grill’s temperature sensor into a thick, meaty section and wrapped them in aluminum foil. The grill was heated to 300° F. The ribs cooked for about 90 minutes — the internal temperature was 180° F, which was in the range the cooking technique indicated. I took them inside and carefully unwrapped the foil.

I cut the rack in half because we had two different sauces we wanted to try. The larger half was liberally brushed with Guy Fieri Apple BBQ sauce, and the smaller half was brushed with the Brown Sugar version from the same company. The apple one smelled like some hand soap that had come with the house — not like actual apple, but like apple fragrance oil. I read and re-read the ingredients trying to figure out what the smell was, but didn’t find any artificial flavors listed.

I cranked the grill (set to 600° F, but never got over 550° F) and cooked the ribs for five minutes.

I then brushed more sauce over the ribs, flipped them, and cooked them for five more minutes.

I flipped them and allowed them to cook for another minute because the sauce on the side facing up hadn’t caramelized.

I brought the ribs inside and let them rest for a bit while everyone got ready for dinner.

Scott sliced the ribs, and dinner was ready. The BBQ sauce wasn’t great — the sauces were quite vinegar-y too. The ribs weren’t falling apart like the double-cooked ones we made a few weeks ago, but it could have used a little more time on the grill to get more tender and fully render the fat. But it was a nice meal (and an interesting experiment).

LARPing the Trial

I wish live action role playing were permissible in jury trials. As we’ve been watching the Derek Chauvin trial, the defense presented body worn camera video from a 2019 traffic stop that involved George Floyd. The retired police officer testified that Mr. Floyd was not following instruction and such … then they rolled the video. Dude goes up to the car and yells something like ‘show me your hands’. Mr. Floyd raised his hands in the air. The officer then repeatedly yelled for him to both “unbuckle your seat belt” and “show me your hands” … two contradictory commands. The officer then ordered Mr. Floyd’s hands on the dash and the officer on the other side of the car ordered (him? the driver?) to put their hands on their head. The officer then shoves Mr. Floyd’s hands to the dash. This doesn’t seem to be someone refusing to follow instructions — this seems like someone trying to follow instructions while two different people shout two different directions.

What’s that got to do with LARP’ing? Well — imagine if you were on the jury and jurors were paired up. Each sat in a chair six feet apart (which is more distance than provided in a car) while two people with guns drawn march up behind them and start yelling orders to them. How well do you think you’d do at following the instructions from the guy closest to you?

Does it now seem more reasonable to say things like “I don’t want to get shot!”? And, since it’s a demonstration, you know the guns aren’t loaded. I’ve had a gun waved in my face exactly twice in my life — once when I took too long to pull over on a traffic stop. The second when I was visiting a friend at work and someone decided to rob the joint. In both cases, it was incredibly frightening. The cops, in the second instance, were somewhat bemused by the fact I couldn’t tell them a single thing about the suspect but could have spent an hour detailing the gun.

JQuery – Finding a set of checkboxes

A corollary to my JavaScript modifying checkbox values when the box is checked or unchecked … I needed a way to reset the form (in my form, the default is for the boxes to be checked and the value to be 1). The following code identifies all checkboxes with a particular class, checks them, and sets the value to 1.

/**
 * This function checks off each checkbox of the input class
 *
 * @param {string} strCheckboxClass     Name of class identifying in-scope checkboxes
 * @return {null} 
 *
 * @example
 *
 *     checkAllDatabases ('MyBoxes');
 */
 function checkAllDatabases(strCheckboxClass){
    arrayCheckboxes = $('.'+strCheckboxClass);
    for(i = 0; i < arrayCheckboxes.length; i++) {
        $( '#'+arrayCheckboxes[i].name).prop( "checked", true );
        $( '#'+arrayCheckboxes[i].name).val(1);
    } 
}

Changing checkbox value when (un)checked

This bit of code handles another rather esoteric scenario — I have a generic “go to this URL and download the resultant Excel file” JavaScript function. This is because I write a lot of reporting tools and didn’t want to write a lot of code for each new tool. The template is an input form with a submit button that calls the generic function. Params for the elements on the form from which values are read, the URL to call to generate the report, and the POST elements into which each corresponding form value is inserted gets stuffed. Works great for text inputs. Works fine for drop-downs. But the value of a checkbox is really a combination of the potential value (from the value tag) and the checked state. That is — my Button 1 has a potential value of 1, but if the box is checked or not is really important.

Instead of attempting to determine the type of element in each form input so I can evaluate the checked condition, I decided to just change the value when the checkbox state is changed. Now Button 1 has a potential value of 0 when unchecked and a potential value of 1 when checked. I don’t need to know if the box is checked because the value answers that question. So passing along button1’s value to my URL lets the target site know if I want whatever Button 1 represents. (In this case, users are able to select from a list of seven data sources — smaller numbers of data sources reduce the query time but also fail to provide the most robust report).

The JavaScript to handle changing the checkbox value when the checked state changes:

$("#button1").change(function () {
    if ($("#button1").is(':checked')) {
        $("#button1").val(1);
    }
    else{
        $("#button1").val(0);
    }
});

$("#button2").change(function () {
    if ($("#button2").is(':checked')) {
        $("#button2").val(1);
    }
    else{
        $("#button2").val(0);
    }
});

The HTML defining these two checkboxes:

<input type="checkbox" id="button1" name="button1" value="1" checked><label for="ngmss">Thing 1</label>
<input type="checkbox" id="button2" name="button2" value="1" checked><label for="ngmss">Thing 2</label>

Barn cat score?

We’ve occasionally talked about going down to the SPCA and picking up one of their “barn cats“. I assume this is something that’s available at a lot of rural animal shelters — less socialized animals that you aren’t required to keep indoors. Thought a young cat that grew up around chickens would probably leave them alone (they’re fairly large and happy to defend themselves), and Anya has been really into cats since she discovered the Warrior Cat series. We see a few neighbor’s cat wandering around — a big white one, a chocolate point one — and the highlight of her day is just seeing a cat. For the last few weeks, we’ve also seen a black cat. I mentioned to Anya how some people consider them bad luck, and how the shelter I used to volunteer at had more trouble adopting them out.

Today, we were working out in the yard. The chickens were roaming around (well, the big ones anyway — the little guys tend to stay really close to the tractor when they are allowed out). Scott, Anya, and I were getting the hop arbor set up. The black cat came up out of the valley, walked toward us, and meowed. The big chickens, who had been digging around the compost, froze. The baby guys obliviously chirped and ran around the tractor. Tilly, our Columbian Wyandotte, flew/ran over toward the tractor and put herself right between the cat and the chicks. That was really cool to see — the bigger guys will actually protect the chicks. The rest of the chickens made their way toward their coop. I moved toward the chicken tractor too, and Anya went toward the cat to get him moving in a different direction. And it wanted a snuggle.

So she got to spend an hour or so petting a cat (and dragging a rope around for a cat to play with). After a big chicken got close enough to the cat for it to really appreciate the size of a chicken (and that chicken was Sunshine, our very large Buff Orpington), the cat didn’t bother the chicks. It’s an in tact male — strange combo since “in tact” usually means feral, but it’s super friendly. More friendly than any cat I’ve ever owned — my cats loved their family, but they’d hide from strangers. I left my number with the police and SPCA in case someone’s missing this guy, but the police said they get a lot of calls about cats dumped in the park (which is odd — we’ve lived here six years now, and I’ve never encountered a dumped pet … but it’s a big park). I’ve posted a pic to the usual social media places — community FB group, etc; but Anya’s hoping we’ve scored our barn cat 🙂

 

Mayo-free Deviled Eggs

Mix into the egg yolks:

  • 2 tsp tahini
  • 1 tsp dijon mustard
  • 1 tsp apple cider vinegar
  • 1 tsp olive oil
  • 1 tsp maple syrup (skip this next time)
  • 1/4 tsp chili garlic sauce
  • 1/4 tsp smoked paprika
  • 1/4 tsp salt

Sprinkle with a little salt and smoked paprika to serve.

17 April 2021: I made these again without the maple syrup — Anya was bummed not to get sugared up at lunch, and they were really salty this time. I used a different mustard! Next time, I’ll make them un-salted and add the salt “to taste” at the end (or, more likely add the salt to Scott’s taste since I am quickly overwhelmed by salt).

55 Days of Grilling: April 7 – Naan and Hummus

Today, I made naan on the grill.

The bread recipe is:

  • 2 1/4 tsp active dry yeast
  • 1/2 cup warm water
  • 2 tsp sugar
  • 2 1/2 cup all-purpose flour
  • 1/2 c Greek yogurt
  • 1 tsp salt
  • 1 T oil

The yeast and sugar were placed in the warm water and allowed to sit for ten minutes. All ingredients were combined and kneaded until a soft dough formed. The bowl was covered with a wet cloth and allowed to rise for four hours. Once the dough was ready, I placed a cast iron pan into the grill and set the grill to 600F.

The dough ball was split into four pieces and rolled out into rounds about 1/3″ thick. The rounds were sprinkled with salt and rubbed with additional oil (to keep them from sticking to the pan).

Once the grill and cast iron pan reached 600F, two naan were placed on the pan.

They cooked for 2 minutes on each side. They didn’t bubble and blister like naan is meant to — I think that’s a combination of thickly rolled dough and a temp way under the 900 or so recipes usually specify.

But they were quite tasty! I buttered each one when it came out of the grill, so we had soft, salty naan with our hummus.

Stuffed Crust Pizza Redux

I tried making another stuffed crust pizza. I rolled the crust out into a rectangle a few inches larger than the pan. We had picked up a block of mozzarella that’s not the soft, watery fresh mozzarella. We cut it into rectangular prism and lined the inside of the pan rim with cheese. This worked a lot better than shredded cheese. I then folded the excess crust over the cheese and pressed the edge together to seal it up.

Topped with tomato sauce, cheese, and way too much pepperoni. Baked at 550F for about 14 minutes

The crust was cheesy, but it was still too much bread. I’m thinking the crust would be rolled out to the pan size and then cut laterally with a bread lame. Then the crust wouldn’t be doubly thick.

But I’ve also thought it would make sense to add sauce to the cheese inside the crust. But … that’s kind of silly. It’s a pizza roll surrounding a pizza. A lot of effort without any real benefit. Pizza is cheesy and doughy already. I think that’s the end of the stuffed crust experiment. But, if we do it one more time, I’m trying the lame.