Showing posts with label visual. Show all posts
Showing posts with label visual. Show all posts

Java Kali Code - Written Long Ago this Program Created a Kaleidoscope... but JAVA Changed the Language and all Old Programs fail to Run Now...

Tye Dye Squiral Java Program Running by gvan42 gregvan


SOMEDAY... I Ought to Re Compile this Code and FIX the Errors & Make the Program Work Again... But I Kinda Doubt that will ever happen... 

 /**tds(number).java by gregvan

code for embedding in webpage....
<applet code="tds(number).class" 
height=500 width=750> </applet>
 **/

import java.applet.*;
import java.awt.*;
//~~~~~~make sure this name is exactly the same as filename~~~~~
public class tds29 extends Applet implements Runnable
{
int spin;
int tiny=1;
int tim=1;
int timFact=1;
int joe=10;
int joeFact=1;
int sd=1;
int sdFact=1;
int god;
int godFact=1;
int mod;
int god1;
int mod1;
int modFact=1;
int q=2;
int xx,yy;
int rr,gg,bb;//color variables 
int bw;//black and white 
int bwq=1;    
int rq=1; // color up-down factors
int gq=1;
int bq=1;

int w,ww;
int wwf=1;
int wf=1;

int cx; //center of screen x
int cy; //center of screen y

        Thread    myRunner;
        Image     buffer;         
        Dimension appletSize;     
        Graphics  bufferGraphics; 

        public void init()
        {    
        setBackground(Color.black);
        appletSize = this.getSize();     
        buffer = this.createImage(appletSize.width, appletSize.height);
        bufferGraphics = buffer.getGraphics();
	cx=appletSize.width/2;
        cy=appletSize.height/2;

        }

        public void start()
        {
             if (myRunner == null)
             {
                 myRunner = new Thread(this);
                 myRunner.start();
             }
        }

        public void run()
        {
            Thread  executingThread;                   
            executingThread = Thread.currentThread();

            while (myRunner == executingThread)
            {
               //new random numbers to start animation
	 

//random starting colors
rr=(int)(Math.random() *255);
gg=(int)(Math.random() *255);
bb=(int)(Math.random() *255);
bw=(int)(Math.random() *255);
xx=gg-128;
yy=rr-128;

w=(int)(Math.random() *8);
ww=(int)(Math.random() *13);

               repaint();
               try
               {Thread.sleep(1000);}
               catch(InterruptedException e) {} 

               while (myRunner != null)
               {
                  repaint(); 
                  try
                  {Thread.sleep(100); }
                  catch (InterruptedException e) {}
               }  
           } 
        }
//~~~~~~~~drawing squares stuff~~~~~~~~~~~~~~~
public void drawSquares1(int cx,int cy,int xx,int yy,int q)
        {

bufferGraphics.fillRect(cx-xx-q,cy-yy-q,q+q,q+q);
bufferGraphics.fillRect(cx+xx-q,cy+yy-q,q+q,q+q);
bufferGraphics.fillRect(cx-yy-q,cy+xx-q,q+q,q+q);
bufferGraphics.fillRect(cx+yy-q,cy-xx-q,q+q,q+q);

bufferGraphics.fillRect(cx-xx+yy-q,cy-xx-yy-q,q+q,q+q);
bufferGraphics.fillRect(cx+xx+yy-q,cy-xx+yy-q,q+q,q+q);
bufferGraphics.fillRect(cx+xx-yy-q,cy+xx+yy-q,q+q,q+q);
bufferGraphics.fillRect(cx-xx-yy-q,cy+xx-yy-q,q+q,q+q);

}

public void drawSquares2(int cx,int cy,int xx,int yy,int q)
        {
q=q+1;

bufferGraphics.drawRect(cx-xx-q,cy-yy-q,q+q,q+q);
bufferGraphics.drawRect(cx+xx-q,cy+yy-q,q+q,q+q);
bufferGraphics.drawRect(cx-yy-q,cy+xx-q,q+q,q+q);
bufferGraphics.drawRect(cx+yy-q,cy-xx-q,q+q,q+q);

bufferGraphics.drawRect(cx-xx+yy-q,cy-xx-yy-q,q+q,q+q);
bufferGraphics.drawRect(cx+xx+yy-q,cy-xx+yy-q,q+q,q+q);
bufferGraphics.drawRect(cx+xx-yy-q,cy+xx+yy-q,q+q,q+q);
bufferGraphics.drawRect(cx-xx-yy-q,cy+xx-yy-q,q+q,q+q);
if(gg<bb){
bufferGraphics.drawLine(cx-xx,cy-yy,cx-yy,cy+xx);
bufferGraphics.drawLine(cx-xx,cy-yy,cx+yy,cy-xx);
bufferGraphics.drawLine(cx+xx,cy+yy,cx-yy,cy+xx);
bufferGraphics.drawLine(cx+xx,cy+yy,cx+yy,cy-xx);
}
if(bw>rr){
bufferGraphics.drawLine(cx-xx,cy-yy,cx,cy);
bufferGraphics.drawLine(cx+xx,cy+yy,cx,cy);
bufferGraphics.drawLine(cx-yy,cy+xx,cx,cy);
bufferGraphics.drawLine(cx+yy,cy-xx,cx,cy);

bufferGraphics.drawLine(cx-xx+yy,cy-xx-yy,cx,cy);
bufferGraphics.drawLine(cx+xx+yy,cy-xx+yy,cx,cy);
bufferGraphics.drawLine(cx+xx-yy,cy+xx+yy,cx,cy);
bufferGraphics.drawLine(cx-xx-yy,cy+xx-yy,cx,cy);
}
q=q-1;
}
//~~~end of drawing squares stuff~~~~~~~~~~~~~~~

       // make sure the animation really stops when exiting webpage
        public void stop()
        { 
          if (myRunner != null)
             { myRunner = null; }
        }

        //used to prevent blinking graphics....
        public void update(Graphics g)
        {paint(g);}

        public void paint(Graphics g)
        {
mod=mod+modFact;
if(mod>9){modFact=-1;}
if(mod<-9){modFact=1;}

//~~~~~~~tim is inside god~~~~~~~~
god=god+godFact;
if(god>12){godFact=-1;}
if(god<-12){godFact=1;

tim=tim+timFact;
if (tim>5){timFact=-1;}
if(tim<2){timFact=1;}

}//end of god

//-----------size of squares---------
sd=sd+sdFact;
if (sd > 12){sdFact=-1;}
if(sd<3){sdFact=1;}

tiny=tiny+1;
if(tiny>rr){tiny=-(rr+rr);}

joe=joe+joeFact;
if(joe>12){joeFact=-1;}
if(joe<3){joeFact=1;}

spin=spin+1;
if(spin>20){
spin=1;
for (int i3=0; i3<gg;i3++){
mod1=mod1+1;
if(mod1>10){mod1=-10;}
god1=god1+1;
if(god1>9){god1=-9;}
}}

//----------------------------------for loop--------------------------------
//for loop to paint many images before sleeping .1 second     
       for (int i=0;i<3;i++)
        {

             //color changer up counters
if(god>mod){
 rr=rr+1;
           if(rr>255){rr=1;}
gg=gg+2;
           if(gg>255){gg=1;}
bb=bb+3;
           if(bb>255){bb=1;}
bw=bw+4;
           if(bw>255){bw=1;}
}
if(god<=mod){
rr=rr+rq;
if(rr>252){rq=-1;}
if(rr<3){rq=1;}
gg=gg+gq;
if(gg>251){gq=-1;}
if(gg<4){gq=1;}
bb=bb+bq;
if(bb>250){bq=-1;}
if(bb<5){bq=1;}
bw=bw+bwq;
if(bw>249){bwq=-1;}
if(bw<6){bwq=1;}
}          
//-------------------position xx,yy----------------
w=w+wf;
if (w>12+mod){wf=-1;}
if (w<-(11+mod)){wf=1;}

ww=ww+wwf;
if(ww>11+god){wwf=-1;}
if(ww<-(12+god)){wwf=1;}
if(tiny<=0 && tiny>-rr){             
xx=xx+w;
yy=yy+ww;
}
if(tiny>0){
xx=xx+mod;
yy=yy+god;}
if(tiny<=-rr){
xx=xx+mod1;
yy=yy+god1;}

//~~~~~~~~~~check to see if off screen~~~~~~~~

if(xx>cx+100){xx=0;
yy=0;}
if(yy>cx+100){yy=0;
xx=0;}
if(xx<-(cx+100)){xx=0;
yy=0;}
if(yy<-(cx+100)){yy=0;
xx=0;}

//-----------for loop ii--------------
if(tiny<0){
joe=joe+joeFact;
if(joe>12){joeFact=-1;}
if(joe<3){joeFact=1;}
}
//for loop to paint many images     
       for (int ii=-(joe*tim);ii<((joe*tim)+1);ii=ii+joe)
        {
q=sd;
if (tiny>0){q=5;}
if(tiny<=-rr){q=mod1+10;}

xx=xx+ii;
if(tiny>=-rr){yy=yy-ii-ii;}
if(tiny<-rr){yy=yy+ii;}
//apply the new numbers for stars
        Color wNew = new Color(rr, gg, bb);
        bufferGraphics.setColor(wNew); 
//~~~~~call subroutine~~~~~~~~
drawSquares1(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~~~`~
//apply the new numbers for stars
        Color waxNew = new Color(256-rr, 256-gg, bb);
        bufferGraphics.setColor(waxNew); 
//~~~~call subroutine~~~~~~~~~~
drawSquares2(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~~`~

//~~~~~~~~~other set of squares~~~~~~~~~~
//apply the new numbers for black erase
        Color zNew = new Color(bw,bw,bw);
        bufferGraphics.setColor(zNew);
//~~~~~~~~~calculate difference~~~~~~~~~~~

xx=xx+25;
yy=yy+25;
//~~~~call subroutine~~~~~~
drawSquares1(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~`~
//apply the new numbers for squares
        Color zapNew = new Color(bw,rr,256-bb);
        bufferGraphics.setColor(zapNew);
//~~~call subroutine~~~~~~~~~
drawSquares2(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~`~
xx=xx-25;
yy=yy-25;

//~~~~~~~~~~~~~~~~`~
if(xx>yy){
//apply the new numbers for black erase
        Color zapBNew = new Color(gg,bw,bw);
        bufferGraphics.setColor(zapBNew);
}
//~~~~~~~~~~~~~~~~`~
if(xx<=yy){
//apply the new numbers for black erase
        Color zapCNew = new Color(0,0,0);
        bufferGraphics.setColor(zapCNew);
}
xx=xx+100;
yy=yy+100;
//~~~call subroutine~~~~~~~~~
drawSquares1(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~`~
yy=yy-100;
xx=xx-100;
xx=xx+200;
yy=yy+200;
//~~~call subroutine~~~~~~~~~
drawSquares1(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~`~
yy=yy-200;
xx=xx-200;
xx=xx-125;
yy=yy-125;
//~~~call subroutine~~~~~~~~~
drawSquares1(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~`~
yy=yy+125;
xx=xx+125;
xx=xx-225;
yy=yy-225;
//~~~call subroutine~~~~~~~~~
drawSquares1(cx,cy,xx,yy,q);
//~~~~~~~~~~~~~~~~`~
yy=yy+225;
xx=xx+225;


xx=xx-ii;
if(tiny>=-rr){yy=yy+ii+ii;}
if(tiny<-rr){yy=yy-ii;}
}//end of for ii loop

   }//end of for loop i
     // move the entire buffer onto the display screen and change
     // pixels that are a different color...
      g.drawImage(buffer, 0, 0, this);
    }
} // end of the program...

The Movie Koyaanisqatsi (Life out of Balance) is FORBIDDEN on Facebook. Strange Corporate Censorship. LINK PROVIDED HERE.

https://www.youtube.com/watch?v=i4MXPIpj5sA

https://en.wikipedia.org/wiki/Koyaanisqatsi
Koyaanisqatsi: Life Out of Balance, is a 1982 American experimental film produced and directed by Godfrey Reggio with music composed by Philip Glass and cinematography by Ron Fricke.

The film consists primarily of slow motion and time-lapse footage of cities and many natural landscapes across the United States. The visual tone poem contains neither dialogue nor a vocalized narration: its tone is set by the juxtaposition of images and music. Reggio explained the lack of dialogue by stating "it's not for lack of love of the language that these films have no words. It's because, from my point of view, our language is in a state of vast humiliation. It no longer describes the world in which we live."[3] In the Hopi language, the word Koyaanisqatsi means "unbalanced life".[4]

The film is the first in the Qatsi film trilogy: it is succeeded by Powaqqatsi (1988) and Naqoyqatsi (2002). The trilogy depicts different aspects of the relationship between humans, nature and technology. [5] Koyaanisqatsi is the best known of the trilogy and is considered a cult film.[6] However, because of copyright issues, the film was out of print for most of the 1990s.[7] In 2000, the film was selected for preservation in the United States National Film Registry by the Library of Congress for being "culturally, aesthetically, or historically significant".[8]


ALL My Music Videos:

https://www.youtube.com/user/gregvanderlaan/videos

Link to My Psychedelic Art Webstore: https://www.zazzle.com/store/gregvan #TrumpHasFailed and NO Pile of LIES Can Cover Up REALITY... 180,000 Dead Americans from Coronavirus SO FAR! - Massive Unemployment - Endless Business Bankruptcies - Riots in the Streets - Police Murdering Unarmed Black Men - #Vote4Joe End The Madness! https://gvan42.blogspot.com/2020/08/trumphasfailed-and-no-pile-of-lies-can.html

Do You Really Want Another Four Years of FAILURE? #Vote4Joe

How to Prevent Your Own Brainwashing… UNPLUG From the Mind Control TV Networks… 

FOX & SINCLAIR


What Happens When You Point a Video Camera at the Monitor That Is Displaying What The Camera Sees? Runaway Visual Echo... Technical Name is Video Feedback Loop...

The Basic Idea was written about in a Book Called Godel, Escher Bach by Douglas Hofstadter.
https://en.wikipedia.org/wiki/Video_feedback

While I was working as a clerk at Radio Shack, I Had use of all that equipment... after the store was closed... I payed with this idea and had a lot of fun...






Ham Radio... Selling Equipment at Radio Shack in the 1990s - I Met a Lot of Interesting and Obsessive People who were Amateurs.

It was Really Fun to Be Introduced to The Ham Radio Culture... a World I Had No Contact With...


Dot Dot Dot DASH DASH DASH Dot Dot Dot... SOS...  

Link to More About Ham Radio Operators...

Do the Math: a silly story… Absurdist Fiction! Not one word is True... [wink, wink]

During the early 1970’s a gentleman and his wife were working in Palo Alto, California and he discovered the key to enlightenment. He published it as a book and became a leader of a religious group very popular with the high tech crowd surrounding Apple and HP. To put it briefly, the key is 01101011001110110100010001… and it went on like that for a hundred pages finally ending with the amazing conclusion that astonished the world and allowed the couple to earn a million dollars from royalties… 11010011100001110101100110.

A few years passed and the wife made a public statement: “While my husband is a fine fellow and a wonderful father to our children, I sadly must inform you that he is almost entirely wrong about the key to enlightenment. I have been doing the math and can state that there is a missing part… it is:10010100110001001011101110… and it went on like that for a hundred pages finally ending with the amazing conclusion that astonished the world and allowed the couple to earn another million dollars from royalties… 00101100011110001010011001.

And the people of the world did the math… and she was right… while each of the strings of zeros and ones by themselves showed part of the key to true enlightenment, if you add the two numbers together, they equal:1111111111111111111111111…. and it goes on for a hundred pages finally ending as you would expect… 111111111111111111111111111.

Impossible Objects Used for 
Interdimensional Power Sources


Digital Max The Cat in Visual Echo Land

ANOTHER SILLY STORY:

 https://gvan42.blogspot.com/2018/04/murder-mystery-backstory-etc-blue.html

"Blue Cheese Gone Bad" - A Murder Mystery - Not One Word is True, It's Fiction! Disclaimer: No, I did not Google the keywords "untraceable poison" at the Public Library using the sign in name "John Smith". You would have to ask Mr. Smith about that.

"Channeling my Inner Chewbacca!" I used to Smoke Tobacco and Drink Coffee All Day Every Day for 47 Years... When I Quit, I Was No Longer Filled with a Slow Burning Rage... Who Would Have Guessed? That...

Smoking Causes Mental Health Problems TOO! I was finally able to quit USING FEAR. When my brother got Lung Cancer, I Was Scared and QUIT. I simply Suffered Thru the Month of Pain caused by Nicotine withdrawal... I have fount that Chewing Nicotine Gum Fails... The Patch Failed... "The Turkey" animated Commercials on TV have a Giant List of Side Effects.

My Cousin Quit using Hypnosis at a week long summer camp... Chanting, Dancing around a Campfire... and Focusing on a VISUAL MANTRA. Whenever he wanted to smoke, he thought of the artwork for the Oneill's Surf Shop.

READ MORE of My Autobiography: https://gvan42.blogspot.com/2018/03/growing-up-in-los-gatos-california-in.html


Typical Paragraph from my Autobiography...
I delivered the Los Gatos Times - Observer Newspaper. My Route was on University Ave between Highway 9 and Blossom Hill Road. I Remember Rolling Newspapers and My Hands Turned Black from the Ink. I wore a Big Canvas Bag - Delivered on my bicycle. Had to COLLECT the Money! I Hated That. and Had to go Solicit New Subscribers... One time on Summit Road a Dog Bit Me but I Didn't Bleed. I Can't Imagine NOWADAYS a Corporation Sending Children TRESPASSING to Sell a Product... Obvious Danger from Guard Dogs.

At Fisher Junior High School, My Favorite Teacher was Mr Fortier - He Made us Write Essays about Posters on the Wall. One was a Red White and Blue Swastika in a Flag Motif... another was The "Solarized" Photo of the Grateful Dead Standing in front of Little Boxes type Houses in South San Francisco. I chose the Flag Swastika because I did not know who the Grateful Dead Were... Maybe I'm Spelling His Name Wrong: Pronounced: For Tea Yeah... and... Isidro Maytorena...

****** (~);-} ******
All about Homelessness in Los Gatos:
Do you remember when... ...Los Gatos had one homeless guy? The "town bum" to be politically incorrect about it. I used to remember his name. He walked up to me once at LGHS and asked drunkenly, "Do you have the year?" ...the woods between HWY 17 and LGHS were called "'Nam"? ...two smoking sections... The upper one for artsy New-wavers, and the lower one for the Stoners? ..getting suspended by Mr McCloskey? ...Super Big Gulps at the 7/11 on LG Blvd were for some reason less expensive than a regular Big Gulp? ...S.T.A.N.D.? (the funniest think I ever saw scribbled onto a desk at LGHS would have been in about 1985.. S.I.T.D.O.W.N. - Students Into Total Destruction of the World Now) Steve Wells I believe the homeless guy died in a fire under part of 17 along the creek trail maybe 20 years ago. He was asleep and his sleeping bag caught fire. There was a homeless woman in the 80s named Joan. Steve Wells https://apnews.com/ed4722ce15a05208df9a41fa44d80272 Guitar Craftsman Dies in Homeless Camp Fire Steve Wells I was told by Tom at 7-11 (old guy with skin cancer on nose) that Joan had a PhD and somehow went downhill. I used to get her a bite to eat and a drink once in a while in the late 80s. Scott Peronto There were a few others in the late 70s besides Warren. Old Ed made his living painting portraits. He was a really friendly guy. I let him hang out at the magazine rack in the 7-11 during my shifts. He told me once he had been a Marine fighting in the Pacific during WWII. He was on an island hopping campaign on Sabu. He had a carton of cigarettes in his backpack and he was hiding behind a stump. They were firing at him with a machine gun and it was shredding the carton of cigarettes. They were flying every where but he never got hit. Don't know what ever happened to Old Ed. He was quite a guy. Jason Matthews Steve Wells I remember Joan vividly I worked downtown in 2005 at harvest home stores and she would say “ do you have a dollar for food” if u said no she called you stupid Jason Matthews Steve Wells I gave her a dollar once and she pulled out a fat wad to count it Steve Wells Jason Matthews think I had a similar response to generosity. Wes Tietzen In the fifties a number of men lived under the viaduct on 17 in the winter and camped on a meadow close to the creek in good weather.As kids we were a bit apprehensive but nothing ever came of it. Not a homeless man by any stretch, Pete the Hermit lived on the opposite side of the ridge overlooking Cypress.Ranch. He had a little cabin that was trashed after his death. Somewhere in the archives there should be mention of him. Did the police in LG give floaters to the transients? I suspect so but I may be wrong.Overall, those were bucolic times in LG.The last time I was in LG a woman living in a gated McMansion on Kennedy Road declared I had no right walking on a public road and causing her dogs to bark. That's just one of the reasons I avoid the Excited States. Evan Lloyd Indian Pete we used to call him. Urban legend of his fortune being buried up there under the remains of his cabin behind 4 trees. I never found it and I looked... lol Eric Sanders I wonder what happened to Lark Ave Louie he would sweep in front of Jiffy and Gremic while telling me wisdom. Yes i remember Nam and madness that went down in there. Smoking sections-use to skate from the upper one by art building down through the qu…See More Dan Koolstra Eric Sanders thanks for the reminder. I remember seeing him outside sweeping all the time . Eric Sanders Dan Koolstra Yeah Louie was a sweeping mastercraftsman. Hung out with him often and just listened to what he had to say. Dan Koolstra Eric Sanders im thinking late 70s maybe but definately through the 80s Jim Bond Eric Sanders I remember standing in the outside basketball court for P.E. and seeing your brother Phill doing a wheelie with a girl on the back of his bike!!! I thought how COOL!!!! He was on a Yamaha TT 500 or 250 not sure? Years later I got to know Phill better through Jon Felock.i also remember Phill on a Suzuki GSXR 1200..... it was fast!!!! I also remember doing a lot riding with Phill in Hollister.....your brother was a great friend!!!!!! Maria Webber Dan Koolstra yes definately in the 80s is when I remember 'Louie the bum' as we called him back then. My much older brothers knew him but I was little and he kind of scared me. They told me he fried his brain on acid...I don't even think I knew what that meant back then lol Lee Poland What's up Eric? It's been a long time. Sheldon Cooper Jim Bond Felick wa a fool, hung out with another loser, Willie Buhl whom I had the pleasure of pounding one day years later near Enco/Exxon. Sheldon Cooper Felock, that is. What a set of loser tools they were. Eric Sanders Jim Bond if memeory serves it was a GS1150ES Suzuki. And the other was his TT500. He would do wheelie's down Shannon from about the 7-11 to the firestation. Sure do miss him. He was a jokester and knew how to ride that bike. Evan Lloyd What about the guy we called Foot in the early eighties? Sheldon Cooper Evan Lloyd I remember Foote. Worked for my brother's landscaping co. Nancy Hill I thought there was guy named Dave that lived behind Fosters Freeze. They would pay him with food to sweep up back there. Circa 1978-81 Laura Whiteman Qanadilo Nancy Hill he smelled so bad! Holly Finelli Do you remember that guy came to the school that gave a presentation on Cocaine? He said he could put a cloth through one side of his nose and outside the other? I think they made a movie about him. Sean Rector I thought it was an episode of Baretta. Tony something... Bryan P. Lucey Holly Finelli I think his name was Toma. “Toe-ma”. I may have messed up the spelling. I saw that on a video after I graduated. Maybe mid to late 1980s. Holly Finelli Bryan P. Lucey yes! I was going to say Toga. Lol. We could probably Google it. The dude was pretty intense. Holly Finelli Bryan P. Lucey if memory serves me right, I think they had the big drug bust after he left in '86. We graduated the same year. I remember because you spelled my last name wrong on the shirts you made senior year. 🙄 Bryan P. Lucey Holly Finelli I graduated in 1981. I was (and still am) so uninvolved that there is no way I misspelled your name and I am not creative enough to be involved with shirts.With that said, my writing often contains misspellings and typos. Glad to be an accountant. Holly Finelli Bryan P. Lucey haha. Ok. You're off the hook. Bryan P. Lucey Holly Finelli I’m glad. When my name gets misspelled I hate it. Sandy Erickson I remember Toma. He came and did a huge presentation at LGHS, and we got out of class for it. He was kind of like that Chris Farley character on SNL who yelled about living in a van down by the river. At least, that's kind of what he seemed like at the time. Erin Gates Erin Gates Victor? Joko MacKenna I would remember that. Victor would be an odd name for such a person. I'm guessing that the -tor doesn't survive the tribulations of marginalization and they all end up as Vic's. Louie! That was his name. Gretchen Agner Erin Gates I remember Victor. Terry Laucher I knew Victor. He was not a bum or anything like that. I dont know where he lived, thought he spent a lot of time downtown. Very frrail, usually with some kind of straw hat, always clean. Usually a pair of khakis and nice sweater. Must have had a decent place to live. He was just an old man (in his 80;s) who walked around town cleaning paper off the sidewalk I'll bet he live in a home who gave him freedom as long as he did not get into trouble. He did have some mental frailty. I was 18 working at the LG theater and he passed by many times around 1961 Terry Laucher I am trying to remember another individual who walked around town, shovel ready, for a job. He carried a shovel over his shoulder and was usually seen in coveralls, and a straw hat. The joke was that he was ready to work, although mentally he may not have been. Guys like this were seen to be mentally challenged, or just different, instead of using a pejorative description such as bum. Pamela Dishman-Emard Terry Laucher Victor was always nice to me. He let me kiss him on the cheek one day, thanking him for being the town's steward. He might have been viewed as a 'nut case' by some, but I always thought he was the Town's indispensable "clean up man." He'd just die seeing them crap human waste on the streets now.🙃 Tim Mcguire Terry Laucher Victor was far from homeless. He lived on my street Fairview plaza in a big Victorian with his sister. He was a Los Gatos treasure! Gerhard Donner Greg Stokes Pamela Dishman-Emard I was an Artsy-Stoner who smoked wherever. Quit that shit a long time ago, not the Art.😎 Martin King I walked through "Nam" in Mr. Verkyle's class. Hung out with the smokers by the art wing.

Gregory Laan: I was Homeless in Los Gatos Briefly. It was the Summer after I was fired from my Job at Radio Shack for Drinking on the Job and Stealing Money. I moved to Chico and Lived in Cheap Motels until my money ran out. Then I spent 4 Months living in Bidwell Park and when The Money Came in from my Sale of Radi Shack Stock... I took a lot of Greyhound Bus Rides... Including a Trip to Santa Cruz and then Los Gatos... I did not want to Talk to my Parents so I slept Near the Baseball Field near the Freeway... However , I Preferred Chico so I back got on the Bus... I went to Three Alcoholics Anonymous Meetings A DAY for months... Quit Drinking, Met My Latest Wife and Eventually Moved to Amazing Arcata to Learn Computer Science at Humboldt State University... Got a Job at the Welfare Department Helping Homeless People... Hey, I Had Knowledge about the Subject, Having Been "House Free" myself... Ironically, Stealing Money from Radio Shack allowed me to have enough money to Invest in the Stock Purchase Plan... Yes, Crime Pays...

Music Video: "Ceremony and Ritual" by Gregory Vanderlaan - Totally Cosmic Lyrics but Every Word is True!

 https://youtu.be/FtCyPg8Mr5Y

Inspired by a Grateful Dead Concert in Philadelphia... THANKS! I was way in the Back at JFK Stadium and I noticed that the people danced MORE wildly when the Music PEAK Hit them... I could see the Intensity of the Jam flowing thru the Crowd... and then it Crashed over ME! 

VISUAL SOUND... but actually real... People Really Dance More Enthusiastically when Jerry Garcia is Wailing...

and a Three Day Concert at The Spectrum... Three days of Camping in the Parking Lot and swimming at the Public Pool... 


A                                             B                       D                              A
OUR MINDS HAVE BEEN FUSED INTO ONE COLONIAL ANIMAL…
A                                  B                                   D                A
FLOWING IN THE CURRENTS OF THE SOUND… [2X]
G                  A               D                 A D
adrenaline, serotonin, synapses on fire ! [2X]
A                                  B                                     D             A
IN THE SHADOWS,TORCHES FLICKER IN THE BREEZE.
A          B                D        A
THE ORACLE BEGINS TO SPEAK, FEEL THE HEAT… 
G           A          D           A D
adrenaline, serotonin, synapses on fire! [2X]
A           B           D                             A           
WE DANCE OUTSIDE OF THE TRADITIONAL REALM OF TIME AND SPACE.
A         B           D                     A
THE CROWD ERUPTS INTO OUTBURSTS OF FREE-FORM MOTION
A       B               D   A
AS THE INTENSITY OF THE JAM PEAKS
G           A          D           A D 
adrenaline, serotonin, synapses on fire! [2X]
A               B      D         A 
MY BODY IS TRANSFORMED INTO A PINBALL 
A               B          D         A  
AND I RICCOCHET AROUND THE SPECTRUM ARENA
A                B                D                 A
BOUNCING OFF THE FLASHING LIGHTS. I'M SURROUNDED BY DEADHEADS
A                 B          D      A          
WHO ARE INTENT ON TELLING ME STUPID JOKES…
E         A     E           A
THEY JUST…know… I WILL LAUGH… [3X]
A       G     A     E
WE'RE A KINDA SILLY PEOPLE... [2X]
G           A          D           A D
adrenaline, serotonin, synapses on fire! [2X]

~~~~~~ (~);-} ~~~~~~


My Facebook Group (Things I remember growing up in Los Gatos) has improved my memory... We all post memories of what happened to us as Children. When people talk of events that happened to me, I remember what I was doing and the names of the other people... Some memories had been lost for decades... The first girl I kissed... for example... Now I remember her Name! I wonder if the drugs they advertise on TV actually Improve Memory. In General, those ads are Lies or exaggeration... Practically speaking the best plan for improving health, including Mental Health is to eat right and exercise... This is NOT secret information... I do think it's funny that they advertise PREVAGEN very often and they repeat the name again and again and again. as if they know that their Target Audience is people that have difficulty remembering things! Good Marketing Strategy... Here is a little trick I use. I do all my word processing in NOTEPAD. It does not have a Spell Checker. I have to remember how to spell words... and the words I have difficulty spelling are Flagged as Wrong by the spell checker I use on Google's Blogger... and That spell checker has a very limited vocabulary... I laugh at the Names of People It Does Not Know... after it corrects my spelling many times, I learn... Intelligence has an I after the Double L... etc, etc, etc... 


I wonder if Facebook, Google, Apple, Microsoft and Amazon are actually more powerful than the US Government. Right Now there is a Battle between Big Tech and the Government. Facebook was Fined $5 Billion Dollars but The Stock Price Went UP! by enough to offset the fine! Real People LOVE Facebook and Hate the Government. We the People Laugh at the Old White Men in Congress failing to understand the BASIC Business Plan of Online Corporations... They sell targeted advertising. Little Stevie Munchkin wants an Investigation of Amazon because it wiped out Brick and Mortar Retail Stores. Well, no amount of Investigation will reverse THAT trend. I wanted to buy a Telescope so I could look at the boats going in and out of the Harbor in Eureka. So I went to a Brick and Mortar Store and asked questions, looked at products and the I bought it on Amazon... NO WAY was I going to Pay EXTRA so that retailer could rent a Building and heat it, keep the lights on... ETC... I see that people buy CARS online... well, no high pressure salesmen hassling the shopper... I remember shopping for a new can in the 1980s... it was very annoying to deal with those salesmen... trying to trick me into buying stuff I didn't want or need. and then they really screwed me using Chrysler Credit Corporation... Well, forget That. Online Loans, Online Car Dealers. The entire process is MUCH better for the Consumer... and... Jeff Bezos Bought the Washington Post Newspaper so he can influence Public Opinion... Try Fighting THAT you Pathetic TrumpNik!

Art designed to use persistence of vision. When you look away from the image you see the opposite colors...

Click on the pictures to see bigger images
On a white background this is visible as an echo when you look away... 
we be shroomin'
"Science goes BOINK?" -Hobbs
One World...
Mandala

Popular Posts