At Bedrooms, the bed is called "Shaker All In One Loft Twin/Twin" and is item #2000. For cross reference, a label on the bed calls it the Innovations Model # 261 Shaker ALL IN ONE TWIN, from Hartford, CT.
This catalog image from Bedrooms shows the bed completely assembled in its model habitat:

Here are the step by step assembly photos:



























Done!
Here is the simple command line I used to rename the photos and sort them from disassembly order to assembly order:
$ n=0; for f in `ls -1 *.JPG | sort -r`; do newname=${n}.jpg; if [ $n -lt 10 ]; then newname=0$newname; fi; mv $f $newname; n=$(($n+1)); doneMy original photos were 8 megapixels each. To resize the images to 1024x768, I used ImageMagick and this simple command line:
$ for f in `echo 2008-07-13-jake-bed-disassembly/*.jpg`; do convert $f -resize 1024x768 2008-07-13-jake-bed-disassembly-1024x768/`basename $f`; done
2 comments:
Not sure if you ever check this site, but I want to thank you for providing this detailed description. My son has had this bed for 5 years and it's time for him to move up. I am donating the bed to Goodwill but was concerned that the future buyer would be able to figure out how to assemble. I printed your instructions and and am including with my donation. Thanks for the info.
Yes, thank you! Bought one on Craigslist and this site is uber-helpful!
Post a Comment