Re: Gouge Away
St.John's Worth = Prozac
----- Original Message -----
From: <Nmherman@aol.com>
To: <list@rhizome.org>; <nettime-l@BBS.THING.NET>; <thingist@BBS.THING.NET>
Cc: <7-11@mail.ljudmila.org>
Sent: Sunday, July 07, 2002 11:07 PM
Subject: RHIZOME_RAW: Gouge Away (Was: "Why we won't make it sin g2k")
>
>
> New York Times:
>
> "My own view is that one reason the investor class, including me, missed =
the
> downside was serotonin," James J. Cramer, a former hedge fund manager and=
> author of "Confessions of a Street Addict" (Simon & Schuster, 2002), said=
,
> referring to a substance in the brain that antidepression drugs augment.=
> "Prozac and all those other drugs banish the `this is the end of the worl=
d'
> thoughts," Mr. Cramer explained. "Which means you are not as anxious as y=
ou
> should be about an obvious down side."
>
>
>
> http://www.nytimes.com/2002/07/07/business/07SHRI.html
----- Original Message -----
From: <Nmherman@aol.com>
To: <list@rhizome.org>; <nettime-l@BBS.THING.NET>; <thingist@BBS.THING.NET>
Cc: <7-11@mail.ljudmila.org>
Sent: Sunday, July 07, 2002 11:07 PM
Subject: RHIZOME_RAW: Gouge Away (Was: "Why we won't make it sin g2k")
>
>
> New York Times:
>
> "My own view is that one reason the investor class, including me, missed =
the
> downside was serotonin," James J. Cramer, a former hedge fund manager and=
> author of "Confessions of a Street Addict" (Simon & Schuster, 2002), said=
,
> referring to a substance in the brain that antidepression drugs augment.=
> "Prozac and all those other drugs banish the `this is the end of the worl=
d'
> thoughts," Mr. Cramer explained. "Which means you are not as anxious as y=
ou
> should be about an obvious down side."
>
>
>
> http://www.nytimes.com/2002/07/07/business/07SHRI.html
Re: word source
www.wowm.org/addiction/addiction/poem.htm
of course, you can make as many lines as you want
or just one word in each line
----- Original Message -----
From: "lewis lacook" <llacook@yahoo.com>
To: "wryting" <WRYTING-L@LISTSERV.UTORONTO.CA>
Cc: "webartery" <webartery@egroups.com>; "rhizome" <list@rhizome.org>
Sent: Friday, July 05, 2002 6:03 PM
Subject: RHIZOME_RAW: word source
> ==this is the source code for word===would welcome any
> suggestions on this, specifically on how to write a
> function to randomize the word output in
> strings===like, how to get the piece to write a poem
> like this, with the words all randomly generated==i
> tried one variant, but could only get the piece to
> output the same word in a row (the poem ended up being
> repetitions of the same word)====
>
>
> *************************
> //actionscript function by Lewis LaCook July 5 2002
> //randomize the timer for seeding
> random(getTimer);
> //declare the character arrays
> Vowel=new Array ( )
> Vowel[0]="a"
> Vowel[1]="e"
> Vowel[2]="i"
> Vowel[3]="o"
> Vowel[4]="u"
> Vowel[5]="y"
>
> Consonant=new Array( )
> Consonant[0]="b"
> Consonant[1]="c"
> Consonant[2]="d"
> Consonant[3]="f"
> Consonant[4]="g"
> Consonant[5]="h"
> Consonant[6]="j"
> Consonant[7]="k"
> Consonant[8]="l"
> Consonant[9]="m"
> Consonant[10]="n"
> Consonant[11]="p"
> Consonant[12]="q"
> Consonant[13]="r"
> Consonant[14]="s"
> Consonant[15]="t"
> Consonant[16]="v"
> Consonant[17]="w"
> Consonant[18]="x"
> Consonant[19]="z"
>
> //randomize string length
> num=random(9);
> if (num < 3){
> Word=Consonant [random (20)]+ Vowel[random(6)] +
> Vowel[random(6)] + Consonant [random (20)];
> }
>
> if (num > 3 && num <= 6){
> Word=Vowel[random(6)] + Vowel[random(6)] + Consonant
> [random (20)];
> }
>
> if (num > 6 ){
> Word=Consonant [random (20)] + Vowel[random(6)] +
> Consonant [random (20)] + Consonant [random (20)] +
> Vowel[random(6)] + Consonant [random (20)];
> }
>
>
> ******************
>
> =====
>
> http://www.google.com/search?hl=en&ie=UTF8&oe=UTF8&q=Lewis+LaCook
>
>
> __________________________________________________
> Do You Yahoo!?
> Sign up for SBC Yahoo! Dial - First Month Free
> http://sbc.yahoo.com
> + your mama don't dance and your daddy don't rock & roll
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/preferences/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
of course, you can make as many lines as you want
or just one word in each line
----- Original Message -----
From: "lewis lacook" <llacook@yahoo.com>
To: "wryting" <WRYTING-L@LISTSERV.UTORONTO.CA>
Cc: "webartery" <webartery@egroups.com>; "rhizome" <list@rhizome.org>
Sent: Friday, July 05, 2002 6:03 PM
Subject: RHIZOME_RAW: word source
> ==this is the source code for word===would welcome any
> suggestions on this, specifically on how to write a
> function to randomize the word output in
> strings===like, how to get the piece to write a poem
> like this, with the words all randomly generated==i
> tried one variant, but could only get the piece to
> output the same word in a row (the poem ended up being
> repetitions of the same word)====
>
>
> *************************
> //actionscript function by Lewis LaCook July 5 2002
> //randomize the timer for seeding
> random(getTimer);
> //declare the character arrays
> Vowel=new Array ( )
> Vowel[0]="a"
> Vowel[1]="e"
> Vowel[2]="i"
> Vowel[3]="o"
> Vowel[4]="u"
> Vowel[5]="y"
>
> Consonant=new Array( )
> Consonant[0]="b"
> Consonant[1]="c"
> Consonant[2]="d"
> Consonant[3]="f"
> Consonant[4]="g"
> Consonant[5]="h"
> Consonant[6]="j"
> Consonant[7]="k"
> Consonant[8]="l"
> Consonant[9]="m"
> Consonant[10]="n"
> Consonant[11]="p"
> Consonant[12]="q"
> Consonant[13]="r"
> Consonant[14]="s"
> Consonant[15]="t"
> Consonant[16]="v"
> Consonant[17]="w"
> Consonant[18]="x"
> Consonant[19]="z"
>
> //randomize string length
> num=random(9);
> if (num < 3){
> Word=Consonant [random (20)]+ Vowel[random(6)] +
> Vowel[random(6)] + Consonant [random (20)];
> }
>
> if (num > 3 && num <= 6){
> Word=Vowel[random(6)] + Vowel[random(6)] + Consonant
> [random (20)];
> }
>
> if (num > 6 ){
> Word=Consonant [random (20)] + Vowel[random(6)] +
> Consonant [random (20)] + Consonant [random (20)] +
> Vowel[random(6)] + Consonant [random (20)];
> }
>
>
> ******************
>
> =====
>
> http://www.google.com/search?hl=en&ie=UTF8&oe=UTF8&q=Lewis+LaCook
>
>
> __________________________________________________
> Do You Yahoo!?
> Sign up for SBC Yahoo! Dial - First Month Free
> http://sbc.yahoo.com
> + your mama don't dance and your daddy don't rock & roll
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/preferences/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
Re: net.art donation
ok, je suis d'accord pour envoyer quelque chose pour votre machine du
bonheur
j'aimerais bien savoir quand la machine du bonheur sera physiquement a
Frankfurt
et si cette machine donne des projections?
//je ne suis pas sure que j'ai bien compris?!//
wowm
> Salut,
> Oui j'ai une idee, tu peux me l'envoyer pour ma machine du bonheur. C'est
> une performance participative que j'ai mise en place il y a quelques
temps.
> Pour en savoir+, va faire un tour sur mon site tu y decouvriras le
principe
> et les objets physiques ou virtuels deja recus.
> C'est - prestigieux que le MOMA, mais elle a ete presentee a la Free
> Biennial de N.Y. et actuellement a la Free Manifesta.
>
> http://www.vende.fr.st
>
>
> +
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/preferences/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
bonheur
j'aimerais bien savoir quand la machine du bonheur sera physiquement a
Frankfurt
et si cette machine donne des projections?
//je ne suis pas sure que j'ai bien compris?!//
wowm
> Salut,
> Oui j'ai une idee, tu peux me l'envoyer pour ma machine du bonheur. C'est
> une performance participative que j'ai mise en place il y a quelques
temps.
> Pour en savoir+, va faire un tour sur mon site tu y decouvriras le
principe
> et les objets physiques ou virtuels deja recus.
> C'est - prestigieux que le MOMA, mais elle a ete presentee a la Free
> Biennial de N.Y. et actuellement a la Free Manifesta.
>
> http://www.vende.fr.st
>
>
> +
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/preferences/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
Re: net.art donation
Salut!
Je souhaiterais egalement donner quelque chose, mais je ne sais pas a qui.
Surtout pas au MOMA a New York, il en a assez et il peut payer.
Vous avez une idee ?
wowm
// Apres l'apparition de l'ecran avec 3 petits carres en bas a droit, y
a-t-il quelque chose apres ?//
----------------------------------
BRASIL, BRASIL!
Quero viver, quero sambar!
----------------------------------
----- Original Message -----
From: "bobig" <bobig@bobig.com>
To: "bobig" <bobig@bobig.com>; <barbara_london@moma.org>
Cc: <list@rhizome.org>
Sent: Sunday, June 30, 2002 10:29 AM
Subject: Re: RHIZOME_RAW: net.art donation
> ==> pas vous ?
>
> ----- Original Message -----
> From: "bobig" <bobig@bobig.com>
> To: <bobig@bobig.com>; <barbara_london@moma.org>
> Cc: <list@rhizome.org>
> Sent: Sunday, June 30, 2002 10:20 AM
> Subject: Re: RHIZOME_RAW: net.art donation
>
>
> > ==> j'ai toujours aime me la peter un peu...ca me detend.
> >
> > ----- Original Message -----
> > From: <bobig@bobig.com>
> > To: <barbara_london@moma.org>
> > Cc: <list@rhizome.org>
> > Sent: Sunday, June 30, 2002 8:19 AM
> > Subject: RHIZOME_RAW: net.art donation
> >
> >
> > >
> > > Museum of Modern Art, New York
> > >
> > > 30/6/2002
> > >
> > >
> > > Attn: Director of Museum of Modern Art, New York
> > >
> > > I am pleased to hereby transfer and assign to the Museum of Modern
Art,
> > New York full<br>
> > > interest in the following work of net.art:
> > >
> > > webzone 4 - http://www.bobig.com/webzone4
> > >
> > > By doing so I am granting all rights to display net.art in art
> > > shows, online and offline, include net.art in cdroms, books and
> > > flyers, as well as in phd theses and simillar academic documents.
> > >
> > > During the time that these works of art are on display at
> > > Museum of Modern Art, New York, they should be credited as:
> > >
> > > ("Gift of bobig").
> > >
> > > I understand that final approval of this gift to Museum of Modern Art,
> New
> > York is
> > > contingent upon acceptance by the Museum of Modern Art, New York Board
> of
> > Trustees.
> > >
> > > Sincerely,
> > >
> > > bobig
> > >
> > > Net.art Consultants - (Acting agent)
> > > http://www.irational.org/donate/
> > >
> > >
> > >
> > > +
> > > -> Rhizome.org
> > > -> post: list@rhizome.org
> > > -> questions: info@rhizome.org
> > > -> subscribe/unsubscribe:
http://rhizome.org/preferences/subscribe.rhiz
> > > -> give: http://rhizome.org/support
> > > +
> > > Subscribers to Rhizome are subject to the terms set out in the
> > > Membership Agreement available online at
http://rhizome.org/info/29.php3
> > >
> > >
> >
> >
> >
>
>
> +
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/preferences/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
Je souhaiterais egalement donner quelque chose, mais je ne sais pas a qui.
Surtout pas au MOMA a New York, il en a assez et il peut payer.
Vous avez une idee ?
wowm
// Apres l'apparition de l'ecran avec 3 petits carres en bas a droit, y
a-t-il quelque chose apres ?//
----------------------------------
BRASIL, BRASIL!
Quero viver, quero sambar!
----------------------------------
----- Original Message -----
From: "bobig" <bobig@bobig.com>
To: "bobig" <bobig@bobig.com>; <barbara_london@moma.org>
Cc: <list@rhizome.org>
Sent: Sunday, June 30, 2002 10:29 AM
Subject: Re: RHIZOME_RAW: net.art donation
> ==> pas vous ?
>
> ----- Original Message -----
> From: "bobig" <bobig@bobig.com>
> To: <bobig@bobig.com>; <barbara_london@moma.org>
> Cc: <list@rhizome.org>
> Sent: Sunday, June 30, 2002 10:20 AM
> Subject: Re: RHIZOME_RAW: net.art donation
>
>
> > ==> j'ai toujours aime me la peter un peu...ca me detend.
> >
> > ----- Original Message -----
> > From: <bobig@bobig.com>
> > To: <barbara_london@moma.org>
> > Cc: <list@rhizome.org>
> > Sent: Sunday, June 30, 2002 8:19 AM
> > Subject: RHIZOME_RAW: net.art donation
> >
> >
> > >
> > > Museum of Modern Art, New York
> > >
> > > 30/6/2002
> > >
> > >
> > > Attn: Director of Museum of Modern Art, New York
> > >
> > > I am pleased to hereby transfer and assign to the Museum of Modern
Art,
> > New York full<br>
> > > interest in the following work of net.art:
> > >
> > > webzone 4 - http://www.bobig.com/webzone4
> > >
> > > By doing so I am granting all rights to display net.art in art
> > > shows, online and offline, include net.art in cdroms, books and
> > > flyers, as well as in phd theses and simillar academic documents.
> > >
> > > During the time that these works of art are on display at
> > > Museum of Modern Art, New York, they should be credited as:
> > >
> > > ("Gift of bobig").
> > >
> > > I understand that final approval of this gift to Museum of Modern Art,
> New
> > York is
> > > contingent upon acceptance by the Museum of Modern Art, New York Board
> of
> > Trustees.
> > >
> > > Sincerely,
> > >
> > > bobig
> > >
> > > Net.art Consultants - (Acting agent)
> > > http://www.irational.org/donate/
> > >
> > >
> > >
> > > +
> > > -> Rhizome.org
> > > -> post: list@rhizome.org
> > > -> questions: info@rhizome.org
> > > -> subscribe/unsubscribe:
http://rhizome.org/preferences/subscribe.rhiz
> > > -> give: http://rhizome.org/support
> > > +
> > > Subscribers to Rhizome are subject to the terms set out in the
> > > Membership Agreement available online at
http://rhizome.org/info/29.php3
> > >
> > >
> >
> >
> >
>
>
> +
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/preferences/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
Re: Eryk Salvaggio: September 11th, 2001
the work should speak for itself - is the best rule in those 6 rules!!!!
----- Original Message -----
From: "Christopher Fahey [askrom]" <askROM@graphpaper.com>
To: "'Eryk Salvaggio'" <eryk@maine.rr.com>; <list@rhizome.org>
Sent: Wednesday, June 26, 2002 1:02 AM
Subject: RE: RHIZOME_RAW: Eryk Salvaggio: September 11th, 2001
> > >Does this piece violate Salvaggio Rule #2?
> >
> > Yes, and- remarkably- that's been the source of most contention. I'll
> > probably take the intro page down.
>
> I got no problem with it. I always thought Rule #2 was pretty dumb. The
> inverse of the rule, that artists shouldn't participate in the discourse
> of their own work, is equally dumb.
>
> -Cf
>
> [christopher eli fahey]
> art: http://www.graphpaper.com
> sci: http://www.askrom.com
> biz: http://www.behaviordesign.com
>
>
>
> + bostoniscoolerthannewyorkbostoniscoolerthannewyorkbostoniscoolerthanne
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3
----- Original Message -----
From: "Christopher Fahey [askrom]" <askROM@graphpaper.com>
To: "'Eryk Salvaggio'" <eryk@maine.rr.com>; <list@rhizome.org>
Sent: Wednesday, June 26, 2002 1:02 AM
Subject: RE: RHIZOME_RAW: Eryk Salvaggio: September 11th, 2001
> > >Does this piece violate Salvaggio Rule #2?
> >
> > Yes, and- remarkably- that's been the source of most contention. I'll
> > probably take the intro page down.
>
> I got no problem with it. I always thought Rule #2 was pretty dumb. The
> inverse of the rule, that artists shouldn't participate in the discourse
> of their own work, is equally dumb.
>
> -Cf
>
> [christopher eli fahey]
> art: http://www.graphpaper.com
> sci: http://www.askrom.com
> biz: http://www.behaviordesign.com
>
>
>
> + bostoniscoolerthannewyorkbostoniscoolerthannewyorkbostoniscoolerthanne
> -> Rhizome.org
> -> post: list@rhizome.org
> -> questions: info@rhizome.org
> -> subscribe/unsubscribe: http://rhizome.org/subscribe.rhiz
> -> give: http://rhizome.org/support
> +
> Subscribers to Rhizome are subject to the terms set out in the
> Membership Agreement available online at http://rhizome.org/info/29.php3