Journaling on estrip is free and easy. get started today

Last Visit 2024-03-16 17:05:41 |Start Date 2003-07-07 03:39:31 |Comments 5,617 |Entries 6,438 |Images 14,748 |Sounds 119 |SWF 21 |Videos 322 |Mobl 2,935 |Theme |

01/27/05 02:46 - ID#31610

In 1996 the telegarden sprouted

I was talking with (e:twisted) about an online garden that was an art piece in ars electronica 1996 called telegarden . I realized that in 1995 I was a senior in high school and we didn't even have the internet at home or in school. That was only 10 years ago. I think the first time I saw the internet in action was in 1996 in Flensburg, Germany. I remember I didn't quite understand how it even worked. I thought netscape was the internet at that point. It's funny now looking back on my ignorance. It's amazing how much has changed since then in such a short period of time. It's so weird to think without the net I probably wouldn't have ever even met her.

image

In response to (e:metalpeter) 's collection question[inlink]metalpeter,251[/inlink]l, (e:twisted) wrote me an IM saying

lwist: now you can say you collect internet friends.
print addComment

Permalink: In_1996_the_telegarden_sprouted.html
Words: 160
Location: Buffalo, NY


01/27/05 12:45 - ID#31609

The mailman and filesharing

I redid the code it is better now but the whole thing seems really inefficient somehow. I guess it is starting to be fun. Does anyone remember text based RPGs. This screen reminded me so much of my VIC 20 back in the early 80s. I think it was even before (e:mike) 's time. Then we got the commodore 64. I am so sad that I never got a modem at that time. i wonder how different my life would have been if I had been wired at an earlier age. Not just an earlier age for me, but an earlier age for the internet.

image

Our version of filesharing was the mailman. He would bring a round a list of all of the software other people on the route had for tehir commodore 64, which was pretty pervasive back then. Then we would offere trades and he would copy and drop off disks. It was very similar to kazaa or emule just really manual.

I even rememeber copying programs on audio tape during that time. Does anyone have any early days on the net stories they can share. Or other experience with other net communities on a local level.

image

' {$STAMP BS2}
DEBUG "code start", CR

INPUT 12
INPUT 13
INPUT 14
INPUT 15

dir VAR Word 'current direction
old_dir VAR Word ' last direction

north VAR Byte 'keep tabs on # of times up was pressed
south VAR Byte 'keep tabs on # of times down was pressed
west VAR Byte 'keep tabs on # of times left was pressed
east VAR Byte 'keep tabs on # of times right was pressed

Index VAR Nib ' Define normal nibble variable.

test:

'reset dir for next test loop
old_dir = dir
dir = 0

nloop:
IF IN12 <> 1 THEN sloop
dir = 1
north = north + 1

sloop:
IF IN13 <> 1 THEN wloop
dir = dir + 10
south = south + 1

wloop:
IF IN14 <> 1 THEN eloop
dir = dir + 100
west = west + 1

eloop:
IF IN15 <> 1 THEN printloop
dir = dir + 1000
east = east + 1

printloop:

IF dir = 0 THEN nothing_pressed 'don't print anything because nothing is being pressed
DEBUG CLS 'clear the screen

'determine the direction
IF dir = 1 THEN goNorth
IF dir = 100 THEN goSouth
IF dir = 10 THEN goEast
IF dir = 1000 THEN goWest

'angled directions
IF dir = 11 THEN goNorthEast
IF dir = 1001 THEN goNorthWest
IF dir = 110 THEN goSouthEast
IF dir = 1100 THEN goSouthWest

totals:

DEBUG ? north
DEBUG ? south
DEBUG ? west
DEBUG ? east
PAUSE 200 'pause before next pole

IF north > 15 THEN winloop 'if the user pressed up 15 times then go to the winning loop

GOTO test

goNorth:
DEBUG "you are going north", CR
GOTO totals

goSouth:
DEBUG "you are going south", CR
GOTO totals

goEast:
DEBUG "you are going east", CR
GOTO totals

goWest:
DEBUG "you are going west", CR
GOTO totals

goNorthEast:
DEBUG "you are going northeast", CR
GOTO totals

goNorthWest:
DEBUG "you are going northwest", CR
GOTO totals

goSouthEast:
DEBUG "you are going southeast", CR
GOTO totals

goSouthWest:
DEBUG "you are going southwest", CR
GOTO totals


nothing_pressed: 'nothing is pressed try again, don't bother pausing
GOTO test

winloop:
DEBUG "You won by pressing the north button 15 times"
END

END

print addComment

Permalink: The_mailman_and_filesharing.html
Words: 514
Location: Buffalo, NY


01/26/05 11:01 - ID#31608

My advisor worries

One of my thesis advisors, asked me today if I was enrolled in the MFA program. This is the same program which I have attended for three years and will be graduating from this summer. That is insane.
print addComment

Permalink: My_advisor_worries.html
Words: 38
Location: Buffalo, NY


01/26/05 06:57 - ID#31607

This is the stupidest language ever

I started writing this all to basic code. I hate it no functions, no classes, no strings as far as i can tell. You can't even have an if statement assign a value. it can only run a loop. At first I thought that it would make it easy. It just makes it way harder as I started out with functions and OOP. I don't think I ever want to use a basic stamp after this. maybe t's just beginner irritation.

Yes that is a Virgin Mary candle in on my computer desk. (e:matthew) just got it for me. I think it is helping my basic stamp.

image

The simple serial joystick code I wrote

' {$STAMP BS2}
DEBUG "code start", CR

INPUT 12
INPUT 13
INPUT 14
INPUT 15
up VAR Bit
down VAR Bit
left VAR Bit
right VAR Bit

upcount VAR Byte 'keep tabs on # of times up was pressed
downcount VAR Byte 'keep tabs on # of times down was pressed
leftcount VAR Byte 'keep tabs on # of times left was pressed
rightcount VAR Byte 'keep tabs on # of times right was pressed

Index VAR Nib ' Define normal nibble variable.

test:
'reset values for next test loop
up = 0
down = 0
left = 0
right = 0

uploop:
IF IN12 <> 1 THEN downloop
up = 1
upcount = upcount + 1

downloop:
IF IN13 <> 1 THEN leftloop
down = 1
downcount = downcount + 1

leftloop:
IF IN14 <> 1 THEN rightloop
left = 1
leftcount = leftcount + 1

rightloop:
IF IN15 <> 1 THEN printloop
right = 1
rightcount = rightcount + 1

printloop:

IF up + down + left + right = 0 THEN nothing_pressed 'don't print anything because nothing is being pressed
DEBUG "total ", ? upcount
DEBUG "total ", ? downcount
DEBUG "total ", ? leftcount
DEBUG "total ", ? rightcount
PAUSE 200 'pause before next pole
IF upcount > 15 THEN winloop 'if the user pressed up 15 times then go to the winning loop

GOTO test

nothing_pressed: 'nothing is pressed try again, don't bother pausing
GOTO test

winloop:
DEBUG "You won by pressing the up button 15 times"
END

END

print addComment

Permalink: This_is_the_stupidest_language_ever.html
Words: 319
Location: Buffalo, NY


01/26/05 04:29 - ID#31606

School is Really Tedious

All of this preparing to graduate is starting to be more work than the actual academic work. I finally got all of my syllabi togther. i decided to start cataloging everything online to keep it safe. I scanned everything I had from school tonight and uploaded. Now if I ever need copies of anything I can simply grab them off the web. I think everyone should start digitalizing their life. It is definately way more fireproof than paper.
print addComment

Permalink: School_is_Really_Tedious.html
Words: 78
Location: Buffalo, NY


01/26/05 02:34 - ID#31605

Thanks for making me feel good

(e:twisted) wrote this a while back. She has really been an inspiration into my continued work with online cmmunity development. Thanks for being there.

image

print addComment

Permalink: Thanks_for_making_me_feel_good.html
Words: 27
Location: Buffalo, NY


01/26/05 01:49 - ID#31604

Old journal Entry from me

Jan 6, 1986
NASA seems to follow the saying, "if first you don't success try again, again,again, and again. So, Columbia will try again tomorrow. Let's hope!

President reagan has asked for economic sanctions against libya, and has told americans in Libya to come home soon as possible.


print addComment

Permalink: Old_journal_Entry_from_me.html
Words: 47
Location: Buffalo, NY


01/26/05 01:01 - ID#31603

Collecting

I collect laptops. I also used to collect woman. (e:hodown) was one of them. hahaha
print addComment

Permalink: Collecting.html
Words: 16
Location: Buffalo, NY


01/26/05 12:58 - ID#31602

Serial Cable

Thanks bill for the serial cable. It works perfectly. My 3D class dissapointed me so much today. Their homework assignments were just too bad to look at. I hope that it changes as the semster goes on.
print addComment

Permalink: Serial_Cable.html
Words: 37
Location: Buffalo, NY


01/25/05 04:04 - ID#31601 pmobl

Mini Joystick

I finally created the eletric setup for a mini joystick. I am so excited to see it work. In reality, I hate the electric part. It reminds me of my body. It's demanding and has so many physical requirements.

I totally enjoy the programming, it is so much more my style. I wish the circuit board would stop demanding so much.
image

print addComment

Permalink: Mini_Joystick.html
Words: 62
Location: Buffalo, NY


Search

Chatter

New Site Wide Comments

sina said to sina
yes thank you!
Well, since 2018 I am living in France, I have finished my second master of science,...

paul said to sina
Nice to hear from you!! Hope everything is going great....

paul said to twisted
Hello from the east coast! It took me so long to see this, it might as well have arrived in a lette...

joe said to Ronqualityglas
I really don't think people should worry about how their eyelids work. Don't you?...