Oblique Strategies

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • robin

    #1

    Oblique Strategies

    The Oblique Strategies were originally a set of one-hundred cards,
    each bearing a short phrase. They were devised by Brian Eno and Peter
    Schmidt as ways of working through creative problems. When a blockage
    occurs, draw a card, and see if it can direct you in a tangential way
    that helps solve the problem.

    I have created a Python implementation that includes two different
    decks. Since one of these is my own, I can be sure this is an original
    contribution for all of you Python coders stuck on a problem!

    Surf:
    The Oblique Strategies were originally a set of one-hundred cards, each bearing a short phrase. They were devised by Brian Eno and Peter Sc...


    -----
    robin
    noisetheatre.bl ogspot.com
  • Tom Anderson

    #2
    Re: Oblique Strategies

    On Wed, 14 Sep 2005, robin wrote:
    [color=blue]
    > The Oblique Strategies were originally a set of one-hundred cards, each
    > bearing a short phrase. They were devised by Brian Eno and Peter Schmidt
    > as ways of working through creative problems. When a blockage occurs,
    > draw a card, and see if it can direct you in a tangential way that helps
    > solve the problem.[/color]

    Neat!

    I can't help but feel that putting the strategies in a file and using
    'fortune' to pick them would have been slightly simpler, but since i don't
    actually seem to have fortune on my machine, i'm actually rather happy
    that you've done this.

    I don't know about coding, but i think this might be handy in the cell
    biology research that constitutes my day job ...

    tom

    --
    Also, a 'dark future where there is only war!' ... have you seen the news lately? -- applez

    Comment

    • robin

      #3
      Re: Oblique Strategies

      Tom Anderson <twic@urchin.ea rth.li> wrote:
      [color=blue]
      >On Wed, 14 Sep 2005, robin wrote:
      >[color=green]
      >> The Oblique Strategies were originally a set of one-hundred cards, each
      >> bearing a short phrase. They were devised by Brian Eno and Peter Schmidt
      >> as ways of working through creative problems. When a blockage occurs,
      >> draw a card, and see if it can direct you in a tangential way that helps
      >> solve the problem.[/color]
      >
      >Neat!
      >
      >I can't help but feel that putting the strategies in a file and using
      >'fortune' to pick them would have been slightly simpler, but since i don't
      >actually seem to have fortune on my machine, i'm actually rather happy
      >that you've done this.[/color]

      The best things about this approach are that code and data are in one
      file and you don't need to be on a machine with fortune. (My machines
      seem to mostly have misfortune, aka Windows.)

      I'm happy how Python reduces most small problems down to the most
      trivial of exercises. This is less a program than a list of text
      strings.

      -----
      robin
      noisetheatre.bl ogspot.com

      Comment

      Working...