Naming Your Boxes: A System That Actually Works When You Unpack

Naming things is famously one of the two hard problems in computing. It turns out to be a hard problem in moving house as well, and for the same underlying reason: a name is only useful if it tells you something you did not already know.

“Kitchen” written on a box tells you nothing. Everything in the van came from somewhere. What you need to know is which box has the kettle in it, and no amount of writing “Kitchen” on eleven boxes will answer that.

Here is a naming system that works, borrowed loosely from how software projects handle the same problem.

The three-part name

Every box gets a label with three components: room, priority, contents-hint.

KIT-1-kettle,mugs,tea
BED-3-winter clothes
LIV-2-books A-M

Room is the destination, not the origin. If the contents of your old spare room are going into the new living room, the label says LIV.

Priority runs 1 to 3. Priority 1 means you need it on day one. Priority 2 means the first week. Priority 3 means eventually. This single number does more work than everything else on the label, because it dictates load order — priority 3 goes into the van first and deepest, priority 1 goes in last and comes out first.

Contents-hint is three or four words, not an inventory. The purpose is recognition, not completeness. “books A-M” is a good hint. “assorted items” is not a hint at all.

Why numbering boxes fails

The instinctive system is to number every box and keep a master list: box 47 contains the following twenty-three items. People try this and abandon it around box twelve.

The reason it fails is that it puts the information in the wrong place. To find something you have to consult an external document, which means the document must be to hand, must be current, and must have been maintained honestly under time pressure. All three assumptions break on moving day.

A self-describing label needs no lookup. This is the same argument as the one for descriptive variable names over comments, and it fails for the same reasons when ignored.

Colour as a second channel

If you have coloured tape, use one colour per room. Not instead of writing the room — as well as it.

The value of this is not at the labelling stage, it is at the carrying stage. Someone helping you move who has never seen your naming scheme can still get a blue box to the blue room. They cannot read your handwriting from three metres away in a stairwell, but they can see blue.

Label on the sides, never the top

Boxes get stacked. The top of a box is visible for exactly as long as it takes to put another box on it.

Label at least two adjacent sides. Three if you have the patience. In a stacked wall of boxes you can generally see one face of each, and which face that is depends entirely on how the stack ended up oriented, which nobody controls.

The overflow category

There is a fourth priority worth having: P4, not coming with me.

This covers everything you are keeping but not bringing to the new place immediately. Seasonal equipment, the boxes of course notes you are not ready to throw away, sports gear for a sport you do twice a year.

Separating this out early is what stops a small flat filling up with things you will not touch for months. For students in particular this is most of the problem — you move every year, term dates and tenancy dates never line up, and the summer gap has to go somewhere. Most student storage facilities are built around exactly that rhythm, with collection at the end of term and delivery to wherever you land next. Labelling P4 boxes distinctly from the start means the collection is a five-minute conversation rather than an afternoon of sorting.

Give P4 boxes a different tape colour entirely. They should be visually obvious, because they load first and you never want one of them accidentally ending up at the front of the van.

Naming the digital copy

If you want a master list despite everything above, take photographs rather than writing inventories. Photograph the open box before you seal it, with the label visible in frame.

This takes four seconds per box, produces a searchable visual record, and — critically — requires no discipline to maintain, because the photograph is created by the act of packing rather than by a separate documentation step. Anything requiring a separate documentation step will not survive contact with moving day.

The one rule that matters most

Whatever system you choose, use it on every box including the last four you pack at eleven at night when you have stopped caring.

Those four are always the ones you need first.

Similar Posts