home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n283 < prev    next >
Internet Message Format  |  1998-08-28  |  40KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #283
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest        Friday, August 28 1998        Volume 01 : Number 283
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Thu, 27 Aug 1998 23:44:10 -0700
  18. From: kathy roth <kroth@well.com>
  19. Subject: (fractint) splicing
  20.  
  21. Hi.  I've spent some of the indoor time this
  22. summer splicing- splicing small pieces of
  23. formulas into the iteration part of the formulas
  24. with different coloring schemes.  I've gotten
  25. some really fun and interesting images (and some
  26. really ugly stuff.)  Often the Julia parameters
  27. do not work like they are supposed to but there
  28. is a lot of variation.  I didn't get too far with
  29. bubbleboth_julia or any of the flexballs but here
  30. is something based on Bubbles_Julia_Mset-
  31.  
  32.  
  33. a-tunnel_of_hearts { ; 7-98 kathy roth
  34.                   ; frm and color adapted from Paul Carlson
  35.                   ; original gravijul by Mark Christenson
  36.   reset=1960 type=formula formulafile=bubble~4.frm
  37.   formulaname=bubblesGrav function=tan/tan/atanh
  38.   center-mag=2.43607/0.127618/21.16587/1/-90
  39. params=5/1/10/4/8/30   float=y
  40.   colors=000fOz<28>I0Kz0f<28>O08z\
  41. 88<28>O00zW0<28>c40zz0<28>aG00zR<28>0C40z\
  42.   z<28>0CCGGz<28>00O000<13>000
  43.   }
  44.  
  45. a1-leather&lace { ; 7-98 kathy roth
  46.                      ; wizzle color map
  47.                      ; frm adapted from Paul Carlson
  48.                      ; original gravijul by Mark Christenson
  49.   reset=1960 type=formula formulafile=bubble~4.frm
  50.   formulaname=bubblesGrav function=tan/tan/atanh
  51.   center-mag=0.0206667/0.151494/1.038321/1/180
  52. params=5/1/10/4/8/30
  53.   colors=b4G<13>wAP<13>U1FS1FQ0EO0EN\
  54. 0E<6>C0BA0A808<2>202000000<2>000000001\
  55.   112113224<3>44744855965A<18>JGTKHU\
  56. KHT<7>FDLECKDBICAHBAG<6>66A659558557<3\
  57.   >323222111000000<4>00010330650A<25>fox\
  58. hrzgqy<25>72C50A305000<2>000000123\
  59.   <18>SpwUszTqw<14>59B467234000000<4>00\
  60. 0000201<2>804B06C06<8>L0AM0AN0AO0AP\
  61.   0A<7>`3F
  62.   }
  63.  
  64. a2-lacy_spiral { ; 7-98 kathy roth
  65.                      ; wizzle color map
  66.                      ; frm adapted from Paul Carlson
  67.                      ; original gravijul by Mark Christenson
  68.   reset=1960 type=formula formulafile=bubble~4.frm
  69.   formulaname=Bubblesgrav function=tan/tan/atanh
  70.   center-mag=0.518922/0.934513/2.448849/1/180
  71. params=5/1/10/4/8/30
  72.   colors=b4G<13>wAP<13>U1FS1FQ0EO0EN\
  73. 0E<6>C0BA0A808<2>202000000<2>000000001\
  74.   112113224<3>44744855965A<18>JGTKHUKH\
  75. T<7>FDLECKDBICAHBAG<6>66A659558557<3\
  76.   >323222111000000<4>00010330650A<25>fox\
  77. hrzgqy<25>72C50A305000<2>000000123\
  78.   <18>SpwUszTqw<14>59B467234000000<4>000\
  79. 000201<2>804B06C06<8>L0AM0AN0AO0AP\
  80.   0A<7>`3F
  81.   }
  82.  
  83. frm:bubblesGrav {; adapted from Paul Carlson
  84.     ;original gravijul by Mark Christenson
  85.     ; Parameters:
  86.     ;
  87.     ;   p1       = if both real(p1) and imag(p1) are zero
  88.     ;              do Mset, otherwise do Julia set.
  89.     ;   real(p2) = maximum contour of minimum sqrt(|w|)
  90.     ;              (this is the outside edge of the bubbles).
  91.     ;   imag(p2) = value of |w| at bailout.
  92.     ;   real(p3) = number of color ranges.
  93.     ;   imag(p3) = number of colors in each color range.
  94.     ;
  95.     IF (real(p1) == 0 && imag(p1) == 0)
  96.  w = 0
  97.  c = pixel
  98.     ELSE
  99.  w = pixel
  100.  c = p1
  101.     ENDIF
  102.     z = bailout = iter = range_num = 0
  103.     max_w = imag(p2)
  104.     num_ranges = real(p3)
  105.     colors_in_range = imag(p3)
  106.     max_min_w = real(p2)
  107.     min_w = 1.0e20
  108.     factor = (colors_in_range - 1) / max_min_w
  109.     :
  110.      q=fn1(w)
  111. w=fn3(1/fn2(q*q))
  112.     ;
  113.     temp = sqrt(|w|)
  114.     IF (temp < min_w)
  115.        min_w = temp
  116.        save_range = range_num
  117.     ENDIF
  118.     IF (|w| > max_w)
  119.  IF (min_w < max_min_w)
  120.      z = factor * min_w + save_range * colors_in_range + 1
  121.  ELSE
  122.      z = 0
  123.  ENDIF
  124.  bailout = 1
  125.     ENDIF
  126.     range_num = range_num + 1
  127.     IF (range_num == num_ranges)
  128.         range_num = 0
  129.     ENDIF
  130.     iter = iter + 1
  131.     z = z - iter
  132.     bailout == 0  && |w| < max_w
  133. }
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140. - --------------------------------------------------------------
  141. Thanks for using Fractint, The Fractals and Fractint Discussion List
  142. Post Message:   fractint@lists.xmission.com
  143. Get Commands:   majordomo@lists.xmission.com "help"
  144. Administrator:  twegner@phoenix.net
  145. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  146.  
  147. ------------------------------
  148.  
  149. Date: Fri, 28 Aug 1998 02:41:30 -0500
  150. From: Elaina Tillinghast <juice@airmail.net>
  151. Subject: Re: (fractint) Speaking of spam...
  152.  
  153. Kragen wrote:
  154. > On Thu, 27 Aug 1998, Dean-Christian Strik wrote:
  155. > > Some of us (see below), for some reason got a 'message' which was REAL SPAM.
  156. > >
  157. > > Does anyone have a clue where it comes from?
  158. > No, but I think that if you forward me the full headers, I might have a
  159. > better idea.  It's not your run-of-the-mill spamware.
  160.  
  161. Yeah, it is your run-of-the-mill spamware. Chain letters are older than
  162. the internet. Either dionel is new to this particular mental virus and
  163. hasn't worked up an immunity yet or someone good at IP spoofing doesn't
  164. like them. There is actually a krauch company in Paraguay homepage.
  165.  
  166. Your biggest loophole in the offering is way to get these lists of
  167. addresses back to the err judging commitee. I suppose some slimeball is
  168. trying for bragging rights on wasting so much of the worlds energy
  169. supply haman-wise. It isn't very many forwardings old. At least half of
  170. that I would guess is part of the original plant.
  171.  
  172. The only way to trace such a disease is to get each carrier in-line to
  173. give a copy of the letter they received. This is not likely since they
  174. probably don't even have the original anymore.
  175.  
  176. If you really want to, you can send a complaint to abuse or postmaster
  177. at cwi.net who is their upstream provider. Its probably their first
  178. offense and they have probably already been bombed personally. Its your
  179. choice.
  180.  
  181. PS. Sylvie was on the recipient list. :)
  182.  
  183. - --
  184. Juice --have fun --harm none
  185. http://www.geocities.com/Area51/Shadowlands/1159
  186. http://web2.airmail.net/ebt
  187. Thinking corrupts the mind. Efforts like the web never finish.
  188.  
  189. - --------------------------------------------------------------
  190. Thanks for using Fractint, The Fractals and Fractint Discussion List
  191. Post Message:   fractint@lists.xmission.com
  192. Get Commands:   majordomo@lists.xmission.com "help"
  193. Administrator:  twegner@phoenix.net
  194. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  195.  
  196. ------------------------------
  197.  
  198. Date: Fri, 28 Aug 1998 08:55:34 -0400
  199. From: Diosnel Herrnsdorf <diosnel@krauch.com.py>
  200. Subject: (fractint) I'm sorry (spam)
  201.  
  202. - --------------9985971D84B7F506A4E6CADF
  203. Content-Type: text/plain; charset=us-ascii
  204. Content-Transfer-Encoding: 7bit
  205.  
  206. Although only some of you received "my" spam, I feel obligued to write to the
  207. whole list to beg your pardon. I came to work today after a two days permission,
  208. and was surprised to read some mails regarding a forwarded message I sent
  209. yesterday!?. However, since the message has been generated here, from my own
  210. address, I am responsible for it.
  211. I still haven't read what "I wrote", but from an email I received from Damien
  212. Jones -he says it's a chain letter- I think I know where it came from. I'll try
  213. to make access to my computer more difficult, and hope this kind of things will
  214. never happen again.
  215. Once again, I'm very sorry for the problem I caused.
  216.  
  217. Regards,
  218. Diosnel
  219.  
  220. P.S. I already have a bigfoot address (diosnel@bigfoot.com). However, I can't
  221. send mail through it, but only receive it. That means that I don't know how to
  222. make it the only address to use (in order to filter mails from my Krauch addres).
  223.  
  224. - --------------9985971D84B7F506A4E6CADF
  225. Content-Type: text/html; charset=us-ascii
  226. Content-Transfer-Encoding: 7bit
  227.  
  228. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  229. <HTML>
  230. Although only some of you received "my" spam, I feel obligued to write
  231. to the whole list to beg your pardon. I came to work today after a two
  232. days permission, and was surprised to read some mails regarding a forwarded
  233. message <I>I sent yesterday!?</I>. However, since the message has been
  234. generated here, from my own address, I am responsible for it.
  235. <BR>I still haven't read what "I wrote", but from an email I received from
  236. Damien Jones -he says it's a chain letter- I think I know where it came
  237. from. I'll try to make access to my computer more difficult, and hope this
  238. kind of things will never happen again.
  239. <BR>Once again, I'm very sorry for the problem I caused.
  240. <P>Regards,
  241. <BR>Diosnel
  242. <P>P.S. I already have a bigfoot address (diosnel@bigfoot.com). However,
  243. I can't send mail through it, but only receive it. That means that I don't
  244. know how to make it the only address to use (in order to filter mails from
  245. my Krauch addres).</HTML>
  246.  
  247. - --------------9985971D84B7F506A4E6CADF--
  248.  
  249.  
  250. - --------------------------------------------------------------
  251. Thanks for using Fractint, The Fractals and Fractint Discussion List
  252. Post Message:   fractint@lists.xmission.com
  253. Get Commands:   majordomo@lists.xmission.com "help"
  254. Administrator:  twegner@phoenix.net
  255. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  256.  
  257. ------------------------------
  258.  
  259. Date: Fri, 28 Aug 1998 09:47:17 -0400 (EDT)
  260. From: kragen@pobox.com (Kragen)
  261. Subject: Re: (fractint) Speaking of spam...
  262.  
  263. On Fri, 28 Aug 1998, Dean-Christian Strik wrote:
  264. > I'm considering pobox (www.pobox.com) (Kragen has that). I believe it's $15 a
  265. > year. It gives you at least 3 adresses@pobox.com, redirecting to your real
  266. > e-mail address; $3/year for additional addresses. One month free trial. It
  267. > offers similar filtering. Of course there are also free redirection services
  268. > (like bigfoot), but I don't know if they support junkmail filtering.
  269.  
  270. pobox's spam filtering has lots of false positives, and a few false
  271. negatives.  I wouldn't recommend using it in the "throw away" mode.
  272.  
  273. For example, nearly every mail I receive from the "Free Software
  274. Business" mailing list is marked as [may be junkmail -pobox].  If I
  275. turned the spam filtering on all the way, it'd just discard those
  276. messages, and I'd never know.
  277.  
  278. Kragen
  279.  
  280. - -- 
  281. <kragen@pobox.com>       Kragen Sitaker     <http://www.pobox.com/~kragen/>
  282. We are forming cells within a global brain and we are excited that we might
  283. start to think collectively.  What becomes of us still hangs crucially on
  284. how we think individually.  -- Tim Berners-Lee, inventor of the Web
  285.  
  286.  
  287. - --------------------------------------------------------------
  288. Thanks for using Fractint, The Fractals and Fractint Discussion List
  289. Post Message:   fractint@lists.xmission.com
  290. Get Commands:   majordomo@lists.xmission.com "help"
  291. Administrator:  twegner@phoenix.net
  292. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  293.  
  294. ------------------------------
  295.  
  296. Date: Fri, 28 Aug 1998 07:17:38 -0700
  297. From: "Faye Williams" <arkangel@sb.net>
  298. Subject: (fractint) virus
  299.  
  300. Hi Everyone...
  301. Don't know if this is for real or not...
  302. It may just be another Urban Legend, but I thought I'd just send it along
  303. just in case it was for real.
  304.  
  305.  
  306. Faye
  307.  
  308. >>>>>> >>>VIRUS ALERT!!!
  309. >
  310. > This is a new twist.  Someone is sending out a very desirable screen-saver
  311. >-  the Budweiser Frogs.  But if you download it, you will lose
  312. everything!!!
  313. >
  314. >Your hard drive will crash!!
  315. >DON'T DOWNLOAD THIS UNDER ANY CIRCUMSTANCES!!!
  316. >
  317. > IT JUST WENT INTO CIRCULATION YESTERDAY, AS FAR AS WE KNOW....BE CAREFUL.
  318. >
  319. >PLEASE DISTRIBUTE THIS TO AS MANY PEOPLE AS POSSIBLE...THANKS
  320. >BELOW IS  WHAT THE SCREENSAVER OFFER WOULD LOOK LIKE!
  321. >
  322. >           File: BUDSAVER.EXE (24643 bytes)
  323. >           DL Time (28800 bps): < 1 minute
  324. >
  325. >If you download, some jerk from the internet will get your screen name and
  326. >password!   Please send this to any names you can think of
  327. >and remember never download BUDDYLST.ZIP
  328. >
  329. >This is a new, very malicious virus and not many people know about it.
  330. >This information was announced yesterday morning from Microsoft.  Please
  331. >share it with everyone that might access the internet.
  332. >Once again, pass this along to EVERYONE in your address book so that
  333. >this may be stopped.
  334.  
  335. arkangel1@mindspring.com
  336. http://www.sb.net/arkangel/
  337.  
  338.  
  339. - --------------------------------------------------------------
  340. Thanks for using Fractint, The Fractals and Fractint Discussion List
  341. Post Message:   fractint@lists.xmission.com
  342. Get Commands:   majordomo@lists.xmission.com "help"
  343. Administrator:  twegner@phoenix.net
  344. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  345.  
  346. ------------------------------
  347.  
  348. Date: Fri, 28 Aug 1998 09:45:41 -0500
  349. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  350. Subject: Re: (fractint) virus
  351.  
  352. Faye Williams wrote:
  353. >
  354. > It may just be another Urban Legend, but I thought I'd
  355. > just send it along just in case it was for real.
  356. >
  357.  
  358. If you really would like to see the latest Virus Alerts, the go here and
  359. sign up for a daily email:
  360.  
  361.     http://www.tipworld.com
  362.  
  363. They will send you the "Virus Alert Tip of the Day" on every week day
  364. (Monday through Friday).  Here is an exerpt:
  365.  
  366. The following viruses are scheduled to activate today: 
  367. MDMA.C 
  368. Clock.A:DE 
  369. Clock.B, .C, .D, .E, .F, .G, .H, .L 
  370. Steph.A 
  371.  
  372.  
  373. P.N.L.
  374. - -------------------------------------------------
  375.      Why do most folks hate cynics so much?
  376.        Because we're almost always right.
  377. - -------------------------------------------------
  378. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  379.  
  380. - --------------------------------------------------------------
  381. Thanks for using Fractint, The Fractals and Fractint Discussion List
  382. Post Message:   fractint@lists.xmission.com
  383. Get Commands:   majordomo@lists.xmission.com "help"
  384. Administrator:  twegner@phoenix.net
  385. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  386.  
  387. ------------------------------
  388.  
  389. Date: Fri, 28 Aug 1998 11:10:23 -0400 (EDT)
  390. From: kragen@pobox.com (Kragen)
  391. Subject: Re: (fractint) Speaking of spam...
  392.  
  393. On Fri, 28 Aug 1998, Elaina Tillinghast wrote:
  394. > Kragen wrote:
  395. > > No, but I think that if you forward me the full headers, I might have a
  396. > > better idea.  It's not your run-of-the-mill spamware.
  397. > Yeah, it is your run-of-the-mill spamware. Chain letters are older than
  398. > the internet.
  399.  
  400. I meant, it didn't come from one of the standard spam injector programs.
  401.  
  402. Kragen (who participated in a postcardware chain letter once when he was a kid,
  403.     but never got a single postcard back.)
  404.  
  405. - -- 
  406. <kragen@pobox.com>       Kragen Sitaker     <http://www.pobox.com/~kragen/>
  407. We are forming cells within a global brain and we are excited that we might
  408. start to think collectively.  What becomes of us still hangs crucially on
  409. how we think individually.  -- Tim Berners-Lee, inventor of the Web
  410.  
  411.  
  412. - --------------------------------------------------------------
  413. Thanks for using Fractint, The Fractals and Fractint Discussion List
  414. Post Message:   fractint@lists.xmission.com
  415. Get Commands:   majordomo@lists.xmission.com "help"
  416. Administrator:  twegner@phoenix.net
  417. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  418.  
  419. ------------------------------
  420.  
  421. Date: Fri, 28 Aug 1998 11:47:52 -0400 (EDT)
  422. From: kragen@pobox.com (Kragen)
  423. Subject: Re: (fractint) virus
  424.  
  425. On Fri, 28 Aug 1998, Faye Williams wrote:
  426. > Hi Everyone...
  427. > Don't know if this is for real or not...
  428. > It may just be another Urban Legend, but I thought I'd just send it along
  429. > just in case it was for real.
  430.  
  431. I would prefer it if you didn't send things like this to the fractint
  432. mailing list.  I wonder if I am in the minority.
  433.  
  434. (Part of this, of course, is that I use Linux and don't use AOL, so
  435. this doesn't affect me.)
  436.  
  437. Heuristics for determining whether a many-times-forwarded letter is legit:
  438. - - does it have the originator's name and email address on it?
  439. - - does it have a URL on it to consult for updates?
  440. - - does it have a date on it?
  441. - - if you check it out on the appropriate web sites (e.g. for American
  442. Cancer Society stuff, www.acs.org; for virus stuff, www.mcafee.com?
  443. etc.) do they mention it?  Do they say it's a fraud, or do they say
  444. it's real?
  445. - - does it seem plausible?  (You can't make a hard drive crash from
  446. software, for example.  In fact, these days, it's damned near
  447. impossible to make a hard drive crash at all -- even if you, say, whack
  448. it with a hammer while it's shutting down.)
  449.  
  450. Kragen
  451.  
  452. - -- 
  453. <kragen@pobox.com>       Kragen Sitaker     <http://www.pobox.com/~kragen/>
  454. We are forming cells within a global brain and we are excited that we might
  455. start to think collectively.  What becomes of us still hangs crucially on
  456. how we think individually.  -- Tim Berners-Lee, inventor of the Web
  457.  
  458.  
  459. - --------------------------------------------------------------
  460. Thanks for using Fractint, The Fractals and Fractint Discussion List
  461. Post Message:   fractint@lists.xmission.com
  462. Get Commands:   majordomo@lists.xmission.com "help"
  463. Administrator:  twegner@phoenix.net
  464. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  465.  
  466. ------------------------------
  467.  
  468. Date: Fri, 28 Aug 1998 09:07:23 -0700
  469. From: "Faye Williams" <arkangel@sb.net>
  470. Subject: Re: (fractint) virus
  471.  
  472. - -----Original Message-----
  473. From: Kragen <kragen@pobox.com>
  474. To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  475. Date: Friday, August 28, 1998 8:49 AM
  476. Subject: Re: (fractint) virus
  477.  
  478.  
  479. >On Fri, 28 Aug 1998, Faye Williams wrote:
  480. >> Hi Everyone...
  481. >> Don't know if this is for real or not...
  482. >> It may just be another Urban Legend, but I thought I'd just send it along
  483. >> just in case it was for real.
  484.  
  485. >
  486. >I would prefer it if you didn't send things like this to the fractint
  487. >mailing list.  I wonder if I am in the minority.
  488. >
  489. >(Part of this, of course, is that I use Linux and don't use AOL, so
  490. >this doesn't affect me.)
  491. >
  492.  
  493. >- does it seem plausible?  (You can't make a hard drive crash from
  494. >software, for example.  In fact, these days, it's damned near
  495. >impossible to make a hard drive crash at all -- even if you, say, whack
  496. >it with a hammer while it's shutting down.)
  497. >
  498. >Kragen
  499.  
  500. I realize that a virus can't make a hard drive crash.  I posted the message
  501. as I received it and I received it from 3 legit sources.
  502. If it keeps one person from receiving a virus then it was worth the posting.
  503.  
  504. Faye
  505.  
  506.  
  507.  
  508. - --------------------------------------------------------------
  509. Thanks for using Fractint, The Fractals and Fractint Discussion List
  510. Post Message:   fractint@lists.xmission.com
  511. Get Commands:   majordomo@lists.xmission.com "help"
  512. Administrator:  twegner@phoenix.net
  513. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  514.  
  515. ------------------------------
  516.  
  517. Date: Fri, 28 Aug 1998 09:08:42 -0700
  518. From: Dennis Kerrisk <dak@corpsys.com>
  519. Subject: RE: (fractint) virus
  520.  
  521. - ------ =_NextPart_000_01BDD263.74E34A90
  522. Content-Type: text/plain; charset="us-ascii"
  523. Content-Transfer-Encoding: 7bit
  524.  
  525. Hi,
  526.     I just thought you might like to know that someone with the proper information 
  527.     Can with software, render a hard drive useless, and totally unfixable. 
  528.  
  529.                                     Dennis
  530.  
  531. - -----Original Message-----
  532. From:    Kragen [SMTP:kragen@pobox.com]
  533. Sent:    Friday, August 28, 1998 8:48 AM
  534. To:    fractint@lists.xmission.com
  535. Subject:    Re: (fractint) virus
  536.  
  537. On Fri, 28 Aug 1998, Faye Williams wrote:
  538. > Hi Everyone...
  539. > Don't know if this is for real or not...
  540. > It may just be another Urban Legend, but I thought I'd just send it along
  541. > just in case it was for real.
  542.  
  543. I would prefer it if you didn't send things like this to the fractint
  544. mailing list.  I wonder if I am in the minority.
  545.  
  546. (Part of this, of course, is that I use Linux and don't use AOL, so
  547. this doesn't affect me.)
  548.  
  549. Heuristics for determining whether a many-times-forwarded letter is legit:
  550. - - does it have the originator's name and email address on it?
  551. - - does it have a URL on it to consult for updates?
  552. - - does it have a date on it?
  553. - - if you check it out on the appropriate web sites (e.g. for American
  554. Cancer Society stuff, www.acs.org; for virus stuff, www.mcafee.com?
  555. etc.) do they mention it?  Do they say it's a fraud, or do they say
  556. it's real?
  557. - - does it seem plausible?  (You can't make a hard drive crash from
  558. software, for example.  In fact, these days, it's damned near
  559. impossible to make a hard drive crash at all -- even if you, say, whack
  560. it with a hammer while it's shutting down.)
  561.  
  562. Kragen
  563.  
  564. - -- 
  565. <kragen@pobox.com>       Kragen Sitaker     <http://www.pobox.com/~kragen/>
  566. We are forming cells within a global brain and we are excited that we might
  567. start to think collectively.  What becomes of us still hangs crucially on
  568. how we think individually.  -- Tim Berners-Lee, inventor of the Web
  569.  
  570.  
  571. - --------------------------------------------------------------
  572. Thanks for using Fractint, The Fractals and Fractint Discussion List
  573. Post Message:   fractint@lists.xmission.com
  574. Get Commands:   majordomo@lists.xmission.com "help"
  575. Administrator:  twegner@phoenix.net
  576. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  577.  
  578. - ------ =_NextPart_000_01BDD263.74E34A90
  579. Content-Type: application/ms-tnef
  580. Content-Transfer-Encoding: base64
  581.  
  582. eJ8+IiwQAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy
  583. b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEEkAYA4AEAAAEAAAAQAAAAAwAAMAIAAAAL
  584. AA8OAAAAAAIB/w8BAAAAVQAAAAAAAACBKx+kvqMQGZ1uAN0BD1QCAAAAAGZyYWN0aW50QGxpc3Rz
  585. LnhtaXNzaW9uLmNvbQBTTVRQAGZyYWN0aW50QGxpc3RzLnhtaXNzaW9uLmNvbQAAAAAeAAIwAQAA
  586. AAUAAABTTVRQAAAAAB4AAzABAAAAHAAAAGZyYWN0aW50QGxpc3RzLnhtaXNzaW9uLmNvbQADABUM
  587. AQAAAAMA/g8GAAAAHgABMAEAAAAeAAAAJ2ZyYWN0aW50QGxpc3RzLnhtaXNzaW9uLmNvbScAAAAC
  588. AQswAQAAACEAAABTTVRQOkZSQUNUSU5UQExJU1RTLlhNSVNTSU9OLkNPTQAAAAADAAA5AAAAAAsA
  589. QDoBAAAAHgD2XwEAAAAcAAAAZnJhY3RpbnRAbGlzdHMueG1pc3Npb24uY29tAAIB918BAAAAVQAA
  590. AAAAAACBKx+kvqMQGZ1uAN0BD1QCAAAAAGZyYWN0aW50QGxpc3RzLnhtaXNzaW9uLmNvbQBTTVRQ
  591. AGZyYWN0aW50QGxpc3RzLnhtaXNzaW9uLmNvbQAAAAADAP1fAQAAAAMA/18AAAAAAgH2DwEAAAAE
  592. AAAAAAAAApFwAQSAAQAVAAAAUkU6IChmcmFjdGludCkgdmlydXMA9gYBBYADAA4AAADOBwgAHAAJ
  593. AAgAKgAFADkBASCAAwAOAAAAzgcIABwACQAFAAoABQAWAQEJgAEAIQAAAEVFMENDRDM3MjUzREQy
  594. MTE4NzczMDBDMERGODBEMEFGAD0HAQOQBgAwDgAAIQAAAAsAAgABAAAACwAjAAAAAAADACYAAAAA
  595. AAsAKQAAAAAAAwAuAAAAAAADADYAAAAAAEAAOQAA20IgntK9AR4AcAABAAAAFQAAAFJFOiAoZnJh
  596. Y3RpbnQpIHZpcnVzAAAAAAIBcQABAAAAFgAAAAG90p4f+DfNDO89JRHSh3MAwN+A0K8AAB4AHgwB
  597. AAAABQAAAFNNVFAAAAAAHgAfDAEAAAAQAAAAZGFrQGNvcnBzeXMuY29tAAMABhDyL2R4AwAHEHgG
  598. AAAeAAgQAQAAAGUAAABISSxJSlVTVFRIT1VHSFRZT1VNSUdIVExJS0VUT0tOT1dUSEFUU09NRU9O
  599. RVdJVEhUSEVQUk9QRVJJTkZPUk1BVElPTkNBTldJVEhTT0ZUV0FSRSxSRU5ERVJBSEFSRERSSVZF
  600. AAAAAAIBCRABAAAAGwsAABcLAACmGAAATFpGdVuTg80DAAoAcmNwZzEyNXIyDGBjMQMwAQcLYG6R
  601. DhAwMzMPFmZlD5JPAfcCpANjAgBjaArAc4RldALRcHJxMgAAkioKoW5vElAgMAHQhQHQNg+gMDUw
  602. NBQh8wHQFBA0fQdtAoMAUAPU+xH/EwtiE+EUUBOyGPQU0IsHExXkNhGOMjM4F1SiIAdtIENFFeQ3
  603. Gn+nFEAbrxy1eXIV5DkRjq8aUBYxHv8DgkcJ0WsCg98MASD/DlAiLwNzVAhwI9S7FjEhDTgaYSWf
  604. A4JCB0D+dA3gI9QlYRZsG3gHEx0G/xtwKv8etyyVIFUOMBZOIej/LJQjiRphME4lZiyUJucdkb8w
  605. TSiXLJQqJgKRCOY7CW/qMDi/ZQ4wNTnqOwE6v/87yTnUO/I6Xz4vPe09bzuf8znvEGAyOEO6RNFE
  606. j0WZ/znURcJEL0f/R71HP0VvSTR+OQ5QTIRN4UYDTeACgnOodHlsB5BoCeB0AABDE1AD8GRjdGwK
  607. sVxhUDhhZGp1T1AFEGfuaAVCFjIMAWMJwFBAAzDwc25leBcwB7AFsADAxQJzcwBQc2IyFFBPQNJh
  608. E/BcawngcAuQUB+vUIMIYFBwC4BlT4B2V0D/AUBRewwwUkQbkFUgBKALgKZnRdFSxmJhFxBkAiCf
  609. U4BTJk+wUXBZcSAxTxP/DlBUf1WPVp8AUVfcAKBSTv9aX1tmTwQPwFxvXX9ejw5Qb1fPYO9h/1uT
  610. MwKCExBjP1RAaYFRcFuQKlBXcCBESQEQYXUqQCBQCsBhwQnAYXBoIEYCIVQE6TARaS0PkDgBQFcQ
  611. bhPrZO9Qg2ILIHIJUHAyFqDZcDJ3NEMhFwBwAdBrUn9Rn2h/aYZtsGxwBRACMC0rbRADYTopEG91
  612. kFN1FGJqBZB0dZBEYXT8ZTpUBBphbf9vD3AfcS//cjdPoFuDDiFpgViWDlBzT810XlJXYRcBIEhb
  613. cQSQ/1QEHZF3b3h/eY96m1bve5+XD5CHUAjQYgqwdDhn2n8PVGPwfZ9+pofgf7ALUHneL20gepAL
  614. EYAlc1QEG5H/gS+CP4NPep9yP4lPil+LZH91snVUdokg0I2vUS+HhDmHkX+Sj5iARG9jdQeA/wIw
  615. BdBs4DfhlrKWEJZQjzH9AYBudhAAYAnwa4Ca4AIBu1PAfDJlAPCa4E9gcDxgpFx2CJB3awuAZB7A
  616. /56CBPAHQBBhAUAOAI8CW2J7n+UCEG8FQhchEvJ2oG1HC1F2oB0AOlxcdOBvvWzBbW0QAxAHkKKQ
  617. TQ3gyQNgc28BgCBPASAN4LWd0FykRkUAwAMQLmlQvnSbsBcQllBTAYVSeAFAvZzhbk+wONCl5GwU
  618. YwMg5xLzAIAFkGx2X4FksA5w/1PAqHIBkAAgqQKe0ZshAcF/qHEW4A9wAABksAzQAZAg/i438qho
  619. DlCpIipAlqCpn/+qr6u/D8BksAWBrV+ub69/dmwewGSwbK0fsd+y5Skfq+wwELC/tZ+y1GIgKP8C
  620. kba/qLMaYLRvuS+6P7tP/6jgHZC8kqlvvf+/D6vsG5D/vJ/CH8MvxD+o4CDQwR/Gr3/Hv8jECvkD
  621. MJYPlx+YrXsYSGksCoYBkSBJILHP4iB0aAhg0EJ5CGA8IG3QM4VQZIDS0G8g7mvOYdLRdpAgo/AH
  622. gAIgvxOAA/DS4NLRE4AXcG+eQK8FwAuAnVJ2kGkCICDRuh5DA5HVo6Pyi3FlLCD/ONDLMQXAszAW
  623. 4VMAjyBrwv/P8IWBBBDZMABwUwDUUAGQzmyLENqA1rBpeAGgT4D+LtdWCoXNhM5Pz18FQAAAX9Iy
  624. 4C/hP9IUbABuAwBz/9yf3aOFUMuC3f/fDwjBUtJDU4AS8mJrbWvKkyCOX5tgAxB2gWF9LelCbk/Q
  625. IQuALMFN2tFssGX/6UPdC83mgN2NAOT/jp+Pr/+FH4Yvhz+IT9Ek50Z1U9IjBktsoQnwIFtTTVSI
  626. UDpr9kNAcG8G4OR4LgWgbV3q7+v0jJv/7S/uP+9PkJ/QrAwh51UGYJ8CMPXUOAL1NvrAYXnZML5B
  627. 0xDSokZQ2TAgwDnzQMg4OjTzQEFN3Qb/abd1sQBtEZBh+uB1AUDwsPFPUHMueNOg2uDXIffCvwNP
  628. //F2BQBtf7B1kCgFlvQpIJ6ActqQ+B/OIuS/f+XP/h/RM+PPDJ8Nr9/TT3/OMAFR2TBGUAHCAnPZ
  629. MEZ7AZAYQFelcPCwowAcUHcXIQB2oddlPoAgaSBFd3/R02BTQC4XQBYHmtBu5iehMNSDaWbS0TBg
  630. 1pC/HFCdUdlBN1EZcdSQdBdK3kmhMKVQ28DSk2KiUNgwY6EgpxEgVXJpEM4wTOpl9mFk2TBi8JDS
  631. YdLm/EknUwDSk4AA2zFroNmw/zhQfIAWB9KTziGfcIABHyFfi3AZSBdm12XScHfwgGz/UwAo0GwQ
  632. 1nIgYRjA02JbkP+m8BgxHtMY4XyAGUDUBBjy/9RR1fIKNtdlpVJbogYi3HD/ItPZcxix0nCjAc4h
  633. 1fLToO/UkNpAT2Ah/ShsgaEwpAD/GNPZMCvhBxA08IAA2TAmEp/U4tJw2pEc0M4gdXjbE8dpURgx
  634. LcJBT0zZMKPw39dlGONpUKNgGCJhpNB2MfvTkNxgKeNcgDA08AYxN8C/GUTLQHagU8DOIFuid0+w
  635. xxwzszClUG55LTewmxD8cy2dUYtyOODT8KFwM5H/GSJPgOnAdlDXZXUwMHIfEj8tYGvR1fIqQenC
  636. 1FByJ/8ZQOngmxDbE6HwpWHZsGuA30PQ2uAZ4M4wa6A/Ny84M/GzMFVSTDr01EIHEMqAs2xCGWJ1
  637. cAGAdqBzO18vPGY+kjr+JAVjT7Bja/8fEvCBOvLV8ptw1jLaQKIyfHdlyCAGwD6xyDDcYGe73HAZ
  638. YkGbENpAn3Bu12X32CGkgCrwU5rgnpBPYNUQrHR1pNDZMHdHsC4FsHMGYFOwZzsZUwrTRzptv59w
  639. oWDcYAcRPuahcGMxgP8ukdXi28CbEtciOzEocJrQf0t0ZDDbwGugOWGzMAoxdf8dMTNCTLjXZU1j
  640. GaI+7x7Bb6Hw1iDOANqQadxBTHEo/llB8tgwGDGlUCXB2cvKMP9pIG0ACjAHJ9i4GWJbEKMA/6IQ
  641. 3GHSYM4wbCARkNkw1fHfgAEBgdrxTWMBgG1bAC6A/1sA16BPJqIAo+BR09RCUw//VBXU8duRN4B1
  642. MPEBOxEkE+8vcQGSNDAFsGtPJ9WU2cL+bUVxNCGjQU1UnZDwkAXR/2Mwm/EG8DGdEG8Rf9899jR/
  643. YX9ij2Of39NQNnUw12U87/cOF+BrBPY1UypgWmEq8AVrAjwOwHRwOi8vk0ey93cvfvcELz7XZf5X
  644. G+EjcBlSKhFggKSA26DvFYHVsc4hszBnH2B+IKgg//vwzhLbIkQgbyN0gEbgdqD/JRLU8XHx06NU
  645. xuhTJkPOIH9CYAcQ26AIsdpRixAoYVf/LWIb0AcRN9Er4UjzFSHZ0f8lYsowrQAVUNuifnDXZdLw
  646. v9SwcfF0tJ7R2lBm0HXbkssoYVxBVDUwIEKMAH7Q7f1ALRzgLPJuXIE5MSvU/xTxRDBhDGjXfr9/
  647. z4DfgXf912VUsoHoMD4kBsBgcfWQ/wW02TCC8KJQhAOfgE2R2zH/hAbi4AagmvAGsy3xDnDXZf5Q
  648. o+CbQeo0lRAocAWfBq+eR6Fw2BDVMDTRZHOIYs2lUGrW0JLQbW+JL9UwLCAiHEBnsCLXZUFk/zPC
  649. DnE5Iohh2OAc8HuB92C30vD3QNwQLpNAJyZVPdH+Yp9g2kAb0Ihii7+MzNvg+5EniJcizMDnxh7i
  650. 6KjdBgR9AJdQAAMAEBAAAAAAAwAREAAAAAADAIAQ/////0AABzAQ5qahndK9AUAACDAQ5qahndK9
  651. AQsAAYAIIAYAAAAAAMAAAAAAAABGAAAAAAOFAAAAAAAAAwADgAggBgAAAAAAwAAAAAAAAEYAAAAA
  652. EIUAAAAAAAADAAaACCAGAAAAAADAAAAAAAAARgAAAABShQAAtw0AAB4AJoAIIAYAAAAAAMAAAAAA
  653. AABGAAAAAFSFAAABAAAABAAAADguMAADACeACCAGAAAAAADAAAAAAAAARgAAAAABhQAAAAAAAAsA
  654. MIAIIAYAAAAAAMAAAAAAAABGAAAAAA6FAAAAAAAAAwAxgAggBgAAAAAAwAAAAAAAAEYAAAAAEYUA
  655. AAAAAAADADOACCAGAAAAAADAAAAAAAAARgAAAAAYhQAAAAAAAB4AQoAIIAYAAAAAAMAAAAAAAABG
  656. AAAAADaFAAABAAAAAQAAAAAAAAAeAEOACCAGAAAAAADAAAAAAAAARgAAAAA3hQAAAQAAAAEAAAAA
  657. AAAAHgBEgAggBgAAAAAAwAAAAAAAAEYAAAAAOIUAAAEAAAABAAAAAAAAAB4APQABAAAABQAAAFJF
  658. OiAAAAAAAwANNP03AAARSQ==
  659.  
  660. - ------ =_NextPart_000_01BDD263.74E34A90--
  661.  
  662.  
  663. - --------------------------------------------------------------
  664. Thanks for using Fractint, The Fractals and Fractint Discussion List
  665. Post Message:   fractint@lists.xmission.com
  666. Get Commands:   majordomo@lists.xmission.com "help"
  667. Administrator:  twegner@phoenix.net
  668. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  669.  
  670. ------------------------------
  671.  
  672. Date: Fri, 28 Aug 1998 17:07:36 EDT
  673. From: JimBeau549@aol.com
  674. Subject: Re: (fractint) virus
  675.  
  676.    I find this kind of information very helpful indeed!
  677.  
  678.   Thanks
  679.  
  680. Jim  
  681.  
  682. - --------------------------------------------------------------
  683. Thanks for using Fractint, The Fractals and Fractint Discussion List
  684. Post Message:   fractint@lists.xmission.com
  685. Get Commands:   majordomo@lists.xmission.com "help"
  686. Administrator:  twegner@phoenix.net
  687. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  688.  
  689. ------------------------------
  690.  
  691. Date: Fri, 28 Aug 1998 17:51:05 -0400
  692. From: "Blake Hyde" <bhyde@connectu.net>
  693. Subject: Re: (fractint) virus
  694.  
  695. At 07:17 AM 8/28/1998 -0700, you wrote:
  696. >Hi Everyone...
  697. >Don't know if this is for real or not...
  698. >It may just be another Urban Legend, but I thought I'd just send it along
  699. >just in case it was for real.
  700. >
  701. >
  702. >Faye
  703. >
  704. >>>>>>> >>>VIRUS ALERT!!!
  705. >>
  706. >> This is a new twist.  Someone is sending out a very desirable screen-saver
  707. >>-  the Budweiser Frogs.  But if you download it, you will lose
  708. >everything!!!
  709. >>
  710. >>Your hard drive will crash!!
  711. >>DON'T DOWNLOAD THIS UNDER ANY CIRCUMSTANCES!!!
  712. >>
  713. >> IT JUST WENT INTO CIRCULATION YESTERDAY, AS FAR AS WE KNOW....BE CAREFUL.
  714. >>
  715. >>PLEASE DISTRIBUTE THIS TO AS MANY PEOPLE AS POSSIBLE...THANKS
  716. >>BELOW IS  WHAT THE SCREENSAVER OFFER WOULD LOOK LIKE!
  717. >>
  718. >>           File: BUDSAVER.EXE (24643 bytes)
  719. >>           DL Time (28800 bps): < 1 minute
  720. >>
  721. >>If you download, some jerk from the internet will get your screen name and
  722. >>password!   Please send this to any names you can think of
  723. >>and remember never download BUDDYLST.ZIP
  724. >>
  725. >>This is a new, very malicious virus and not many people know about it.
  726. >>This information was announced yesterday morning from Microsoft.  Please
  727. >>share it with everyone that might access the internet.
  728. >>Once again, pass this along to EVERYONE in your address book so that
  729. >>this may be stopped.
  730.  
  731. I think this is probably a hoax, like the GOOD TIMES email virus hoax,
  732. etc--please don't propagate them, especially on such a high traffic
  733. forum as the fractint list.
  734.  Blake Hyde (ROT13: oulqr@pbaarpgh.arg)
  735. - -==(UDIC)==-
  736. Novan Dragon
  737. - --------------
  738. d+ e- N+ T--- Om-- U1347'!S'8!K u uC++ uF uG++ uLB+ uA nC+ nR nH- nP nI-- 
  739. nPT nS+ nT wM wC+ wS- wI++ wN- o oA++ y   a666
  740. - --------------
  741.  
  742.  
  743. - --------------------------------------------------------------
  744. Thanks for using Fractint, The Fractals and Fractint Discussion List
  745. Post Message:   fractint@lists.xmission.com
  746. Get Commands:   majordomo@lists.xmission.com "help"
  747. Administrator:  twegner@phoenix.net
  748. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  749.  
  750. ------------------------------
  751.  
  752. Date: Fri, 28 Aug 1998 18:25:09 -0600
  753. From: "Tim Wegner" <twegner@phoenix.net>
  754. Subject: (fractint) on topic please
  755.  
  756. Virus warnings (even legitimate ones) are off topic and completely unwelcome 
  757. on this list. Please post only fractal-related messages. There are other lists for 
  758. discussion of viruses.
  759.  
  760. Unfortunately, answers to the virus message, though well meaning, just added 
  761. to the SPAM. 
  762.  
  763. Tim Wegner
  764. Fractint List administrator
  765.  
  766.  
  767.  
  768. - --------------------------------------------------------------
  769. Thanks for using Fractint, The Fractals and Fractint Discussion List
  770. Post Message:   fractint@lists.xmission.com
  771. Get Commands:   majordomo@lists.xmission.com "help"
  772. Administrator:  twegner@phoenix.net
  773. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  774.  
  775. ------------------------------
  776.  
  777. Date: Fri, 28 Aug 1998 22:03:31 -0400
  778. From: "michael" <michaelc@clarityconnect.com>
  779. Subject: Re: (fractint) virus
  780.  
  781. I subscribed to this to get info on fractint - not to get this kind of
  782. rubbish - there are plenty of other useless newsgroups for this.  Please
  783. stop.
  784. - -----Original Message-----
  785. From: Blake Hyde <bhyde@connectu.net>
  786. To: fractint@xmission.com <fractint@xmission.com>
  787. Date: Friday, August 28, 1998 6:12 PM
  788. Subject: Re: (fractint) virus
  789.  
  790.  
  791. >At 07:17 AM 8/28/1998 -0700, you wrote:
  792. >>Hi Everyone...
  793. >>Don't know if this is for real or not...
  794. >>It may just be another Urban Legend, but I thought I'd just send it along
  795. >>just in case it was for real.
  796. >>
  797. >>
  798. >>Faye
  799. >>
  800. >>>>>>>> >>>VIRUS ALERT!!!
  801. >>>
  802. >>> This is a new twist.  Someone is sending out a very desirable
  803. screen-saver
  804. >>>-  the Budweiser Frogs.  But if you download it, you will lose
  805. >>everything!!!
  806. >>>
  807. >>>Your hard drive will crash!!
  808. >>>DON'T DOWNLOAD THIS UNDER ANY CIRCUMSTANCES!!!
  809. >>>
  810. >>> IT JUST WENT INTO CIRCULATION YESTERDAY, AS FAR AS WE KNOW....BE
  811. CAREFUL.
  812. >>>
  813. >>>PLEASE DISTRIBUTE THIS TO AS MANY PEOPLE AS POSSIBLE...THANKS
  814. >>>BELOW IS  WHAT THE SCREENSAVER OFFER WOULD LOOK LIKE!
  815. >>>
  816. >>>           File: BUDSAVER.EXE (24643 bytes)
  817. >>>           DL Time (28800 bps): < 1 minute
  818. >>>
  819. >>>If you download, some jerk from the internet will get your screen name
  820. and
  821. >>>password!   Please send this to any names you can think of
  822. >>>and remember never download BUDDYLST.ZIP
  823. >>>
  824. >>>This is a new, very malicious virus and not many people know about it.
  825. >>>This information was announced yesterday morning from Microsoft.  Please
  826. >>>share it with everyone that might access the internet.
  827. >>>Once again, pass this along to EVERYONE in your address book so that
  828. >>>this may be stopped.
  829. >
  830. >I think this is probably a hoax, like the GOOD TIMES email virus hoax,
  831. >etc--please don't propagate them, especially on such a high traffic
  832. >forum as the fractint list.
  833. > Blake Hyde (ROT13: oulqr@pbaarpgh.arg)
  834. >-==(UDIC)==-
  835. >Novan Dragon
  836. >--------------
  837. >d+ e- N+ T--- Om-- U1347'!S'8!K u uC++ uF uG++ uLB+ uA nC+ nR nH- nP nI--
  838. >nPT nS+ nT wM wC+ wS- wI++ wN- o oA++ y   a666
  839. >--------------
  840. >
  841. >
  842. >--------------------------------------------------------------
  843. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  844. >Post Message:   fractint@lists.xmission.com
  845. >Get Commands:   majordomo@lists.xmission.com "help"
  846. >Administrator:  twegner@phoenix.net
  847. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  848.  
  849.  
  850. - --------------------------------------------------------------
  851. Thanks for using Fractint, The Fractals and Fractint Discussion List
  852. Post Message:   fractint@lists.xmission.com
  853. Get Commands:   majordomo@lists.xmission.com "help"
  854. Administrator:  twegner@phoenix.net
  855. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  856.  
  857. ------------------------------
  858.  
  859. Date: Sat, 29 Aug 1998 01:10:55 -0400
  860. From: George Martin <GGMARTIN@compuserve.com>
  861. Subject: (fractint) Kerry Mitchell formulas
  862.  
  863. Kerry,
  864.  
  865. Kerry,
  866.  
  867. The coloring formulas which you posted recently contained
  868. three formulas with the name general_man and three with the
  869. name general_jul. To avoid the "duplicate name" problem I have
  870. renamed them for addition to the orgform compilation by adding =
  871.  
  872. the following suffixes for the appropriate formulas: =
  873.  
  874.  
  875. "-2circ", "-2lines" and "-c&l"
  876.  
  877. for example, general_man-2lines.
  878.  
  879. To draw the images, I also had to correct the corresponding formula =
  880.  
  881. name references in the applicable par entries.
  882.  
  883. Hope this is OK with you.
  884.  
  885. George Martin
  886.  
  887. - --------------------------------------------------------------
  888. Thanks for using Fractint, The Fractals and Fractint Discussion List
  889. Post Message:   fractint@lists.xmission.com
  890. Get Commands:   majordomo@lists.xmission.com "help"
  891. Administrator:  twegner@phoenix.net
  892. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  893.  
  894. ------------------------------
  895.  
  896. Date: Fri, 28 Aug 1998 22:40:38 -0700
  897. From: kathy roth <kroth@well.com>
  898. Subject: (fractint) PARS
  899.  
  900. oop, uh, ummm- maybe I should have entered
  901. THAT one in the contest
  902.  
  903. peacock_theater    { ; 8-98 kathy roth
  904.   reset=1960 type=formula formulafile=_rc1.frm
  905. formulaname=Carr1999   passes=1
  906.   center-mag=-0.00108361498328819/-0.000\
  907. 12098308736781/184.2853/1/-90
  908.   params=100/100/100/0.1 float=y outside=real
  909.   colors=0000nxQ_HNUALO3<8>px9<5>KMGFGIBB\
  910. M<14>WWz<7>J9J<15>zWz<7>J09<15>z0\
  911.   W<7>J90<15>zW0<7>JJ0<15>zz0<7>99J<15>W\
  912. Wz<7>0J9<15>0zW<7>0JJ<14>0xx0zz2tt\
  913.   <6>JE9<15>yjU<7>BJF<15>_zn<2>UjV
  914.   }
  915.  
  916. pt1                { ; splash
  917.                      ; 8-98 kathy roth
  918.                      ; wizzle color map
  919.   reset=1960 type=formula formulafile=_rc1.frm
  920. formulaname=Carr2958 passes=1
  921.   center-mag=-0.137071/-1.07339/3.205189
  922. params=100/100/100/100
  923.   colors=000O0_L0TI0MF0F<2>000<45>zzz\
  924. 000<9>0zz<9>r0r<9>000<47>000111333<29\
  925.   >zzz<30>222000000<39>000Z0AU00<6>m00<7>T0mR0f
  926.   }
  927.  
  928. pt2                { ; 8-98 kathy roth
  929.                      ; Damien Jones map
  930.   reset=1960 type=formula formulafile=_rc1.frm
  931. formulaname=Carr2958   passes=1
  932. center-mag=0.400202/-0.762718/6.281067
  933.   params=100/100/100/100 outside=atan
  934.   colors=000zyS<16>zy2zz0yy0<40>2200000\
  935. 11<82>0ly0mz0mz1mz<81>yyzzzzzyy<21>\
  936.   zyT
  937.   }
  938.  
  939. pt3                { ; 8-98 kathy roth
  940.   reset=1960 type=formula formulafile=_rc1.frm
  941. formulaname=Carr1999   passes=1
  942. center-mag=-0.995221/0.011073/2.109703/1/-90
  943.   params=100/100/100/100 float=y outside=real
  944.   colors=000QE6KG6<7>rDQ<2>tS_uXcvag\
  945. wfkwknxpryuvzzz<33>LguKguJfuHetHdrHcq<\
  946.   4>F`kE_iEZhEYfDYe<8>BUVBUUBTTASR<38>4A\
  947. A<13>BZUC`VBZU<22>6B56936A4<46>PbF\
  948.   <6>svc<6>feBdc7``8<4>FOFJNF<2>caEkfDr\
  949. kDzqCzmC<8>v8A<5>x39<3>`A7
  950.   }
  951.  
  952. pt4                { ; 8-98 kathy roth
  953.   reset=1960 type=formula formulafile=_rc1.frm
  954. formulaname=Carr1999   passes=1
  955. center-mag=-1.1978/0.0141737/3.492886/1/-90
  956.   params=100/100/100/100 float=y outside=real
  957.   colors=000QE6KG6<7>rDQ<2>tS_uXcvagwfkwkn\
  958. xpryuvzzz<33>LguKguJfuHetHdrHcq<\
  959.   4>F`kE_iEZhEYfDYe<8>BUVBUUBTTASR<38>4A\
  960. A<13>BZUC`VBZU<22>6B56936A4<46>PbF\
  961.   <6>svc<6>feBdc7``8<4>FOFJNF<2>caEkfDr\
  962. kDzqCzmC<8>v8A<5>x39<3>`A7
  963.   }
  964.  
  965. pt5                { ; 8-98 kathy roth
  966.   reset=1960 type=formula formulafile=_rc1.frm
  967. formulaname=Carr1999  passes=1
  968. center-mag=-0.602726/-0.00316482/2.109703/1/-90
  969.   params=25/1/100/100 float=y outside=real
  970.   colors=000QE6KG6<7>rDQ<2>tS_uXcvagwfkwknxpr\
  971. yuvzzz<33>LguKguJfuHetHdrHcq<\
  972.   4>F`kE_iEZhEYfDYe<8>BUVBUUBTTASR<38>4AA<13>B\
  973. ZUC`VBZU<22>6B56936A4<46>PbF\
  974.   <6>svc<6>feBdc7``8<4>FOFJNF<2>caEkfDr\
  975. kDzqCzmC<8>v8A<5>x39<3>`A7
  976.   }
  977.  
  978. pt6                { ; 8-98 kathy roth
  979.   reset=1960 type=formula formulafile=_rc1.frm
  980. formulaname=Carr1999   passes=1
  981. center-mag=0.079155/0.00206575/4.616661/1/-90
  982.   params=100/100/100/1 float=y outside=real
  983.   colors=000BBM<14>WWz<7>J9J<15>zWz<7>J0\
  984. 9<15>z0W<7>J90<15>zW0<7>JJ0<15>zz0\
  985.   <7>99J<15>WWz<7>0J9<15>0zW<7>0JJ<14>0x\
  986. x0zz2tt<6>JE9<15>yjU<7>BJF<15>_zn<\
  987.   6>LO3<8>px9<6>FGI
  988.   }
  989.  
  990. pt7                { ; 8-98 kathy roth
  991.   reset=1960 type=formula formulafile=_rc1.frm
  992. formulaname=Carr1999   passes=1
  993. center-mag=0.0610871/0.0055435/2.109703/1/-90
  994.   params=100/100/100/1 float=y outside=real
  995.   colors=000m0P<4>z0W<7>J90<15>zW\
  996. 0<7>JJ0<15>zz0<7>99J<15>WWz<7>0J9<15>0zW<\
  997.   7>0JJ<14>0xx0zz2tt<6>JE9<15>yjU<7>B\
  998. JF<15>_zn<6>LO3<8>px9<5>KMGFGIBBM<14>\
  999.   WWz<7>J9J<15>zWz<7>J09<9>j0N
  1000.   }
  1001.  
  1002. pt8                { ; pagoda
  1003.                      ; 8-98 kathy roth
  1004.   reset=1960 type=formula formulafile=_rc1.frm
  1005. formulaname=Carr1999   passes=1
  1006. center-mag=-0.0574325/0.00638511/3.965608/1/-90
  1007.   params=100/100/100/0.1 float=y outside=real
  1008.   colors=000M0B<14>z0W<7>J90<15>zW0<7>JJ\
  1009. 0<15>zz0<7>99J<15>WWz<7>0J9<15>0zW\
  1010.   <7>0JJ<14>0xx0zz2tt<6>JE9<15>yjU<7>B\
  1011. JF<15>_zn<6>LO3<8>px9<5>KMGFGIBBM<14\
  1012.   >WWz<7>J9J<15>zWz<7>J09
  1013.   }
  1014.  
  1015.  
  1016. frm:Carr1999 (XAXIS) {; Modified Sylvie Gallet frm. [101324,3444],1996
  1017.   z= c =pixel+1/log(pixel),
  1018.   c1=1.5*z , c2=2.25*z , c3=3.375*z , c4=5.0625*z,
  1019.   l1=real(p1) , l2=imag(p1) , l3=real(p2) , l4=imag(p2),
  1020.   bailout=16, iter=0 , pp2 = pixel/imag(p2):
  1021.   t1=(iter==l1) , t2=(iter==l2) , t3=(iter==l3) , t4=(iter==l4),
  1022.   t=1-(t1||t2||t3||t4) , z=z*t , c=c*t + c1*t1 + c2*t2 + c3*t3 + c4*t4 +
  1023.  
  1024. pp2
  1025.   z=z*z+c,
  1026.   iter=iter+1
  1027.   (|real(z)|) <= bailout
  1028.   ;SOURCE: 42acarr.frm
  1029. }
  1030.  
  1031. frm:Carr2958 {; Modified Sylvie Gallet frm. [101324,3444],1996
  1032.           ; passes=1 needs to be used with this PHC formula.
  1033.   b5=b4=abs(sinh(0.5+pixel/2))^3-conj(0.1/pixel)-flip(0.1/pixel)+0.5,
  1034.   c=whitesq*conj(b4)-(whitesq==0)*sqr(b4)
  1035.   z=whitesq*sqr(b5)-(whitesq==0)*conj(b5)
  1036.   c1=1.5*z,c2=2.25*z,c3=3.375*z,c4=5.0625*z,
  1037.   l1=real(p1),l2=imag(p1),l3=real(p2),l4=imag(p2),
  1038.   bailout=16,iter=0:
  1039.   t1=(iter==l1),t2=(iter==l2),t3=(iter==l3),t4=(iter==l4),
  1040.   t=1-(t1||t2||t3||t4),z=z*t,c=c*t+c1*t1+c2*t2+c3*t3+c4*t4,
  1041.   z=z^2+(-0.7456,-0.132)+c/10,
  1042.   iter=iter+1
  1043.   imag(flip(z))<=bailout
  1044.   ;SOURCE: 42wcarr.frm
  1045. }
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055. - --------------------------------------------------------------
  1056. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1057. Post Message:   fractint@lists.xmission.com
  1058. Get Commands:   majordomo@lists.xmission.com "help"
  1059. Administrator:  twegner@phoenix.net
  1060. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1061.  
  1062. ------------------------------
  1063.  
  1064. End of fractint-digest V1 #283
  1065. ******************************
  1066.  
  1067.