Nature

[box]This post originally appeared on the FTMF.info planning blog.[/box]

In this post, let’s explore the link between the twin worlds of microbiology and creative thought, drawing inspiration from three brilliant scientific discoveries. Labcoats on, people!

1. Sponges

If a sea sponge (phylum porifera) is forced through a sieve to disintegrate it down to its cellular level, those cells, if left alone, will recombine into a sponge again:

Lesson: some ideas only make sense as a whole – passing them through a ‘sieve test’ can reveal whether they were ever meant to be, while others may naturally merge together.

2. Slime Molds

A single-celled slime mold (physarum polycephalum) can solve mazes, mimic the layout of man-made transportation networks and choose the healthiest food from a diverse menu – and all this without a brain or nervous system:

Lesson: deploy resources efficiently – really smart solutions often arise naturally, yet knowing what’s best still requires lots of prior research. But hey, if a slime mold can do it…

3. Artificial Jellyfish

Scientists have created an artificial jellyfish using silicone and muscle cells from a rat’s heart. The synthetic creature, dubbed a medusoid, looks like a flower with eight petals. When placed in an electric field, it pulses and swims exactly like its living counterpart:

Lesson: even the most difficult concept can be somehow ‘brought to life’ – be it in a new context, through the addition of a couple of key ingredients, or sheer appliance of science!

I Give You My CSS3 Heart

I made this little heart shape with CSS3, which I’ve been playing around with lately as a way of rendering rounded corners in the latest version of Subscription Options. Turns out there’s loads you can do with CSS3!

Here’s the (admittedly complex) code that’s used to render the above:

#heart {
    position: relative;
    width: 100px;
    height: 90px;
}
#heart:before,
#heart:after {
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: url("http://files.digitalcortex.net/images/header/rotate.php"); // this makes the colour the same as my header image - but could be any HTML colour instead
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
       -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
         -o-transform-origin: 0 100%;
            transform-origin: 0 100%;
}
#heart:after {
    left: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
       -moz-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
         -o-transform-origin: 100% 100%;
            transform-origin :100% 100%;
}

If you’re interested in playing around with CSS3 shapes like the above, loads of them are are available at CSS Tricks.

30 Day Song Challenge – Week Three

Day 11: a song from your favorite band

Digitalism – Blitz

According to Last.fm, these are my most favourite musicians. Here’s their new one!

[hr]

Day 12: a song from a band you hate

The Beatles – Let It Be

Don’t go hatin’ on me, but the fucking Beatles? They’re just so overrated.

[hr]

Day 13: a song that is a guilty pleasure

Girls Aloud – Biology

These girls have a seriously good production team. Plus, you know… 😉

[hr]

Day 14: a song that no one would expect you to love

Lady Gaga ft. Beyoncé – Telephone

I can’t embed the actual video, but this one’ll do. I heart Gaga, but I don’t know why.

[hr]

Day 15: a song that describes you

LTJ Bukem – Horizons

How’s this: a bit electronic, a bit progressive, and a bit jazzy and with a consistently interesting beat.

13 Tools to Promote Divergent Thinking

New ideas can come from anywhere, but are often hardest to find when you’re actually looking for them. However, I believe it’s possible to jumpstart your brain, even under pressure, by applying yourself to a bit of divergent thinking:

Divergent thinking typically occurs in a spontaneous, free-flowing manner, such that many ideas are generated in an emergent cognitive fashion. Many possible solutions are explored in a short amount of time, and unexpected connections are drawn. After the process of divergent thinking has been completed, ideas and information are organized and structured using convergent thinking.

Wikipedia

So to help anyone out there who may be stuck for ideas, here’s my list of divergent thought helpers:

  1. Stumbleupon – highly recommended: tell it your interests and hit ‘stumble’ to be sent to a random site
  2. Buzzfeed – hit the randomize button in the top right corner (occasionally NSFW) to see something usually quite cool
  3. Mystery Seeker – type something in the search box and receive a set of google results for a totally different subject
  4. The Wiki Game – start in one place on wikipedia, and try to end up in another, while seeing loads of content on the way
  5. We Heart It – inspiring and high-quality imagery, often captioned, and with decent search functionality
  6. We Feel Fine – an emotional search tool, potentially good for scanning & visualising need states
  7. Popurls – see the freshest stories from a range of great online sources, with customisation options
  8. Newsmap – a visualisation of the latest news, powered by google (quite old but potentially interesting)
  9. Thesaurus.net – high quality thesaurus dictionary: search synonyms, antonyms, rhymes, quotes and idioms
  10. Visual Thesaurus – see the associated meanings between concepts – worth paying for
  11. Bing Visual Search – search the web visually in an intuitive, exploratory way
  12. oSkope – discover images, videos and products related to a search query
  13. TouchGraph SEO – see the links between topics and websites

Finally, and it may take more time for ideas to emerge this way, but TED really is an amazing resource for this kind of thing. I recently attended TEDxObserver, after which my head was swimming with ideas.

Can you suggest any of your own?