Published

Making tamales

Though it’s become a lot easier to find good Mexican food in London since I moved here in 2010, it’s still pretty hard to find tamales. I was in the mood for them over the weekend so tried making them for the first time.

Edit 14.05.16 — I’ve changed my mind, I’m not really that pleased with how these turned out. They’re too dry, and I definitely didn’t fill them with enough cheese. Also, I don’t know where the heck Sainsbury’s gets their jalapeños from but they were just about the hottest ones I’ve ever had! I think that the main issue was the fine cornmeal, so will definitely wait until I find some masa before making these again. I’ve found a good way of eating too-dry tamales though; they’re really good reheated in the oven with a spicy tomato sauce and plenty of cheese (kind of like enchiladas).

Edit 30.10.18 — A shop in Brixton Village sells masa and corn husks!!! I think it was Faiz Latin & Carribean (corner of 1st and 5th). Time for tamales v2.0.

Read more

Published

Graph paper used by Chana Horwitz

Chana Horwitz seems to have frequently used Keuffel & Esser Co. 8 × 8 to the inch graph paper. There were a few pieces in the Raven Row exhibition on 10 × 15 inch sheets with an orange grid. It looks like K&E was acquired in ‘87, wonder if she stockpiled a bunch of it. Also, food for thought: how do you mount+frame mylar in such a pristine way without any show-through?

Published

Notes from 24 Pull Requests event

See notes and further research prompts below in relation to yesterday’s 24 Pull Requests event. It was organised by Codebar, Ladies Who Code, and Your First PR, sponsored by Gitter, Shutl, and Twitter. I left Twitter HQ with my brain fizzing, always a good thing.

Read more

Published

Blender reference links

Black and white rendering of an 8 page gate fold leaflet done with the Blender Internal engine by Piper Haywood

Render of 8pp gate fold, done with Blender Internal engine

Been experimenting with Blender these past few months, pretty incredible free/open source 3D software. Definitely a bit of a learning curve, but very addictive and satisfying once you get the hang of it.

Links to some of the more helpful tutorials and info I’ve found are listed below. I switched from the Blender Internal engine to Cycles recently for improved results w/ architectural rendering, so some of these links are specific to Cycles.

Read more

Published

Dal tadka recipe

This is the recipe I follow for dal/dhal/dahl/daal tadka/tarka. “Tadka” is a tempered spice-and-oil topping that you add before serving to enhance the flavours of the dal. The ingredients and method are based on one of the dal tadka recipes on the excellent site Vegetable Recipes of India (see recipe). It would be best to use arhar or tuvar dal, but I use red lentils generally since they’re the easiest to find and still taste great. This serves 4 people and is excellent with jeera rice.

Read recipe

Published

Cobbler’s work on Loake chelsea boots

Work slip from Daniel, the cobbler on Francis Road

The cobbler on Francis Road did great work fixing up a second-hand pair of Loake chelsea boots recently. The uppers were in pretty good condition except for some salt damage. The elastic was perfect, surprisingly. The leather soles on the other hand were nearly shot, the right one in particular. The stitches were worn through.

Daniel pinned the leather sole to the welt, slightly built up the nose, built up the super-thin area under the ball of the foot, and then he glued and pinned a thin, black rubber sole to the leather outsole. The rubber sole says “Longlife Indiana”. He write “High-life sole” in thin silver pen on the left shoe near the heel, and “Francis Cobb” on the right. Though the heel didn’t need replacing, he did pin it down to make sure there’s no way it’ll peel away. Really, really pleased with the results.

Published

The Peter Principle in management theory

I had a spectacularly inarticulate moment recently trying to recall a management concept I read about a while back. By chance, I came across it today, so note to self: the Peter Principle is the theory you’re looking for. “Managers rise to the level of their incompetence”, or “anything that works will be used in progressively more challenging applications until it fails”.

Published

Snippet for LazyLoad + Spin.js

/**
 * Identify images by class. For each image, add 
 * [Spin.js](http://fgnass.github.io/spin.js/) to parent, [LazyLoad](http://verlok.github.io/lazyload/) image, stop spinner 
 * when image is loaded.
 */

var imgClass = "lazy";

var spinOpts = {
  // [Spin.js options](http://fgnass.github.io/spin.js/#usage)
};

var spinners = [];
var elems = document.getElementsByClassName( imgClass );
for ( var i = 0; i < elems.length; i++ ) {
  var pId = "lazy-" + ( i + 1 );
  var parent = elems[i].parentElement;
  parent.id = pId;
  spinners[pId] = new Spinner( spinOpts ).spin( parent );
}

var lazyLoad = new LazyLoad( {
  elements_selector: "." + imgClass,
  callback_load: function( element ) {
    var spinner = spinners[element.parentElement.id];
    if ( spinner ) {
      spinner.stop();
    }
  }
} );

For use with LazyLoad by Andrea Verlicchi and Spin.js by Felix Gnass. SB and I have both checked out a few different lazyloading plugins, we’re pleased with how this one works with srcset.

Since the default positioning of Spin.js centres the spinner in the element, it’s best for the image to be the only child of the parent element. The code above assumes that this is the case. If I didn’t have control over the markup or needed to individually wrap each image for any other reason, would probably implement something similar to the above w/ jQuery (see the Spin.js jQuery plugin).