This is a super simple recipe for roasted chicken. It’s even better than doing it in the slow cooker since the skin crisps up a little nicer!

Ingredients

  • Chicken leg quarters (I guess you can use any cut of chicken, but I recently discovered quarters and it’s changed my life)
  • Olive oil
  • Salt & Pepper
  • Paprika (seriously, this is the 2014 spice of the year/mvp for me)

Read more »

This is one of the worst bugs I’ve encountered in a while. The worst because you really don’t know exactly where the issue can be fixed…

If you go to your site’s RSS feed (http://YOUR_SITE_URL/feed), you might see this message:

XML Parsing Error: XML or text declaration not at start of entity
Location: http://YOUR_SITE_URL/feed
Line Number 3, Column 1:
<?xml version=”1.0″ encoding=”UTF-8″?><rss version=”2.0″
^

Vague… i know Read more »

our waiters at bj’s looked a lot like christoph waltz (of inglourious basterds and django unchained fame)

i’m getting pretty good at spotting doppelgangers…

waltz

he was a good sport for posing next to my phone…

Christoph+Waltz+Water+Elephants+Germany+Photocall+PCESDJi9mrOl

he said he normally gets likened to ben stiller

say you have 10 group names, labeled ‘$group_1’, ‘$group_2’, etc. and you want to display each of them. a quick way to do that is to use dynamic variables (aka variable variables)

for ($i = 1; $i < 11; $i++) {
echo ${'group_' . $i};
}

Read more »

this is super simple to make — it consists of 4 ingredients:

  • angel food cake (pre-made and cubed)
  • cool hwip (spelled correctly)
  • sliced strawberries (mixed with strawberry glaze)

grab a mason jar and layer your ingredients in each one: cake, cool hwip, strawberry/glaze mix, cake, cool hwip, strawberry/glaze mix, etc.

looks can be deceiving — the cake and cool whip are practically air so go ahead and stuff the jars — your guests will be very thankful later

Read more »

i’ve been doing the gorirra side business with geoffro for several years now. i’ve always had the mindset that it was just a side business that would occasionally get me cool toys and free food/beer — well, it still gets us that, but the main part was that it was JUST A SIDE BUSINESS — nothing more.

i came across this wonderfully inspiring article titled “why ‘side projects’ matter?

Read more »

it’s been warm out… but that doesn’t stop a hernandez from making hot soup! this is one of my favorite dishes that my pops makes. i always use to think it was super tough to make, but it’s really simple. This amount ended up lasting several days (of lunches)

Ingredients

  • 7-8 cups beef stock*
  • 2 tbsp oil
  • 1/2 head of garlic – minced
  • 1/2 medium onion – sliced
  • 10-15 meatballs*
  • 1 tbsp patis (fish sauce)*
  • 4-5 dried chinese black mushrooms (shiitake)
  • 200 gm sotanghon (bean thread) noodles
  • 1 head napa cabbage – roughly chopped
  • 1 bunch green onions – chopped

Read more »

I Google’d and checked the WordPress codex, but could not find a function that would give me the ID of an image I uploaded into a custom meta field.

The Problem

I have uploaded an image, but that image is huge. I want to be able to display the image at my predefined size. There are functions to display the post thumbnail (featured image) in any which way you want, but this is different.

This is the cleanest method I’ve found to get the attachment’s ID. With the ID, you’ll be able to use a function to display that image.
Read more »

The Problem

Build a two-column responsive page that had a fixed-width right column. It actually sounds easier than you think. That fixed-width right column throws a wrench into everything.

For this example, let’s go with a fluid left column and a 320px wide right column.

HTML

<div class="main">
<div class="leftwrapper">
<div class="left">

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent elit dolor, congue vitae turpis in, blandit dictum magna. Praesent sollicitudin dictum libero. Aliquam tempor elit quis metus egestas, vel adipiscing nibh pulvinar. Aenean quis venenatis massa, at interdum est. Praesent iaculis mi lacus, quis auctor purus placerat vel. Cras sed commodo velit. Aenean ac aliquam purus, vitae rhoncus justo. Proin mollis facilisis sapien, id consequat purus imperdiet eu. Donec posuere, arcu a facilisis ultrices, nibh nisi convallis ante, et sollicitudin metus ante vel felis. Curabitur sagittis, dolor malesuada adipiscing pulvinar, velit risus elementum augue, non tempor lectus mi sit amet ipsum. Aliquam mollis semper ultrices. Sed eleifend tempus dui nec venenatis. Maecenas faucibus turpis leo, nec facilisis sapien mattis non. Donec in elit vitae enim interdum auctor nec id dui. Vivamus sed odio diam. Cras pretium dolor ac neque iaculis eleifend.

</div>
</div>
<div class="right">

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent elit dolor, congue vitae turpis in, blandit dictum magna. Praesent sollicitudin dictum libero. Aliquam tempor elit quis metus egestas, vel adipiscing nibh pulvinar. Aenean quis venenatis massa, at interdum est. Praesent iaculis mi lacus, quis auctor purus placerat vel. Cras sed commodo velit. Aenean ac aliquam purus, vitae rhoncus justo.

</div>
</div>

Read more »