From: enda@cc.gatech.edu (Enda) Message-Id: <199705122052.QAA01898@oscar.cc.gatech.edu> Subject: Re: later To: lynn@cc.gatech.edu (C. Lynn Bacher) Date: Mon, 12 May 1997 16:52:51 -0400 (EDT) In-Reply-To: <199705122033.QAA10880@felix.cc.gatech.edu> from "C. Lynn Bacher" at May 12, 97 04:33:50 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 702 Status: RO C. Lynn Bacher said . . . => => Well, it looks as though it's going to be a late night. Keep me posted => on progress. => => I'll be back working on stuff at some point tonight. Hey, The image is made. Its fairly big...and shrinking makes it ugly... so I think its going to have to be that size. If you have problems with it. Let me know and I will try again at home. I had no luck getting this into an image in the first place. Anyway....its located at: ~enda/3302/full.design.jpg Let me know if there is anything else you need...I will be online most of the night after 8pm. bye -- Enda - Reaching rock bottom...and starting to dig. From - Tue May 13 18:56:57 1997 Message-ID: <3378F1B8.7EA@cc.gatech.edu> Date: Tue, 13 May 1997 18:56:56 -0400 From: "C. Lynn Bacher"Reply-To: lynn@cc.gatech.edu X-Mailer: Mozilla 3.01Gold (WinNT; I) MIME-Version: 1.0 To: enda@cc CC: alp@cc, sumner@cc Subject: design specs Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mozilla-Status: 0001 Content-Length: 512 Status: RO Well..... After a short little talk with Gregory, we need the following... The major classes/functions of your programs with a brief description of what is happening. So I need this for the color program, the learning program, and the CGI script. When you can... :) -- C. Lynn Bacher The cow is nothing but a machine lynn@cc.gatech.edu which makes grass fit for us people to eat. -- John McNulty From - Tue May 13 19:09:52 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id TAA08806 for ; Tue, 13 May 1997 19:01:43 -0400 (EDT) Received: from lennon.cc.gatech.edu (enda@lennon.cc.gatech.edu [130.207.9.20]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id TAA27646 for ; Tue, 13 May 1997 19:01:42 -0400 (EDT) Received: (from enda@localhost) by lennon.cc.gatech.edu (8.8.4/8.6.9) id TAA04142 for lynn; Tue, 13 May 1997 19:01:40 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705132301.TAA04142@lennon.cc.gatech.edu> Subject: All methods in count.votes To: lynn@cc.gatech.edu (C. Lynn Bacher) Date: Tue, 13 May 1997 19:01:40 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0001 Content-Length: 5553 Status: O sub read_web_page_output ############################################################################## # Purpose: Reads the input from the web page. Returns # # Passed: Nothing # # Returns: Array of values from web page. Contains things like "first=1.gif" # # Written: Enda 4/25/97 ############################################################################## sub convert_input_to_old_style ############################################################################## # Purpose: Takes the input from the web page, and converts from things like # "Picture 1" into 1s.gif # # Passed: Array from the web page with first, second and third values # # Returns: Returns stuff like: "first=1.data" # # Written: Enda 4/25/97 ############################################################################## sub write_web_responce ############################################################################## # Purpose: Writes a web page back to the server, very simple # # Passed: The title [both top and on page] and message # # Returns: Nothing. # # Written: Enda 4/25/97 ############################################################################## sub add_vote ############################################################################## # Purpose: Add the number of votes to the file which is passed. # # Passed: The file to be modified, The number of points to be added # # Returns: Updates the file, and ensures its world readable/writeable # # Written: Enda 4/25/97 ############################################################################## sub process_votes ############################################################################## # Purpose: Updates the appropiate files with the correct number of votes. # # Passed: Array containing which pictures got votes. # # Returns: Nothing. # # Written: Enda 4/25/97 ############################################################################## sub send_email ############################################################################## # Purpose: Its time to get the rest of this process going. Send # an e-mail message to the above address # # Passed: Nothing. # # Returns: Nothing. # # Written: Enda 4/29/97 ############################################################################## sub get_generation_number ############################################################################## # Purpose: We need to know what the current generation number is and # we need to update it while we are there # # Passed: Nothing. # # Returns: The current generation number # # Written: Enda 5/2/97 ############################################################################## sub archive_pictures ############################################################################## # Purpose: While we are at it, lets copy all the pictures into a generation # directory and create a default index.html for that dir. # # Passed: Nothing. # # Returns: Nothing. # # Written: Enda 5/2/97 ############################################################################## sub write_index_html ############################################################################# # Purpose: Writes in a default HTML file into the directory. # # Passed: Nothing. # # Returns: Nothing. # # Written: Enda 4/26/97 ############################################################################## sub update_main_html ############################################################################## # Purpose: We need to add these winners to the main "old" page so users # can click on a previous winner and see all images in that series # # Passed: The New Generation Number # # Returns: Nothing. # # Written: Enda 5/2/97 ############################################################################## sub find_winner ############################################################################## # Purpose: Look through each file in the directory, and find the one with # the most votes. # # Passed: Nothing. # # Returns: Nothing. # # Written: Enda 5/2/97 ############################################################################## sub link_winner ############################################################################## # Purpose: We know what the winning image is...cause we just called for # an update...so make a copy of the file. # # Passed: Nothing. # # Returns: Nothing. # # Written: Enda 5/2/97 ############################################################################## sub increment_vote_count ############################################################################## # Purpose: Add 1 to the number of votes we currently have. If this is # the magic vote, send e-mail and archive pictures # # Passed: Nothing. # # Returns: The new count. Which is how many votes have been recorded # including this one. # # Written: Enda 4/26/97 ############################################################################## sub page_turned_off ############################################################################## # Purpose: Determin if the page is currently turned off [ie no more votes # accepted] # # Passed: Nothing. # # Returns: 1 if it is, 0 otherwise # # Written: Enda started 4/26/97 ############################################################################## From - Tue May 13 21:47:43 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id VAA17821; Tue, 13 May 1997 21:20:34 -0400 (EDT) Received: from lennon.cc.gatech.edu (enda@lennon.cc.gatech.edu [130.207.9.20]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id VAA05992; Tue, 13 May 1997 21:20:33 -0400 (EDT) Received: (from enda@localhost) by lennon.cc.gatech.edu (8.8.4/8.6.9) id VAA11242; Tue, 13 May 1997 21:20:25 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705140120.VAA11242@lennon.cc.gatech.edu> Subject: page To: lynn@cc.gatech.edu (C. Lynn Bacher), alp@cc.gatech.edu (alp), sumner@cc.gatech.edu (Robert Walker Sumner), enda@cc.gatech.edu (Enda) Date: Tue, 13 May 1997 21:20:24 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0001 Content-Length: 434 Status: O Hey, Good news...the CGI is fixed...wasn't too big a deal...just a stupid thing... Anyway...I am going to continue working on the page...cause there are things I want to make look better...however Bob your free to start working on stuff...and anyone else who wants to play with it may do so. Sorry for the delay in getting this up... bye -- Enda - Reaching rock bottom...and starting to dig. From - Tue May 13 21:47:43 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id VAA19190 for ; Tue, 13 May 1997 21:43:13 -0400 (EDT) Received: from felix.cc.gatech.edu (alp@felix.cc.gatech.edu [130.207.107.11]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id VAA07299 for ; Tue, 13 May 1997 21:43:12 -0400 (EDT) Received: (from alp@localhost) by felix.cc.gatech.edu (8.8.4/8.6.9) id VAA19184 for lynn@cc.gatech.edu; Tue, 13 May 1997 21:43:12 -0400 (EDT) From: alp@cc.gatech.edu (alp) Message-Id: <199705140143.VAA19184@felix.cc.gatech.edu> Subject: Re: design specs To: lynn@cc.gatech.edu Date: Tue, 13 May 1997 21:43:11 -0400 (EDT) In-Reply-To: <3378F1B8.7EA@cc.gatech.edu> from "C. Lynn Bacher" at May 13, 97 06:56:56 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 2266 Status: O Below is my code with the code taken out (comments and declarations & libs) Let me know if you need something else. alp oh yeah, currently it's called color8.c -I increment the number everytime I make some significant change. --------------------------------------------------------------------------- /* Alp Sendil */ /* This program combines Xfractint color map files to produce new and random color maps that are a some blend of the two inputs. Be SURE that your color map is an ascii file with three collumns of numbers and NO TEXT. */ #include #include #include #include #include #define MAX_ELEMENTS 256 /*---------------------------------------------------------------------------*/ /*getColor reads a color map into an integer array, typically 768 elements. */ void getColor(char *source_file,int arr[]) /*--------------------------------------------------------------------------- writeColor will dump an integer array containing rgb numbers into a file of three columns to be used with xfractint */ void writeColor(char *dest, int color[]) /*--------------------------------------------------------------------------- combineColor is where two arrays containing color maps are meshed together. a random percentage is multiplied by the first array. 1 minus that percentage is multiplied by the next array. Their sum will be the new color map. */ void combineColor(int color1[], int color2[], int colorOut[]) /*-------------------------------------------------------------------------- This does the color stuff. It reads in two color map files. Combines them to produce a new color map. Writes out new map to file. */ void doColor(char *file1, char *file2, char *file3) { int array1[768], array2[768], output_array[768]; getColor(file1, array1); /*read file1 into array1*/ getColor(file2, array2); /*read file2 into array2*/ combineColor(array1, array2, output_array); /*combine array1 & 2 */ writeColor(file3, output_array); /*write new array to file3*/ } /*---------------------------------------------------------------------------*/ [Testing engine deleted] From - Tue May 13 23:04:15 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id WAA23720; Tue, 13 May 1997 22:58:47 -0400 (EDT) Received: from lennon.cc.gatech.edu (enda@lennon.cc.gatech.edu [130.207.9.20]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id WAA11627; Tue, 13 May 1997 22:58:46 -0400 (EDT) Received: (from enda@localhost) by lennon.cc.gatech.edu (8.8.4/8.6.9) id WAA14611; Tue, 13 May 1997 22:58:40 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705140258.WAA14611@lennon.cc.gatech.edu> Subject: Re: page To: lynn@cc.gatech.edu (C. Lynn Bacher), alp@cc.gatech.edu (alp), sumner@cc.gatech.edu (Robert Walker Sumner), enda@cc.gatech.edu (Enda) Date: Tue, 13 May 1997 22:58:40 -0400 (EDT) In-Reply-To: <9705132158.ZM3694@rush.cc.gatech.edu> from "Robert Walker Sumner" at May 13, 97 09:58:43 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 853 Status: O Robert Walker Sumner said . . . => => Page looks great... => => But, when I push back in my browser after submitting the final vote, => it goes back. It looks like the page is saved in my cache, and => the browser isn't reloading. Isn't there a meta reload-always tag? OK, it is now :) According to the place I went to research it, there is a HTML META tag Which basically says...this document expires the second it gets to your browser. So when Netscape tries to pull it from the cache, it realizes that it has expired...thus its only option is to ask the server for a new copy. Too fricken cool :) This is supposidly something defined in HTML v1.0 so all browsers SHOULD understand it. we shall see. :) -- Enda - Reaching rock bottom...and starting to dig. From - Tue May 13 23:04:15 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA24194; Tue, 13 May 1997 23:03:38 -0400 (EDT) Received: from rush.cc.gatech.edu (rush.cc.gatech.edu [130.207.119.35]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA11905; Tue, 13 May 1997 23:03:35 -0400 (EDT) Received: (from sumner@localhost) by rush.cc.gatech.edu (8.8.4/8.6.9) id XAA03930; Tue, 13 May 1997 23:03:35 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705132303.ZM3928@rush.cc.gatech.edu> Date: Tue, 13 May 1997 23:03:34 -0400 In-Reply-To: enda@cc.gatech.edu (Enda) "page" (May 13, 9:20pm) References: <199705140120.VAA11242@lennon.cc.gatech.edu> X-Mailer: Z-Mail (3.2.1 6apr95 MediaMail) To: enda@cc.gatech.edu (Enda), lynn@cc.gatech.edu (C. Lynn Bacher), alp@cc.gatech.edu (alp), sumner@cc.gatech.edu (Robert Walker Sumner) Subject: Re: page Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 597 Status: RO learn is now rendering the winning image. If a new vote message comes in before it has finished, the old rendering is killed and the new one begins. Enda, I changed the winner.html file and took out the width=100 and height=100. It was stretching the image out and making it look funny. Is that okay? Also, on some of the pages the old icky background is still there. Namely, I've found it on: Sorry...page currently busy Thank you for your votes Yours was the final vote needed to update the fractals I like the new background gif much bettter! -Bob From - Tue May 13 23:13:35 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA24490; Tue, 13 May 1997 23:10:08 -0400 (EDT) Received: from rush.cc.gatech.edu (rush.cc.gatech.edu [130.207.119.35]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA12532; Tue, 13 May 1997 23:10:06 -0400 (EDT) Received: (from sumner@localhost) by rush.cc.gatech.edu (8.8.4/8.6.9) id XAA03954; Tue, 13 May 1997 23:10:05 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705132310.ZM3952@rush.cc.gatech.edu> Date: Tue, 13 May 1997 23:10:05 -0400 In-Reply-To: enda@cc.gatech.edu (Enda) "Re: page" (May 13, 10:58pm) References: <199705140258.WAA14611@lennon.cc.gatech.edu> X-Mailer: Z-Mail (3.2.1 6apr95 MediaMail) To: enda@cc.gatech.edu (Enda), lynn@cc.gatech.edu (C. Lynn Bacher), alp@cc.gatech.edu (alp), sumner@cc.gatech.edu (Robert Walker Sumner) Subject: Re: page Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 1075 Status: O Yep, it works for me. To be a bit more clear than my last message: I changed the doit script so that anytime I get a FRACTAL_VOTE message, doit searches for all processes named xfractint, learn, execute, or rendwinner and kills them with "kill -9". So, this should be a good safety net against getting multiple FRACTA_VOTE message at the same time. In fact, I'm going to test it now. -Bob On May 13, 10:58pm, Enda wrote: > OK, it is now :) > > According to the place I went to research it, there is a HTML META tag > > > > Which basically says...this document expires the second it gets to your > browser. So when Netscape tries to pull it from the cache, it realizes > that it has expired...thus its only option is to ask the server for > a new copy. > > Too fricken cool :) This is supposidly something defined in HTML v1.0 > so all browsers SHOULD understand it. we shall see. :) > -- > > Enda - > > Reaching rock bottom...and starting to dig. >-- End of excerpt from Enda From - Tue May 13 23:16:29 1997 Message-ID: <33792E8C.7FA5@cc.gatech.edu> Date: Tue, 13 May 1997 23:16:28 -0400 From: "C. Lynn Bacher" Reply-To: lynn@cc.gatech.edu X-Mailer: Mozilla 3.01Gold (WinNT; I) MIME-Version: 1.0 To: Robert Walker Sumner CC: enda@cc, alp@cc Subject: Re: page References: <199705140258.WAA14611@lennon.cc.gatech.edu> <9705132310.ZM3952@rush.cc.gatech.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mozilla-Status: 0011 Content-Length: 327 Status: RO While you guys are putzing about, can one of you send me a copy of a color map file? :) TIA -- C. Lynn Bacher The cow is nothing but a machine lynn@cc.gatech.edu which makes grass fit for us people to eat. -- John McNulty From - Tue May 13 23:24:51 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA24822; Tue, 13 May 1997 23:16:31 -0400 (EDT) Received: from rush.cc.gatech.edu (rush.cc.gatech.edu [130.207.119.35]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA12974; Tue, 13 May 1997 23:16:29 -0400 (EDT) Received: (from sumner@localhost) by rush.cc.gatech.edu (8.8.4/8.6.9) id XAA04150; Tue, 13 May 1997 23:16:29 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705132316.ZM4148@rush.cc.gatech.edu> Date: Tue, 13 May 1997 23:16:28 -0400 In-Reply-To: "Robert Walker Sumner" "Re: page" (May 13, 11:10pm) References: <199705140258.WAA14611@lennon.cc.gatech.edu> <9705132310.ZM3952@rush.cc.gatech.edu> X-Mailer: Z-Mail (3.2.1 6apr95 MediaMail) To: "Robert Walker Sumner" , enda@cc.gatech.edu (Enda), lynn@cc.gatech.edu (C. Lynn Bacher), alp@cc.gatech.edu (alp) Subject: Re: page Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 1015 Status: O So, I sent myself lots of FRACTAL_VOTE messages. It didn't crash nighthawk. More than 10 xfractints were never running at the same time. That's good. It didn't correctly render the images. I got all gold images. But I think that's okay. At least for now. Everything works find in normal circumstances. We get the gold images only when, for some bad reason, I receive lots of FRACTAL_VOTE messages at the same time (which should never happen). -Bob On May 13, 11:10pm, Robert Walker Sumner wrote: > Subject: Re: page > > Yep, it works for me. > > To be a bit more clear than my last message: > > I changed the doit script so that anytime I get a FRACTAL_VOTE > message, doit searches for all processes named xfractint, learn, execute, > or rendwinner and kills them with "kill -9". So, this should be > a good safety net against getting multiple FRACTA_VOTE message at > the same time. In fact, I'm going to test it now. > > -Bob > > On May 13, 10:58pm, Enda wrote: From - Tue May 13 23:24:51 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA25013 for ; Tue, 13 May 1997 23:19:16 -0400 (EDT) Received: from rush.cc.gatech.edu (rush.cc.gatech.edu [130.207.119.35]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA13081 for ; Tue, 13 May 1997 23:19:14 -0400 (EDT) Received: (from sumner@localhost) by rush.cc.gatech.edu (8.8.4/8.6.9) id XAA04191 for lynn@cc.gatech.edu; Tue, 13 May 1997 23:19:13 -0400 (EDT) From: sumner@cc.gatech.edu (Robert Walker Sumner) Message-Id: <199705140319.XAA04191@rush.cc.gatech.edu> Subject: blues.map To: lynn@cc.gatech.edu Date: Tue, 13 May 1997 23:19:13 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mozilla-Status: 0001 Content-Length: 3340 0 0 0 0 0 0 0 0 4 0 0 12 0 0 16 0 0 24 0 0 32 0 0 36 0 0 44 0 0 48 0 0 56 0 0 64 0 0 68 0 0 76 0 0 80 0 0 88 0 0 96 0 0 100 0 0 108 0 0 116 0 0 120 0 0 128 0 0 132 0 0 140 0 0 148 0 0 152 0 0 160 0 0 164 0 0 172 0 0 180 0 0 184 0 0 192 0 0 200 0 4 200 0 12 200 0 16 204 0 24 204 0 28 208 0 36 208 0 40 208 0 48 212 0 56 212 0 60 216 0 68 216 0 72 216 0 80 220 0 84 220 0 92 224 0 100 224 0 104 224 0 112 228 0 116 228 0 124 232 0 128 232 0 136 232 0 140 236 0 148 236 0 156 240 0 160 240 0 168 240 0 172 244 0 180 244 0 184 248 0 192 248 0 200 252 4 200 252 12 200 252 20 204 252 28 204 252 36 208 252 44 208 252 52 208 252 60 212 252 68 212 252 76 216 252 84 216 252 92 216 252 Status: O 100 220 252 108 220 252 116 224 252 124 224 252 132 224 252 140 228 252 148 228 252 156 232 252 164 232 252 172 232 252 180 236 252 188 236 252 196 240 252 204 240 252 212 240 252 220 244 252 228 244 252 236 248 252 244 248 252 252 252 252 248 252 252 244 252 252 240 252 252 232 252 252 228 252 252 224 252 252 216 252 252 212 252 252 208 252 252 200 252 252 196 252 252 192 252 252 184 252 252 180 252 252 176 252 252 168 252 252 164 252 252 160 252 252 156 252 252 148 252 252 144 252 252 140 252 252 132 252 252 128 252 252 124 252 252 116 252 252 112 252 252 108 252 252 100 252 252 96 252 252 92 252 252 84 252 252 80 252 252 76 252 252 72 252 252 64 252 252 60 252 252 56 252 252 48 252 252 44 252 252 40 252 252 32 252 252 28 252 252 24 252 252 16 252 252 12 252 252 8 252 252 0 252 252 0 248 252 0 244 252 0 240 252 0 232 252 0 228 252 0 224 252 0 216 252 0 212 252 0 208 252 0 200 252 0 196 252 0 192 252 0 184 252 0 180 252 0 176 252 0 168 252 0 164 252 0 160 252 0 156 252 0 148 252 0 144 252 0 140 252 0 132 252 0 128 252 0 124 252 0 116 252 0 112 252 0 108 252 0 100 252 0 96 252 0 92 252 0 84 252 0 80 252 0 76 252 0 72 252 0 64 252 0 60 252 0 56 252 0 48 252 0 44 252 0 40 252 0 32 252 0 28 252 0 24 252 0 16 252 0 12 252 0 8 252 0 0 252 0 0 248 0 0 244 0 0 240 0 0 236 0 0 232 0 0 228 0 0 224 0 0 220 0 0 216 0 0 212 0 0 208 0 0 204 0 0 200 0 0 196 0 0 192 0 0 188 0 0 184 0 0 180 0 0 176 0 0 172 0 0 168 0 0 164 0 0 160 0 0 156 0 0 152 0 0 148 0 0 144 0 0 140 0 0 136 0 0 132 0 0 128 0 0 124 0 0 120 0 0 116 0 0 112 0 0 108 0 0 104 0 0 100 0 0 96 0 0 92 0 0 88 0 0 84 0 0 80 0 0 76 0 0 72 0 0 68 0 0 64 0 0 60 0 0 56 0 0 52 0 0 48 0 0 44 0 0 40 0 0 36 0 0 32 0 0 28 0 0 24 0 0 20 0 0 16 0 0 12 0 0 8 0 0 0 0 0 0 From - Tue May 13 23:34:59 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA26039 for ; Tue, 13 May 1997 23:33:20 -0400 (EDT) Received: from rush.cc.gatech.edu (rush.cc.gatech.edu [130.207.119.35]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id XAA13727 for ; Tue, 13 May 1997 23:33:19 -0400 (EDT) Received: (from sumner@localhost) by rush.cc.gatech.edu (8.8.4/8.6.9) id XAA04324 for lynn@cc.gatech.edu; Tue, 13 May 1997 23:33:18 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705132333.ZM4322@rush.cc.gatech.edu> Date: Tue, 13 May 1997 23:33:17 -0400 In-Reply-To: "C. Lynn Bacher" "Re: blues.map" (May 13, 11:29pm) References: <199705140319.XAA04191@rush.cc.gatech.edu> <33793187.638D@cc.gatech.edu> X-Mailer: Z-Mail (3.2.1 6apr95 MediaMail) To: lynn@cc.gatech.edu Subject: Re: blues.map Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 705 Status: O Sure. Not now, but how about tomorrow after we demo. -Bob On May 13, 11:29pm, C. Lynn Bacher wrote: > Subject: Re: blues.map > Well, I know the columns represent RGB values but that is about it. If > you have time could you give me a brief explaination? Don't have to do > it now. I'm in the Baird Lab if you need a break, and want to give me a > quick rundown and stretch your legs at the same time. :) > > -- > C. Lynn Bacher The cow is nothing but a machine > lynn@cc.gatech.edu which makes grass fit for us people > to eat. > -- John McNulty >-- End of excerpt from C. Lynn Bacher From - Wed May 14 01:04:56 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id BAA02334; Wed, 14 May 1997 01:02:31 -0400 (EDT) Received: from oscar.cc.gatech.edu (enda@oscar.cc.gatech.edu [130.207.107.12]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id BAA17994; Wed, 14 May 1997 01:02:30 -0400 (EDT) Received: (from enda@localhost) by oscar.cc.gatech.edu (8.8.4/8.6.9) id BAA03959; Wed, 14 May 1997 01:02:29 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705140502.BAA03959@oscar.cc.gatech.edu> Subject: Re: page To: sumner@cc.gatech.edu (Robert Walker Sumner) Date: Wed, 14 May 1997 01:02:28 -0400 (EDT) Cc: enda@cc.gatech.edu, lynn@cc.gatech.edu, alp@cc.gatech.edu, sumner@cc.gatech.edu In-Reply-To: <9705132303.ZM3928@rush.cc.gatech.edu> from "Robert Walker Sumner" at May 13, 97 11:03:34 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 1982 Status: O Robert Walker Sumner said . . . => => => Is that okay? Yes. => Also, on some of the pages the old icky background is still there. => Namely, I've found it on: => Sorry...page currently busy => Thank you for your votes => Yours was the final vote needed to update the fractals All fixed now. In general I have made a bunch of changes. Pages refresh themselves at more frequent intervals now. In addition I added an instructions and information page. Its mostly just a very basic one now, and probably needs to be re-written and updated. However its a good start for right now. I also went in and faked parts of our history. In 3 of our generations we had gold images in the history. I know my cgi was doing some stupid things [like always overwriting your winner.gif Bob]. However thats all fixed now. I am not sure if the gold images just came from that, or if there could be a timing issue...I was not copying until after I had sent the e-mail. That was probably stupid...so thats fixed now. I first copy the winning picture. Then I archive everything and then finally send the e-mail. This might slow things down a tadd...but best I can do :) I also removed bunches of stuff which is no longer in use...For example we had bogus *l.gif images in each history file...they are all gone now and won't be copied anymore. Put me down for a total of 8 hours today. However I would say that this part is over now. I think our interface is finished, and only needs testing. The only possible exception is the instructions page which is very minor. All of the cgi stuff I am now happy with. It appears to be functioning correctly. Thus I have no worries about it anymore either. About the only other thing we MIGHT add is the counter. However thats very minor either way. I am going to bed now...will see everyone tomorrow. -- Enda - Reaching rock bottom...and starting to dig. From - Wed May 14 09:57:36 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id JAA17416; Wed, 14 May 1997 09:02:12 -0400 (EDT) Received: from bounce.cc.gatech.edu (bounce.cc.gatech.edu [130.207.17.109]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id JAA09648; Wed, 14 May 1997 09:02:10 -0400 (EDT) Received: (from sumner@localhost) by bounce.cc.gatech.edu (8.8.4/8.6.9) id JAA09289; Wed, 14 May 1997 09:02:09 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705140902.ZM9287@bounce.cc.gatech.edu> Date: Wed, 14 May 1997 09:02:09 -0400 In-Reply-To: enda@cc.gatech.edu (Enda) "Re: page" (May 14, 1:02am) References: <199705140502.BAA03959@oscar.cc.gatech.edu> X-Mailer: Z-Mail (3.2.3 08feb96 MediaMail) To: enda@cc.gatech.edu (Enda), sumner@cc.gatech.edu (Robert Walker Sumner) Subject: Re: page Cc: lynn@cc.gatech.edu, alp@cc.gatech.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 493 Status: O Enda, I don't understand what you mean when you are saying you copy the winning gif. Where do you copy it? To the archive directory? The gold pictures resulted from my test of the kill script. When I sent 15 FRACTAL_VOTE messages, nighthawk didn't die, but it did make some gold images. That's okay. Also, on the instruction page, the link to netscape and the link to winner.html are wrong. Check it out. I think you need to add a "http://" in the link. -Bob From - Wed May 14 09:57:36 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id JAA18016; Wed, 14 May 1997 09:12:37 -0400 (EDT) Received: from bounce.cc.gatech.edu (bounce.cc.gatech.edu [130.207.17.109]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id JAA10664; Wed, 14 May 1997 09:12:36 -0400 (EDT) Received: (from sumner@localhost) by bounce.cc.gatech.edu (8.8.4/8.6.9) id JAA09362; Wed, 14 May 1997 09:12:36 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705140912.ZM9360@bounce.cc.gatech.edu> Date: Wed, 14 May 1997 09:12:35 -0400 In-Reply-To: enda@cc.gatech.edu (Enda) "Re: page" (May 14, 1:02am) References: <199705140502.BAA03959@oscar.cc.gatech.edu> X-Mailer: Z-Mail (3.2.3 08feb96 MediaMail) To: enda@cc.gatech.edu (Enda), sumner@cc.gatech.edu (Robert Walker Sumner) Subject: Re: page Cc: lynn@cc.gatech.edu, alp@cc.gatech.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 52 Status: O I fixed the instructions page. -bob From - Wed May 14 11:05:46 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA21438; Wed, 14 May 1997 10:13:30 -0400 (EDT) Received: from oscar.cc.gatech.edu (enda@oscar.cc.gatech.edu [130.207.107.12]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA15321; Wed, 14 May 1997 10:13:29 -0400 (EDT) Received: (from enda@localhost) by oscar.cc.gatech.edu (8.8.4/8.6.9) id KAA06449; Wed, 14 May 1997 10:13:28 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705141413.KAA06449@oscar.cc.gatech.edu> Subject: Re: page To: sumner@cc.gatech.edu (Robert Walker Sumner) Date: Wed, 14 May 1997 10:13:28 -0400 (EDT) Cc: enda@cc.gatech.edu, sumner@cc.gatech.edu, lynn@cc.gatech.edu, alp@cc.gatech.edu In-Reply-To: <9705140902.ZM9287@bounce.cc.gatech.edu> from "Robert Walker Sumner" at May 14, 97 09:02:09 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 1129 Status: O Robert Walker Sumner said . . . => => Enda, => => I don't understand what you mean when you are saying you copy => the winning gif. Where do you copy it? To the archive directory? I was doing something stupid. In the CGI I had written it back in the days when we assumed we would have 2l.gif as well as 2s.gif. Meaning that 2l.gif was the large version. So the CGI would copy 2l.gif to winner.gif. That made sense back then, but now you generate the winner.gif, so I needed to go take out that code from before. I still need to do that with the small gifs...which I am already doing. => => The gold pictures resulted from my test of the kill script. When => I sent 15 FRACTAL_VOTE messages, nighthawk didn't die, but it => did make some gold images. That's okay. OK => Also, on the instruction page, the link to netscape and the link => to winner.html are wrong. Check it out. I think you need to add => a "http://" in the link. You have fixed that already. Things are looking great...I'm impressed. -- Enda - Reaching rock bottom...and starting to dig. From - Wed May 14 11:05:46 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA21671; Wed, 14 May 1997 10:18:08 -0400 (EDT) Received: from bounce.cc.gatech.edu (bounce.cc.gatech.edu [130.207.17.109]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA15834; Wed, 14 May 1997 10:18:06 -0400 (EDT) Received: (from sumner@localhost) by bounce.cc.gatech.edu (8.8.4/8.6.9) id KAA09658; Wed, 14 May 1997 10:18:05 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705141018.ZM9656@bounce.cc.gatech.edu> Date: Wed, 14 May 1997 10:18:05 -0400 In-Reply-To: enda@cc.gatech.edu (Enda) "Re: page" (May 14, 10:13am) References: <199705141413.KAA06449@oscar.cc.gatech.edu> X-Mailer: Z-Mail (3.2.3 08feb96 MediaMail) To: enda@cc.gatech.edu (Enda), sumner@cc.gatech.edu (Robert Walker Sumner) Subject: Re: page Cc: lynn@cc.gatech.edu, alp@cc.gatech.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 236 Status: O I've got the program started with some nice looking images. We should probably not vote any more until after the demo. Or, we can always copy the files from the automatic backup if the images start looking bad. -Bob From - Wed May 14 11:05:46 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA22491; Wed, 14 May 1997 10:31:14 -0400 (EDT) Received: from bounce.cc.gatech.edu (bounce.cc.gatech.edu [130.207.17.109]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA17036; Wed, 14 May 1997 10:31:12 -0400 (EDT) Received: (from sumner@localhost) by bounce.cc.gatech.edu (8.8.4/8.6.9) id KAA09688; Wed, 14 May 1997 10:31:11 -0400 (EDT) From: "Robert Walker Sumner" Message-Id: <9705141031.ZM9686@bounce.cc.gatech.edu> Date: Wed, 14 May 1997 10:31:11 -0400 In-Reply-To: enda@cc.gatech.edu (Enda) "Re: page" (May 14, 10:13am) References: <199705141413.KAA06449@oscar.cc.gatech.edu> X-Mailer: Z-Mail (3.2.3 08feb96 MediaMail) To: enda@cc.gatech.edu (Enda), sumner@cc.gatech.edu (Robert Walker Sumner) Subject: Re: page Cc: lynn@cc.gatech.edu, alp@cc.gatech.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mozilla-Status: 0011 Content-Length: 150 Status: O I just timed how long it took to calculate the winner, and it took 8 minutes. Too long?? If so, I should make simpler formulas. -Bob From - Wed May 14 11:05:47 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA23018 for ; Wed, 14 May 1997 10:37:34 -0400 (EDT) Received: from ixlfw.atl.ixl.com (ixlfw.atl.ixl.com [207.15.165.10]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with SMTP id KAA17523 for ; Wed, 14 May 1997 10:37:32 -0400 (EDT) Received: from atl.ixl.com ([192.168.0.2]) by ixlfw.atl.ixl.com via smtpd (for burdell.cc.gatech.edu [130.207.3.207]) with SMTP; 14 May 1997 14:34:59 UT Received: from bob.atl.ixl.com (bob.atl.ixl.com [192.168.0.33]) by atl.ixl.com (8.7.6/8.7.3) with SMTP id LAA32446; Wed, 14 May 1997 11:39:35 -0400 Message-ID: <3379CCE0.7FAE@ixl.com> Date: Wed, 14 May 1997 10:32:00 -0400 From: Bob Bowman Reply-To: bbowman@ixl.com Organization: ixl X-Mailer: Mozilla 3.01 (Win95; I) MIME-Version: 1.0 To: Sarah Merz , Peggy Nunn , lynn@cc.gatech.edu, Laura Hatton , Jenny Goldstien , Jerry Koepp , danboo@ixl.com, "CHRISTINA K. HALL" , Carol Bales , Bonnie Potter , bob@highfiber.com, alunde@ixl.com Subject: Re: [Fwd: Why you should never go to an engineer's picnic] References: <33792E05.14E3@ix.netcom.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mozilla-Status: 0011 Content-Length: 4240 Status: O > Boys will be boys. > > --------------------------------------------------------------- > > > RE: Why you should never go to an engineer's picnic > > >>>LIGHTING CHARCOAL GRILLS or WHY ENGINEERS ARE THE WAY THEY ARE... > >>> > >>>Our subject today is lighting charcoal grills. One of our favorite > >>>charcoal grill lighters is a guy named George Goble (really!!), a > >>>computer person in the Purdue University engineering department. > >>> > >>>Each year, Goble and a bunch of other engineers hold a picnic in West > >>>Lafayette, Indiana, at which they cook hamburgers on a big grill. Being > >>>engineers, they began looking for practical ways to speed up the > >>>charcoal-lighting process. "We started by blowing the charcoal with a > >>>hair dryer," Goble told me in a telephone interview. "Then we figured > >>>out that it would light faster if we used a vacuum cleaner." If you > >>>know anything about (1) engineers and (2) guys in general, you know > >>>what happened: The purpose of the charcoal-lighting shifted from > >>>cooking hamburgers to seeing how fast they could light the charcoal. > >>> > >>>From the vacuum cleaner, they escalated to using a propane torch, then > >>>an acetylene torch. Then Goble started using compressed pure oxygen, > >>>which caused the charcoal to burn much faster, because as you > >>>recall from chemistry class, fire is essentially the rapid combination > >>>of oxygen with a reducing agent (the charcoal). We discovered that a > >>>long time ago, somewhere in the valley between the Tigris and Euphrates > >>>rivers (or something along those lines). > >>> > >>>By this point, Goble was getting pretty good times. But in the world > >>>of competitive charcoal-lighting, "pretty good" does not cut the > >>>mustard. Thus, Goble hit upon the idea of using - get ready - liquid > >>>oxygen. This is the form of oxygen used in rocket engines; it's 295 > >>>degrees below zero and 600 times as dense as regular oxygen. In > >>>terms of releasing energy, pouring liquid oxygen on charcoal is the > >>>equivalent of throwing a live squirrel into a room containing 50 > >>>million Labrador retrievers. > >>> > >>>On Gobel's Web page the address is http://ghg.ecn.purdue.edu/, you can > >>>see actual photographs and a video of Goble using a bucket attached to > >>>a 10-foot-long wooden handle to dump 3 gallons of liquid oxygen (not > >>>sold in stores) onto a grill containing 60 pounds of charcoal and a lit > >>>cigarette for ignition. What follows is the most impressive > >>>charcoal-lighting I have ever seen, featuring a large fireball that > >>>according to Goble, reached 10,000 degrees Fahrenheit. The charcoal was > >>>ready for cooking in - this has to be a world record - 3 seconds. > >>>There's also a photo of what happened when Goble used the same > >>>technique on a flimsy $2.88 discount-store grill. All that's left is > >>>a circle of charcoal with a few shreds of metal in it. "Basically, > >>>the grill vaporized," said Goble. "We were thinking of returning it > >>>to the store for a refund." > >>> > >>>Looking at Goble's video and photos, I became, as an American, all > >>>choked up with gratitude at the fact that I do not live anywhere near > >>>the engineers' picnic site. But also, I was proud of my country for > >>>producing guys who can be ready to barbecue in less time than it takes > >>>for guys in less-advanced nations, such as France, to spit. > >>> > >>>Will the 3-second barrier ever be broken? Will engineers come up with > >>>a new, more powerful charcoal-lighting technology? It's something for > >>>all of us to ponder this summer as we sit outside, chewing our > >>>hamburgers, every now and then glancing in the direction of > >>>West Lafayette,Indiana, looking for a mushroom cloud. > >>> > > > >The URL above is real. He has still pix, video and sound of the event. > >Enjoy! > > ******************************************************** > > Rich Wildau, Asst. to Dean of International Colleges > & Acting-Director, Intensive English Program (IEP) > University of Colorado at Denver > Phone: (303) 556-5962 Fax: (303) 556-4706 From - Wed May 14 11:05:46 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA22870; Wed, 14 May 1997 10:35:07 -0400 (EDT) Received: from oscar.cc.gatech.edu (enda@oscar.cc.gatech.edu [130.207.107.12]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id KAA17341; Wed, 14 May 1997 10:35:04 -0400 (EDT) Received: (from enda@localhost) by oscar.cc.gatech.edu (8.8.4/8.6.9) id KAA06702; Wed, 14 May 1997 10:35:04 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705141435.KAA06702@oscar.cc.gatech.edu> Subject: Re: page To: lynn@cc.gatech.edu (C. Lynn Bacher), alp@cc.gatech.edu (alp), sumner@cc.gatech.edu (Robert Walker Sumner), enda@cc.gatech.edu (Enda) Date: Wed, 14 May 1997 10:35:03 -0400 (EDT) In-Reply-To: <9705141031.ZM9686@bounce.cc.gatech.edu> from "Robert Walker Sumner" at May 14, 97 10:31:11 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 426 Status: O Robert Walker Sumner said . . . => => I just timed how long it took to calculate the winner, and it took => 8 minutes. Too long?? If so, I should make simpler formulas. I would say its long...but not terrible...) Lets leave it like that for right now...I will vote right as the demo starts and by the end we will have a new winner. -- Enda - Reaching rock bottom...and starting to dig. From - Wed May 14 11:05:47 1997 Received: (from alp@localhost) by felix.cc.gatech.edu (8.8.4/8.6.9) id KAA23656 for lynn; Wed, 14 May 1997 10:46:14 -0400 (EDT) From: alp@cc.gatech.edu (alp) Message-Id: <199705141446.KAA23656@felix.cc.gatech.edu> Subject: color map To: lynn@cc.gatech.edu (C. Lynn Bacher) Date: Wed, 14 May 1997 10:46:14 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0001 Content-Length: 3400 Below you'll find a color map for the shades of blue: 0 0 0 0 0 0 0 0 4 0 0 12 0 0 16 0 0 24 0 0 32 0 0 36 0 0 44 0 0 48 0 0 56 0 0 64 0 0 68 0 0 76 0 0 80 0 0 88 0 0 96 0 0 100 0 0 108 0 0 116 0 0 120 0 0 128 0 0 132 0 0 140 0 0 148 0 0 152 0 0 160 0 0 164 0 0 172 0 0 180 0 0 184 0 0 192 0 0 200 0 4 200 0 12 200 0 16 204 0 24 204 0 28 208 0 36 208 0 40 208 0 48 212 0 56 212 0 60 216 0 68 216 0 72 216 0 80 220 0 84 220 0 92 224 0 100 224 0 104 224 0 112 228 0 116 228 0 124 232 0 128 232 0 136 232 0 140 236 0 148 236 0 156 240 0 160 240 0 168 240 0 172 244 0 180 244 0 184 248 0 192 248 0 200 252 4 200 252 12 200 252 20 204 252 28 204 252 36 208 252 44 208 252 52 208 252 60 212 252 68 212 252 76 216 252 84 216 252 92 216 252 Status: O 100 220 252 108 220 252 116 224 252 124 224 252 132 224 252 140 228 252 148 228 252 156 232 252 164 232 252 172 232 252 180 236 252 188 236 252 196 240 252 204 240 252 212 240 252 220 244 252 228 244 252 236 248 252 244 248 252 252 252 252 248 252 252 244 252 252 240 252 252 232 252 252 228 252 252 224 252 252 216 252 252 212 252 252 208 252 252 200 252 252 196 252 252 192 252 252 184 252 252 180 252 252 176 252 252 168 252 252 164 252 252 160 252 252 156 252 252 148 252 252 144 252 252 140 252 252 132 252 252 128 252 252 124 252 252 116 252 252 112 252 252 108 252 252 100 252 252 96 252 252 92 252 252 84 252 252 80 252 252 76 252 252 72 252 252 64 252 252 60 252 252 56 252 252 48 252 252 44 252 252 40 252 252 32 252 252 28 252 252 24 252 252 16 252 252 12 252 252 8 252 252 0 252 252 0 248 252 0 244 252 0 240 252 0 232 252 0 228 252 0 224 252 0 216 252 0 212 252 0 208 252 0 200 252 0 196 252 0 192 252 0 184 252 0 180 252 0 176 252 0 168 252 0 164 252 0 160 252 0 156 252 0 148 252 0 144 252 0 140 252 0 132 252 0 128 252 0 124 252 0 116 252 0 112 252 0 108 252 0 100 252 0 96 252 0 92 252 0 84 252 0 80 252 0 76 252 0 72 252 0 64 252 0 60 252 0 56 252 0 48 252 0 44 252 0 40 252 0 32 252 0 28 252 0 24 252 0 16 252 0 12 252 0 8 252 0 0 252 0 0 248 0 0 244 0 0 240 0 0 236 0 0 232 0 0 228 0 0 224 0 0 220 0 0 216 0 0 212 0 0 208 0 0 204 0 0 200 0 0 196 0 0 192 0 0 188 0 0 184 0 0 180 0 0 176 0 0 172 0 0 168 0 0 164 0 0 160 0 0 156 0 0 152 0 0 148 0 0 144 0 0 140 0 0 136 0 0 132 0 0 128 0 0 124 0 0 120 0 0 116 0 0 112 0 0 108 0 0 104 0 0 100 0 0 96 0 0 92 0 0 88 0 0 84 0 0 80 0 0 76 0 0 72 0 0 68 0 0 64 0 0 60 0 0 56 0 0 52 0 0 48 0 0 44 0 0 40 0 0 36 0 0 32 0 0 28 0 0 24 0 0 20 0 0 16 0 0 12 0 0 8 0 0 0 10 20 30 From - Thu May 15 06:34:48 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id JAA09747 for ; Thu, 15 May 1997 09:25:33 -0400 (EDT) Received: from oscar.cc.gatech.edu (enda@oscar.cc.gatech.edu [130.207.107.12]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id JAA05278 for ; Thu, 15 May 1997 09:25:32 -0400 (EDT) Received: (from enda@localhost) by oscar.cc.gatech.edu (8.8.4/8.6.9) id JAA20307 for lynn@cc.gatech.edu; Thu, 15 May 1997 09:25:31 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705151325.JAA20307@oscar.cc.gatech.edu> Subject: Re: images To: lynn@cc.gatech.edu Date: Thu, 15 May 1997 09:25:31 -0400 (EDT) In-Reply-To: <337A939A.3F52@cc.gatech.edu> from "C. Lynn Bacher" at May 14, 97 09:39:54 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0011 Content-Length: 540 Status: RO C. Lynn Bacher said . . . => => So what did you do with your new too cool designs? I'm putting the => current version of the docs up on the web in a few. Still need some => work. Sorry for the delay... ~enda/3302/*.jpg There are 6 images in there. One is labeled "design_doc.jpg" which is the powerpoint slide with all the nice arrows etc. The other pictures are the screen shoots you asked for. Let me know if you need anything else. -- Enda - Reaching rock bottom...and starting to dig. From - Thu May 15 17:21:38 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id PAA11855 for ; Thu, 15 May 1997 15:55:07 -0400 (EDT) Received: from oscar.cc.gatech.edu (enda@oscar.cc.gatech.edu [130.207.107.12]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id PAA13909 for ; Thu, 15 May 1997 15:41:58 -0400 (EDT) Received: (from enda@localhost) by oscar.cc.gatech.edu (8.8.4/8.6.9) id PAA24414 for lynn; Thu, 15 May 1997 15:41:57 -0400 (EDT) From: enda@cc.gatech.edu (Enda) Message-Id: <199705151941.PAA24414@oscar.cc.gatech.edu> Subject: design doc To: lynn@cc.gatech.edu (C. Lynn Bacher) Date: Thu, 15 May 1997 15:41:57 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0001 Content-Length: 545 Status: O Hey, i just looked up the design doc and read it. For the most part it looks great. i see one more place where you have a random space: #4 will be called '4.map' - where the '4' corresponds with the picture '4s.gif'. An example map is available for viewing. The three column s represent Also the link to the comments from Bob doessn't work [but you probably knew that] and the revision history isn't there... other than that...it all looks good. -- Enda - Reaching rock bottom...and starting to dig. From - Thu May 15 17:56:25 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id RAA21523; Thu, 15 May 1997 17:53:44 -0400 (EDT) Received: from cedarhaven.cc.gatech.edu (root@cedarhaven.cc.gatech.edu [130.207.3.224]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id RAA02512; Thu, 15 May 1997 17:53:42 -0400 (EDT) Received: from cedarhaven (abowd@localhost [127.0.0.1]) by cedarhaven.cc.gatech.edu (8.8.4/8.6.9) with SMTP id RAA05234; Thu, 15 May 1997 17:53:40 -0400 (EDT) Sender: abowd@cc.gatech.edu Message-ID: <337B85E3.167EB0E7@cc.gatech.edu> Date: Thu, 15 May 1997 17:53:39 -0400 From: "Gregory D. Abowd" Organization: College of Computing, Georgia Tech X-Mailer: Mozilla 3.0 (X11; I; SunOS 4.1.3_U1 sun4m) MIME-Version: 1.0 To: alp@cc.gatech.edu, sumner@cc.gatech.edu, enda@cc.gatech.edu, lynn@cc.gatech.edu CC: laura@cc.gatech.edu, abowd@cc.gatech.edu Subject: 3302 initial demo comments Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mozilla-Status: 0001 Content-Length: 680 Status: RO You did a very good job of this demonstration. All along I have been impressed by the organization and synergy by your team. Though I never did get a chance to see the final picture generated on the Macs, I have full confidence that you will be able to complete all that you set out to do this quarter. You received the grade of 100/100 on this demo. Keep up the good work! Gregory -- -------- Gregory D. Abowd, Assistant Professor Gregory.Abowd@cc.gatech.edu College of Computing Phone: 404-894-7512 Georgia Institute of Technology FAX: 404-894-9442 Atlanta, GA 30332-0280 USA URL http://www.cc.gatech.edu/fac/Gregory.Abowd From - Thu May 15 21:13:50 1997 Received: (from alp@localhost) by felix.cc.gatech.edu (8.8.4/8.6.9) id UAA01698; Thu, 15 May 1997 20:32:23 -0400 (EDT) From: alp@cc.gatech.edu (alp) Message-Id: <199705160032.UAA01698@felix.cc.gatech.edu> Subject: design doc To: lynn@cc.gatech.edu (C. Lynn Bacher), enda@cc.gatech.edu (Enda), sumner@gvu.gatech.edu (Robert Walker Sumner) Date: Thu, 15 May 1997 20:32:22 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text X-Mozilla-Status: 0001 Content-Length: 201 Status: O Hey! I have just finished reading throught he design doc and wanted to say it looks really good. The diagrams, pictures, and organization flows very well. good job everyone! alp From - Mon May 19 11:55:41 1997 Received: (from alp@localhost) by felix.cc.gatech.edu (8.8.4/8.6.9) id KAA02060 for lynn; Mon, 19 May 1997 10:52:39 -0400 (EDT) From: alp@cc.gatech.edu (alp) Message-Id: <199705191452.KAA02060@felix.cc.gatech.edu> Subject: status7 To: lynn@cc.gatech.edu (C. Lynn Bacher) Date: Mon, 19 May 1997 10:52:39 -0400 (EDT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text Status: O X-Mozilla-Status: 0001 Content-Length: 2116 Hey, I forgot to mail this to you before I left for Florida this weekend. Anyway, if you could post it whenever you got a chance. thanks! alp --------------------------------------------------------------------------- Weekly Status Report
Name: DNA
Date: 5/15/97
Project Name: Dynamic Neural Art
Project Manager: Alp Sendil
Progress this week:
Enda:
- New page up and working!
- Design doc work done.
- script stuff debugged
Bob:
- generated new images
- program is stable
- reseeded and new generation looks good.
Lynn:
- Design doc looks really good!
- notebook updates.
- test plan redo.
Alp:
- prelimiary CM stuff.
- test plan re-do.
Goals for next week:
Enda: start on animated flow diagram, if you want to. Bob: Meet with alp to work on color integration. Lynn: Minor schedule updates. Alp: Meet with bob, work on integration of code. Make sure CM items are in order.
Problems/Comments:
Too much crap in other classes. We don't get enough time to enjoy Software Engineering!
The demo went very well!
Everyone remember to do your reading for this week.
From - Mon May 19 10:29:40 1997 Received: from burdell.cc.gatech.edu (root@burdell [130.207.3.207]) by felix.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id MAA09084; Mon, 19 May 1997 12:27:07 -0400 (EDT) Received: from denver.cc.gatech.edu (root@denver.cc.gatech.edu [130.207.114.54]) by burdell.cc.gatech.edu (8.8.4/8.6.9) with ESMTP id MAA21200; Mon, 19 May 1997 12:27:03 -0400 (EDT) Received: from denver (laura@localhost [127.0.0.1]) by denver.cc.gatech.edu (8.8.4/8.6.9) with SMTP id MAA08145; Mon, 19 May 1997 12:27:01 -0400 (EDT) Sender: laura@cc.gatech.edu Message-ID: <33807F4C.695678E2@lennon.cc.gatech.edu> Date: Mon, 19 May 1997 12:26:53 -0400 From: Laura Lucia BurkhartOrganization: College of Computing, Georgia Tech X-Mailer: Mozilla 3.0 (X11; I; SunOS 4.1.3_U1 sun4c) MIME-Version: 1.0 To: alp@cc.gatech.edu, sumner@cc.gatech.edu, enda@cc.gatech.edu, lynn@cc.gatech.edu CC: abowd@cc.gatech.edu Subject: Test Plan Regrade Content-Type: multipart/mixed; boundary="------------13728473500F9F30284797A9" X-Mozilla-Status: 0001 Content-Length: 3580 Status: RO This is a multi-part message in MIME format. --------------13728473500F9F30284797A9 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit -- -Laura Lucia Burkhart (laura@cc.gatech.edu) --------------13728473500F9F30284797A9 Content-Type: application/x-troff; name="dna.t" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dna.t" Testing Document Comments
Test Plan Document Comments
Team: DNA
Grade: (77 out of 100) New Grade: (87 out of 100)
The following is a breakdown of the grading.
Scope (17 out of 20 points)
New Grade (17 out of 20 points)
- Are there pointers to sources for input to testing. OK, but would be better to point directly to the functional requirements section and non-functional requirements section.
Revision: Pointing to the wrong section of Req. Doc. - Is there a clear delineation of what activities are subject to the test plan? yes
Schedule (15 out of 20 points)
New Schedule (20 out of 20 points)
- Is there a pointer to the current project schedule at the point where testing activities are defined and scheduled? No, just a pointer to the overall schedule. Simple thing to fix. Send the link to the explicit place where testing is scheduled in your current schedule. If more than one place, tehn use more than one link.
Revision: Done. - Does the schedule reflect the details of this plan, meaning has enough time been set aside for the testing that will be performed by this team? It is OK if some tests are defined that are not intended to be completed this quarter, but they should be clearly indicated as such. And at least some of the test plan should be executed this quarter. I can see unit testing being explicitly identified, though the time set for that seems low. Where are integration or validation tests brought out?
Validation tests (45 out of 60 points)
New Grade (55 out of 60 points)
- Is there a test defined for every functional and non-functional requirement? The non-functional requirements seem to be covered by a single test, number 7. Is that sufficiently detailed plan to cover the three NF requirements you listed in your Req. doc?
- Is the test clearly defined? OK, except for Test 7.
- Is it clear if/when the test will be conducted this quarter? OK, but it's a bit clumsy to go from test to schedule to figure out when the testing will occur. Information is there, however.
- Is there a clear template for reporting test results? It's fairly generic result template. Not sure it will be that useful for all tests.
If you wish to have your Test Plan Document regraded, revise it within one week of receiving comments. Be sure to maintain a link to the original version of the Test Plan Document in your notebook for comparison purposes. No regrading will occur if your revised document does not contain a proper revision history section which details the changes from earlier versions.
--------------773C24486F5992E16EEA4806-- --------------13728473500F9F30284797A9--