Book: The Consumer Trap

The Consumer Trap A few years ago I put together a list of books about media that have helped me understand different pieces of our culture. I'm currently reading a book that I'm officially adding to my Guerilla Media Literacy List. The Consumer Trap by Michael Dawson sounds at first like a personal finance book, and I suppose it might affect readers' buying habits in some ways. But the book is really an examination of the business systems that influence and direct our off-the-job lives.

Before reading this book I was very aware of standard marketing terms such as branding, differentiation, distribution channels, and targeting. I was even aware of psychological advertising methods that were pioneered by Edward Bernays, explored by folks like Vance Packard, and are in heavy use today. (Check out the excellent documentary The Century of the Self for a crash course in psychological advertising.) So I considered myself fairly familiar with the Marketing Machine. But reading Dawson's book brought together these familiar concepts and many more new marketing tools into a complete, coherent picture.

The book starts with a history of both marketing and marketing criticism. Dawson introduced me to Frederick Winslow Taylor, who used methods from science to organize business, and Thorstein Veblen, an economist and early critic of corporate business practices. In one example of scientific observation, Taylor attached lights to workers, filmed them as they worked, and found ways to make their movements more efficient. Taylor's ideas about engineering work environments, objects, and people's actions lead to companies taking a similar, scientific approach to people's off-the-job, product-related activities as well. Veblen, on the other hand, coined the term conspicuous consumption and found that corporate marketers were using "force and fraud" to engineer people's activities in a form of absentee ownership that has existed throughout history. These two figures set up the tension that exists throughout the book.

At times I couldn't tell if I was reading a critique of marketing or a how-to manual. But I think a big part of being a literate media consumer is understanding how the system works. Dawson shows that marketing is about much more than advertising, and that it's marketing that decides which products are produced. He describes marketing strategies such as differentiation between equal products, planned obsolescence that increases the chances someone will buy a new product before an old one is used up, and elaborate packaging that extends the brand.

I don't think we can be completely free from the forces of marketing, and we probably wouldn't want to be. But a greater awareness of the carrots and sticks that are out there can help us make informed decisions. If you're interested in how your media environment influences you on a daily basis, you are the target market for The Consumer Trap.
  • A simple keyboard remapper for Windows that uses the registry. I think this'll be handy for some issues running XP with parallels. [via Nelson]
    filed under: productivity, software
  • Why people hate domain registrars: "Domain name servers were not responsible for lost domain names if holders did not re-register in time, Xinhua quoted a center insider as saying, since the loss was an 'act of God.'"
    filed under: internet, ethics
  • Fantastic article about aggregating current emotion research. "Most neuroscientists now recognise six basic emotions: anger, disgust, fear, joy, sadness and surprise." (subscription req'd unfortunately)
    filed under: psychology, science

Command Line Zip for Windows

Windows doesn't have a command line utility for compressing files (that I know of), and I had to come up with a way to automate some file transfers today. So I whipped up a tiny Perl script that will zip up a file. I figure someone else might need it. (Or someone might know how to do this in one line.) You'll need the Archive::Zip module, and the following code—which is pretty much right out of the documentation:
# Grab the incoming file
my $argv = join(' ', @ARGV) or die "Usage: zipme.pl [file location]\n";

# Grab the file name
my($dir, $file) = $argv =~ m/(.*\\)(.*)$/;

# Create a Zip file
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
my $zip = Archive::Zip->new();

# Add the file
my $file_member = $zip->addFile($argv, $file);

# Save the Zip file
unless ( $zip->writeToFileNamed($argv.'.zip') == AZ_OK ) {
    die 'couldn\'t zip';
}
Save this code as zipme.pl, and you'll be set. Pass in a filename, and you'll get a compressed file of the same name plus the .zip extension. So:

C:\>perl zipme.pl C:\path\to\giant.file

will give you C:\path\to\giant.file.zip. It works well with Windows batch files, and will save me a bunch of bandwidth.
  • Remap your Home and End keys on a Mac so they operate on the current line rather than the current document. This has been bugging me forever!
    filed under: mac, software, hacks

My Year in Cities, 2006

Kottke did it, and here I go. 2006 was an interesting year for me because it was the first time I traveled outside of North America. International travel gave me a new perspective on the US that's hard to describe. I came back both loving it more, and wanting it to be more. (But that's a topic for another post.) Anyway, here's my list of cities I visited in 2006:

Corvallis, OR (Home)
Nelson, New Zealand
Kaikoura, New Zealand
Christchurch, New Zealand
Queenstown, New Zealand
Te Anau, New Zealand
San Diego, CA
New York City, NY
New Paltz, NY
Bend, OR *
Newport, OR *
Portland, OR *
Lincoln, NE
San Francisco, CA
Sebastopol, CA

As the rules state: one or more nights spent in each place. Those cities marked with an * were visited multiple times on non-consecutive days.

I don't have any international travel planned for the foreseeable future, but I'd like to make it back to New Zealand someday.
  • Cleans up your Mac desktop (or any folder) based on rules you write. Handy! [via 43 Folders]
    filed under: mac, productivity, software
« Older posts  /  Newer posts »