BIO
Eric Dymond is an artist who works with many tools and programming languages.
He graduated from the Nova Scotia College of Art and Design with a BFA in studio.<br />
He exhibited paintings in Toronto, Detroit, New York, Montreal and London during the 1970's, 1980's and 1990's. The paintings were created with sandblasted sprays employing formal themes from the history of painting (still life's , individual portraits, traditional landscapes) . These series appear minimal with repeating content and are a form of Serialism.
In the early 1990's he began working with digital media, building perl programs with TCL/TK, web sites (see the doorway on Leonardo) and stand-alone applications.
He continues working in all media, rejecting specialization.
A brief timeline :
1976-On View -first exhibition held by Visual Arts Ontario
1977-One person show-Gallery 567
1978-One person show-Nancy Pooles Studio
1978-Group Exhibition-Habatat Galleries,Detroit,Michigan
1979-One Person Show-Habatat Galleries,Detroit,Michigan
1979-Young Realists, London Regional Gallery
1979-One Person Show-Nancy pooles Studio
1980-New Artists-London Regional Gallery
1980-O.A.C.-group juried show
1981-One Person show-Nancy Pooles studio
1982-Group exhibition-Honey Sharp Gallery-Tanglewood,Mass.
1983-One Person show-Nancy Pooles studio
1983-Group Exhibition-Adam Gimbel Gallery-New York,N.Y.
1984-One Person Show-Grimsby Public Gallery
1985-One Person Show-Nancy Pooles studio
1985-One Person Show-Gallery 1667-Halifax,N.S.
1987-One Person Show-Kitchener Waterloo Public Gallery
1988-Group Exhibition-Market Gallery,Toronto
1990-Two person show-Brampton public Gallery
1990-One Person Show-Quan Schieder Gallery
1991-CD-Rom interacive/Philips Corp.
1991-Group Exhibition-Robert Kidd Gallery-Detroit,Michigan
1993-Group Exhibition-Market Gallery
1993-Marilyn (perl/tk)
1994-One Person Show-Schieder and Associates
1995-Group Exhibition-Bau-Xi Gallery
1996-The doorway (http://www.edymond.com/artseen/door.htm)
1997-Newmail (http://www.edymond.com/artseen/newmail.htm) part of Iceflow, the Images festival of Independent Film Toronto
(http://replay.waybackmachine.org/19980209225557/http://interaccess.org/iceflow/newmail.htm)
1997.1998,1999,2001 - http://www.netarts.org , see archives.
see my Rhizome portfolio and Furthfield for current web works and writings.
Collections:
Numerous public and private collections in Canada and the United States.
including,
City of Toronto
McIntosh Gallery, University of Western Ontario, London Ontario
London Public Library, London Ontario
Kitchener Waterloo Public Gallery
Algoma Public Gallery
Kamloops Public Gallery
College of Physicians and Surgeons (Ontario)
Connor and Clark
Royal Lepage
He graduated from the Nova Scotia College of Art and Design with a BFA in studio.<br />
He exhibited paintings in Toronto, Detroit, New York, Montreal and London during the 1970's, 1980's and 1990's. The paintings were created with sandblasted sprays employing formal themes from the history of painting (still life's , individual portraits, traditional landscapes) . These series appear minimal with repeating content and are a form of Serialism.
In the early 1990's he began working with digital media, building perl programs with TCL/TK, web sites (see the doorway on Leonardo) and stand-alone applications.
He continues working in all media, rejecting specialization.
A brief timeline :
1976-On View -first exhibition held by Visual Arts Ontario
1977-One person show-Gallery 567
1978-One person show-Nancy Pooles Studio
1978-Group Exhibition-Habatat Galleries,Detroit,Michigan
1979-One Person Show-Habatat Galleries,Detroit,Michigan
1979-Young Realists, London Regional Gallery
1979-One Person Show-Nancy pooles Studio
1980-New Artists-London Regional Gallery
1980-O.A.C.-group juried show
1981-One Person show-Nancy Pooles studio
1982-Group exhibition-Honey Sharp Gallery-Tanglewood,Mass.
1983-One Person show-Nancy Pooles studio
1983-Group Exhibition-Adam Gimbel Gallery-New York,N.Y.
1984-One Person Show-Grimsby Public Gallery
1985-One Person Show-Nancy Pooles studio
1985-One Person Show-Gallery 1667-Halifax,N.S.
1987-One Person Show-Kitchener Waterloo Public Gallery
1988-Group Exhibition-Market Gallery,Toronto
1990-Two person show-Brampton public Gallery
1990-One Person Show-Quan Schieder Gallery
1991-CD-Rom interacive/Philips Corp.
1991-Group Exhibition-Robert Kidd Gallery-Detroit,Michigan
1993-Group Exhibition-Market Gallery
1993-Marilyn (perl/tk)
1994-One Person Show-Schieder and Associates
1995-Group Exhibition-Bau-Xi Gallery
1996-The doorway (http://www.edymond.com/artseen/door.htm)
1997-Newmail (http://www.edymond.com/artseen/newmail.htm) part of Iceflow, the Images festival of Independent Film Toronto
(http://replay.waybackmachine.org/19980209225557/http://interaccess.org/iceflow/newmail.htm)
1997.1998,1999,2001 - http://www.netarts.org , see archives.
see my Rhizome portfolio and Furthfield for current web works and writings.
Collections:
Numerous public and private collections in Canada and the United States.
including,
City of Toronto
McIntosh Gallery, University of Western Ontario, London Ontario
London Public Library, London Ontario
Kitchener Waterloo Public Gallery
Algoma Public Gallery
Kamloops Public Gallery
College of Physicians and Surgeons (Ontario)
Connor and Clark
Royal Lepage
Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: the random
I spent a good chunk of the late nineties trying to emulate random sequences. I ended in disappointment.
The reality is of course discouraging, and follow this carefully:
" No given structure or construct can exhibit truly random behaviour.
Randomness developed mathematically is outside the context of any observer. The finite nature of the universe excludes the truly random by nature"...
so what can you do.
Obey the laws of physics, or try to emulate an open universe that doesn't exist"
for the javascript hackers we have:
function poesis(supposed,given,imagined) {
this.supposed = supposed;
this.given = given;
this.imagined = imagined;
this.print = print;
}
document.write(stanza[(Math.round(100*Math.random()))].given);
stanza[Math.round(100*Math.random())].print();
document.write(stanza[(Math.round(100*Math.random()-1))].imagined);
stanza[Math.round(100*Math.random())].print();
document.write(stanza[(Math.round(100*Math.random()-1))].supposed);
stanza[Math.round(100*Math.random())].print();
onerror=null
//where given is the array of values
or go to the perl cookbook and try a mathematically correct approach:
sub shuffle {
my $array=shift;
my $i;
for ($i=@$array;--$i;) {
my $j=int rand ($i+1);
next if $i==$j;
@$array[$i,$j]=@$array[$j,$i];
}
}
The problem provides a simple solution, and one that rankles the observer.
No truly random situation is available in a closed universe,
well have fun with that!
Eric
The reality is of course discouraging, and follow this carefully:
" No given structure or construct can exhibit truly random behaviour.
Randomness developed mathematically is outside the context of any observer. The finite nature of the universe excludes the truly random by nature"...
so what can you do.
Obey the laws of physics, or try to emulate an open universe that doesn't exist"
for the javascript hackers we have:
function poesis(supposed,given,imagined) {
this.supposed = supposed;
this.given = given;
this.imagined = imagined;
this.print = print;
}
document.write(stanza[(Math.round(100*Math.random()))].given);
stanza[Math.round(100*Math.random())].print();
document.write(stanza[(Math.round(100*Math.random()-1))].imagined);
stanza[Math.round(100*Math.random())].print();
document.write(stanza[(Math.round(100*Math.random()-1))].supposed);
stanza[Math.round(100*Math.random())].print();
onerror=null
//where given is the array of values
or go to the perl cookbook and try a mathematically correct approach:
sub shuffle {
my $array=shift;
my $i;
for ($i=@$array;--$i;) {
my $j=int rand ($i+1);
next if $i==$j;
@$array[$i,$j]=@$array[$j,$i];
}
}
The problem provides a simple solution, and one that rankles the observer.
No truly random situation is available in a closed universe,
well have fun with that!
Eric
Re: Re: Re: Re: schizoanalizys for beginners
Pall Thayer wrote:
> I disagree. I don't think that D & G's schizoanalysis was about
> schizophrenics. It was about breaking down the social molds of
> psychoanalysis. Schizoanalysis is a way out. Instead of using the
> averaged idea of a "normal" (the Oedipal triangle) person as a
> starting point, they propose setting the starting point on an
> individual basis. It fits into the whole concept of Nomadology,
> smooth spaces and numbering numbers. It wasn't necessarily about
> social structures being disabling for schizophrenics, but for anyone
> at all.
>
> Pall
The Three Ecologies
From Transference to Transversality
"Guattari developed the concept of transversality through his interest in finding a kind of therapy adequate to an institutional context; in other words , what happens to classical psychotherapy technique focussed on the cure of an individual on a couch when the environment changes to a psychiatric hospital...
The Institution, Guttari argued, was not simply a backdrop against which classical dual analyses might be undertaken, regardless of their Freudian or Lacanian lineage. The analyst had to come to terms with the effects of the setting on how s/he would normally proceed.Indeed the analyst was called upon to translate and reevaluate technical and conceptual notions in relation to what Guattari called the 'institutional object'."
Eric
> I disagree. I don't think that D & G's schizoanalysis was about
> schizophrenics. It was about breaking down the social molds of
> psychoanalysis. Schizoanalysis is a way out. Instead of using the
> averaged idea of a "normal" (the Oedipal triangle) person as a
> starting point, they propose setting the starting point on an
> individual basis. It fits into the whole concept of Nomadology,
> smooth spaces and numbering numbers. It wasn't necessarily about
> social structures being disabling for schizophrenics, but for anyone
> at all.
>
> Pall
The Three Ecologies
From Transference to Transversality
"Guattari developed the concept of transversality through his interest in finding a kind of therapy adequate to an institutional context; in other words , what happens to classical psychotherapy technique focussed on the cure of an individual on a couch when the environment changes to a psychiatric hospital...
The Institution, Guttari argued, was not simply a backdrop against which classical dual analyses might be undertaken, regardless of their Freudian or Lacanian lineage. The analyst had to come to terms with the effects of the setting on how s/he would normally proceed.Indeed the analyst was called upon to translate and reevaluate technical and conceptual notions in relation to what Guattari called the 'institutional object'."
Eric
Re: Re: Re: schizoanalizys for beginners
As well, we should all take note of the "normal people" in the Oval Office.
Eric
Eric
Re: Re: schizoanalizys for beginners
Plasma Studii wrote:
> totally!!!!
>
>
> On Jan 19, 2006, at 8:07 PM, Marisa Olson wrote:
>
> > I know there is a facetious pun at play here, but I just wanted to
> > chip in
> > about a subject very important to me...
> >
> > I have long been appalled by the way that theorists supposedly
> steeped
> > in
> > psychoanalytic readings could misdefine schizophrenia and then
> > consistently glamorize this very serious, very misdefined condition
> as
> > some sexy alternative to 'reality.' There is a long list of scholars
> > who've become quite famous in the course of building and upholding
> this
> > farce.
> >
> > Now I'm all for creativity, metaphor, and wordplay, but I feel that
> > any of
> > us with a ligitimate interest in these discourses or in contributing
> to
> > any kind of meaningful conversation have a personal responsibility
> not
> > to
> > entrench this kind of grossly irresponsible scholarship.
> >
> > IMHO!
> > marisa
I think the issues that Deleuze and Guttari were addressing in their discourses were ones of "fitting in" and how social structures can be more disabling for schizophrenics. It is currently a devestating condition.
In Mircea Eliade's research, the role of the schizophrenic is enabled by some tribes and excluded by others. In complex social networks, which we are a part of, the schizophrenic is excluded and sent to the shadows.
As well capitalism has no room, or need for the schizophrenic. They don't contribute to the nations wealth in an open market system. Witness the homeless today and the Bedlams of the past. Providing a social space doesn't cure the chemical imbalances, but it can give them a nurturing environment and a sense of belonging.
It isn't a cure, but it does provide needed dignity.
Most people are frightened by schizophrenics. The fear is reinforced in the current social climate. The fear drives the schizophrenic further from the support network. As the isolation is amplified, the schizophrenic feels they are being persecuted. They are being persecuted. It's not a delusion.
That’s really simplified read of the issue ( and Deleuze and Guttari) , but there is a seed of truth there that can offer a starting place for inclusion rather than depending solely upon pharmaceutical companies. After inclusion, maybe progress can be made.
well, there ya go,
Eric
> totally!!!!
>
>
> On Jan 19, 2006, at 8:07 PM, Marisa Olson wrote:
>
> > I know there is a facetious pun at play here, but I just wanted to
> > chip in
> > about a subject very important to me...
> >
> > I have long been appalled by the way that theorists supposedly
> steeped
> > in
> > psychoanalytic readings could misdefine schizophrenia and then
> > consistently glamorize this very serious, very misdefined condition
> as
> > some sexy alternative to 'reality.' There is a long list of scholars
> > who've become quite famous in the course of building and upholding
> this
> > farce.
> >
> > Now I'm all for creativity, metaphor, and wordplay, but I feel that
> > any of
> > us with a ligitimate interest in these discourses or in contributing
> to
> > any kind of meaningful conversation have a personal responsibility
> not
> > to
> > entrench this kind of grossly irresponsible scholarship.
> >
> > IMHO!
> > marisa
I think the issues that Deleuze and Guttari were addressing in their discourses were ones of "fitting in" and how social structures can be more disabling for schizophrenics. It is currently a devestating condition.
In Mircea Eliade's research, the role of the schizophrenic is enabled by some tribes and excluded by others. In complex social networks, which we are a part of, the schizophrenic is excluded and sent to the shadows.
As well capitalism has no room, or need for the schizophrenic. They don't contribute to the nations wealth in an open market system. Witness the homeless today and the Bedlams of the past. Providing a social space doesn't cure the chemical imbalances, but it can give them a nurturing environment and a sense of belonging.
It isn't a cure, but it does provide needed dignity.
Most people are frightened by schizophrenics. The fear is reinforced in the current social climate. The fear drives the schizophrenic further from the support network. As the isolation is amplified, the schizophrenic feels they are being persecuted. They are being persecuted. It's not a delusion.
That’s really simplified read of the issue ( and Deleuze and Guttari) , but there is a seed of truth there that can offer a starting place for inclusion rather than depending solely upon pharmaceutical companies. After inclusion, maybe progress can be made.
well, there ya go,
Eric
SAVED WORKS (2)
CURATED EXHIBITIONS (1)