home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / fractint.199902 < prev    next >
Internet Message Format  |  1999-02-28  |  577KB

  1. From: "Mark Townsend" <marktown@netspace.net.au>
  2. Subject: (fractint) First images to the list
  3. Date: 01 Feb 1999 21:37:37 +1100
  4.  
  5. For the last 10 days or so I've been experimenting with colouring formulas.
  6. I'm still learning but I thought that it was about time I sent in some
  7. images. I won't say much about the formula--except that I knew less about
  8. the decomp colouring method then than I do now: which is very little.
  9.  
  10. The first image, "Paradise Lost" reminded me of the paintings of Hieronymus
  11. Bosch, the second of maybe some later science fiction  painter.
  12.  
  13. This stuff is a nightmare for the spelling checker.
  14.  
  15. Mark Townsend
  16. marktown@netspace.net.au
  17.  
  18. Paradise_Lost      { ; Copyright Mark Townsend, 28-01-99
  19.   reset=1960 type=formula formulafile=*.frm
  20.   formulaname=mt_990128f function=tanh/recip/cos/exp
  21.   center-mag=-1.26192/1.46107/2.87233/1.0492
  22.   params=1/1/0.1/0.1/-0.3/0.7 float=y maxiter=256 inside=128
  23.   outside=real decomp=256 periodicity=0
  24.   colors=dO9<2>ZJ2XH0VG0<3>N90080000<126>LPH00J<2>50P71R93U<9>TNlVOmXQoZSp\
  25.   `Uq<3>havjcwlew<2>rkytmzvozxqzzrz<3>rkypiyngxlew<2>f_udYtbWr<2>XQnVPmTNk\
  26.   RLi<9>71R50P30N10KJ60<6>YH0<7>lUImWLoYNpZPq`R<3>vf_whbwjd<2>ynkzpmzrozsq\
  27.   zus<3>yojymhxkfwjd<2>ueYtcWrbT<2>nYNmWKkUIiTGhREfQB cyclerange=0/255
  28.   }
  29.  
  30. Into_the_Machine   { ; Copyright Mark Townsend, 31-01-99
  31.   reset=1960 type=formula formulafile=*.frm
  32.   formulaname=mt_990128f function=exp/sin/tan/ident
  33.   center-mag=-1.12549/0.863527/6.59508 params=16/16/0.05/0.05/0.3/0.6
  34.   float=y maxiter=256 inside=0 decomp=256
  35.   colors=tmy<4>ohxngxmfxlewkdwjcw<14>WPnVPmUOlTNkSMj<20>71R60Q50P40O<3>00J\
  36.   J60<13>YH0ZI1_J3<18>oYOpZPq_Qq`RraSsaU<13>ymhyniynkyolzpm<4>ztrzusztr<9>\
  37.   xlgxkfxjewjdwicwha<14>nXMmWKlVJkUIjUH<13>YI1XH0WH0<11>J7000J<5>50P60Q71R\
  38.   82S<12>LFeMGfNHf<10>YRoZSp_Tq`UqaVrbWs<13>piyqjyrkyslytmz<4>yrzzrzyrz<3>\
  39.   unz cyclerange=0/255
  40.   }
  41.  
  42. frm:mt_990128f { Mark Townsend, 28-01-99
  43.   ; real p1 coloring speed of points captured by the Y axis
  44.   ; imag p1 coloring speed of points captured by the X axis
  45.   ; real p2  bailout point for orbits nearing the Y axis
  46.   ; imag p2 bailout point for orbits nearing the X axis
  47.   ; p3 Julia coordinates
  48.   ; fn1 function for the fractal formula ('ident' for Julia)
  49.   ; fn2 function for coloring points captured by the Y axis
  50.   ; fn3 function for coloring points captured by the X axis
  51.   ; fn4 function for the outside coloring
  52.   ; use decomp=256
  53.   ;
  54.   ; This is an implementation of Pickover's 'epsilon cross'
  55.   ; method on a generalised Julia fractal. The user can set
  56.   ; how near the orbit has to get to the axes before bailing
  57.   ; out. The larger the values given to p2 the wider the
  58.   ; 'stalks'. The values should be positive or 0 to turn the
  59.   ; stalks off. Points within the stalks are coloured by the
  60.   ; angle of z at bailout, messed up by a function. The outside
  61.   ; is coloured by the angle of z on it's closest  approach to the
  62.   ; origin, again through a function.
  63.   ;
  64.   ; ***********************************
  65.   z = pixel, c = p3, iter = 1, s = 1e9:
  66.   ; ***********************************
  67.   z = fn1(sqr(z)) + c
  68.   ; find the closest z to to the origin
  69.   if (|z| < |s|)
  70.      s = z
  71.   endif
  72.   if (abs(real(z)) < real(p2)) ; caught by Y axis
  73.      z = fn2(z)^real(p1)
  74.      iter = 0
  75.   elseif (abs(imag(z)) < imag(p2)) ; caught by X axis
  76.      z = fn3(z)^imag(p1)
  77.      iter = 0
  78.   elseif (|z| > 4)
  79.      z  = fn4(s)
  80.      iter = 0
  81.   endif
  82.   iter > 0
  83.   }
  84.  
  85.  
  86.  
  87.  
  88. Thanks for using Fractint, The Fractals and Fractint Discussion List
  89. Post Message:   fractint@lists.xmission.com
  90. Get Commands:   majordomo@lists.xmission.com "help"
  91. Administrator:  twegner@phoenix.net
  92. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  93.  
  94.  
  95. -------------------------------------------------------------------------------
  96.  
  97. From: "Mark Townsend" <marktown@netspace.net.au>
  98. Subject: Re: (fractint) First images to the list
  99. Date: 02 Feb 1999 00:38:03 +1100
  100.  
  101. Sorry, I just noticed that I left out the semicolon before the first comment
  102. in the formula. Fractint still seems to generate the images OK, but for the
  103. sake of completeness can anybody who cares replace the first line of the the
  104. formula with this:
  105.  
  106. frm:mt_990128f { ;Mark Townsend, 28-01-99
  107.  
  108.  
  109. Thank you.
  110.  
  111. Mark Townsend
  112. marktown@netspace.net.au
  113.  
  114.  
  115. Thanks for using Fractint, The Fractals and Fractint Discussion List
  116. Post Message:   fractint@lists.xmission.com
  117. Get Commands:   majordomo@lists.xmission.com "help"
  118. Administrator:  twegner@phoenix.net
  119. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  120.  
  121.  
  122. -------------------------------------------------------------------------------
  123.  
  124. From: wdecker@csc.com
  125. Subject: Re: (fractint) Visitor
  126. Date: 01 Feb 1999 09:06:10 -0500
  127.  
  128. Almost every time I post a par I save the message first and run it through
  129. Fractint to be sure I've constructed it correctly. When I don't do that, I
  130. make mistakes. I should have learned by now.
  131.  
  132. Replace the first line of the Visitor par's formula with:
  133. frm:bills-rotate3 {
  134.  
  135. Bill Decker
  136.  
  137.  
  138.  
  139. Thanks for using Fractint, The Fractals and Fractint Discussion List
  140. Post Message:   fractint@lists.xmission.com
  141. Get Commands:   majordomo@lists.xmission.com "help"
  142. Administrator:  twegner@phoenix.net
  143. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  144.  
  145.  
  146. -------------------------------------------------------------------------------
  147.  
  148. From: Gedeon Peteri <gedeon@InfoAve.Net>
  149. Subject: (fractint) new and revised web pages
  150. Date: 01 Feb 1999 17:49:30 -0500
  151.  
  152. I added a new page of Ultra Fractal images of some Sylvie Gallet
  153. formulas to my Geocities web site. In addition, I revised the Paul
  154. Carlson page, adding some new Ultra Fractal images, and replacing
  155. others. The Paul Carlson formula and par collection is still available
  156. there for download. I hope you enjoy your visit.
  157.  
  158. Gedeon
  159.  
  160. --
  161. Fractals: http://www.geocities.com/~gedeonp/index.html
  162. Member Infinite Fractal Loop
  163. Last updated: February 1, 1999 - new and updated pages
  164. Photography: http://members.xoom.com/gedeonp/index.html
  165. Last updated: November 8, 1998
  166.  
  167.  
  168.  
  169. Thanks for using Fractint, The Fractals and Fractint Discussion List
  170. Post Message:   fractint@lists.xmission.com
  171. Get Commands:   majordomo@lists.xmission.com "help"
  172. Administrator:  twegner@phoenix.net
  173. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  174.  
  175.  
  176. -------------------------------------------------------------------------------
  177.  
  178. From: "Axel Schwanh?u?er" <Axel.H.G.Schwanhaeusser@physik.stud.uni-erlangen.de>
  179. Subject: Re: (fractint) high res. pictures 4096*2732
  180. Date: 02 Feb 1999 18:29:39 +0000
  181.  
  182.  
  183.  
  184. Michael Traynor wrote:
  185.  
  186. > >I would like to create large high res. Fractint Pictures with Fractint
  187. > >19.6. My goal are 4096*2732 points 256colors. I didn't find an easier
  188. > >way to create manually the
  189. > >four 1024 * 768 pictures by evaluating the x-y-coordinates ba my own
  190. > >hands.
  191. > >And then putting them together in a pciture-edding-Program like Corel.
  192. > >
  193. > >Does anybody has an idea to make this more efficient?
  194. >
  195. > Axel,
  196. >
  197. > In fractint, hit "b" for the save pars screen.  Toward the bottom there
  198. > are places for you to specify x and y multiples.  If you put a "2" in
  199. > each, fractint will divide the screen in 4, 2 rows, 2 columns and save the
  200. > pars for the four images, together with a file called makemig.bat (IIRC).
  201. > When you run makemig.bat from the command prompt it will batch generate the
  202. > four images and piece them together into a multi-image gif file, and if you
  203. > remove the "rem" at the beginning of the next to last line of makemig.bat
  204. > (the line that refers to simplgif) it will convert the multi-image gif to
  205. > a straightforward gif (since many viewers don't handle multi-image gifs).
  206. > There is more in the fractint documentation.
  207. >
  208. > You can use this technique to make images up to 64Kx64K, if you have the
  209. > machine to handle it.  Even for smaller images, it helps to have lots of
  210. > memory, as to make the simple gif image the machine needs enough memory
  211. > (or disk space) to hold 3 copies, uncompressed.
  212. >
  213. > Sometimes there are problems at the edges of the component images,
  214. > particularly if you use a guessing method for drawing, so I usually use
  215. > the one pass method to avoid the problem.
  216. >
  217. > One thing to remember is that by dividing up the images, you are
  218. > effectively zooming into the original.  You might need to up the interation
  219. > count in the original (or edit the pars, which are in fractint.par) and
  220. > you need to be careful when you are near the limits of fp math, as a zoom
  221. > my put you into arbitrary precision, and really slow things down.
  222. >
  223. > Hope this helps (and isn't wrong - but I'm sure someone will set me
  224. > straight if it is).
  225. >
  226. > --
  227. > Mike Traynor
  228. >
  229. > People who like this sort of thing will find this the sort of thing they like.
  230. >         Abraham Lincoln
  231. >
  232. > --------------------------------------------------------------
  233. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  234. > Post Message:   fractint@lists.xmission.com
  235. > Get Commands:   majordomo@lists.xmission.com "help"
  236. > Administrator:  twegner@phoenix.net
  237. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  238.  
  239.   Thank you very much!
  240.  
  241. It (sometimes) works!
  242.  
  243. Axel
  244.  
  245.  
  246. Thanks for using Fractint, The Fractals and Fractint Discussion List
  247. Post Message:   fractint@lists.xmission.com
  248. Get Commands:   majordomo@lists.xmission.com "help"
  249. Administrator:  twegner@phoenix.net
  250. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  251.  
  252.  
  253. -------------------------------------------------------------------------------
  254.  
  255. From: Paul Derbyshire <pderbysh@usa.net>
  256. Subject: Re: (fractint) high res. pictures 4096*2732
  257. Date: 02 Feb 1999 12:51:59 -0500
  258.  
  259. At 06:29 PM 2/2/99 +0000, you wrote:
  260.  
  261. [About three gigabytes of quoted material, including signatures and
  262. fractint list footers deleted]
  263.  
  264. >It (sometimes) works!
  265. >
  266. >Axel
  267.  
  268.  
  269. Ladies and gentlemen, we have a newbie!
  270.  
  271. -- 
  272.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  273. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  274.    `*'  straight line."    -------------------------------------------------
  275.         -- B. Mandelbrot  |http://surf.to/pgd.net
  276. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  277. Programmer & Humanist|ICQ: 10423848|
  278.  
  279. Thanks for using Fractint, The Fractals and Fractint Discussion List
  280. Post Message:   fractint@lists.xmission.com
  281. Get Commands:   majordomo@lists.xmission.com "help"
  282. Administrator:  twegner@phoenix.net
  283. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  284.  
  285.  
  286. -------------------------------------------------------------------------------
  287.  
  288. From: Bob Margolis <rttyman@wwa.com>
  289. Subject: (fractint) Mathematical Constants
  290. Date: 03 Feb 1999 22:41:06 -0600
  291.  
  292. Hello Fractal Artisans;
  293.  
  294. If you need some mathematical constants to plug into the fractal
  295. formulas you devise, be sure to check out the Table of Mathematical
  296. Constants at:
  297.  
  298. http://www.mathsoft.com/asolve/constant/table.html .
  299.  
  300. Bob Margolis
  301.  
  302. Thanks for using Fractint, The Fractals and Fractint Discussion List
  303. Post Message:   fractint@lists.xmission.com
  304. Get Commands:   majordomo@lists.xmission.com "help"
  305. Administrator:  twegner@phoenix.net
  306. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  307.  
  308.  
  309. -------------------------------------------------------------------------------
  310.  
  311. From: Paul Derbyshire <pderbysh@usa.net>
  312. Subject: Re: (fractint) high res. pictures 4096*2732
  313. Date: 03 Feb 1999 23:55:18 -0500
  314.  
  315. At 12:51 PM 2/2/99 -0500, I wrote:
  316. >Ladies and gentlemen, we have a newbie!
  317.  
  318. but it only showed up at 23:54 2/3/99 ... 36 hours later!!!
  319.  
  320. What the fuck's the matter with the listserv?
  321. -- 
  322.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  323. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  324.    `*'  straight line."    -------------------------------------------------
  325.         -- B. Mandelbrot  |http://surf.to/pgd.net
  326. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  327. Programmer & Humanist|ICQ: 10423848|
  328.  
  329. Thanks for using Fractint, The Fractals and Fractint Discussion List
  330. Post Message:   fractint@lists.xmission.com
  331. Get Commands:   majordomo@lists.xmission.com "help"
  332. Administrator:  twegner@phoenix.net
  333. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  334.  
  335.  
  336. -------------------------------------------------------------------------------
  337.  
  338. From: Genealogy1@aol.com
  339. Subject: Re: (fractint) high res. pictures 4096*2732
  340. Date: 04 Feb 1999 08:17:31 EST
  341.  
  342. Hi Fractal folks,
  343.  
  344. I was appalled by the language used by Paul Derbyshire on his latest post. I
  345. would vote for his immediate expulsion from the FRACTINT list serve.
  346.  
  347. --Bob Carr--
  348.  
  349. Thanks for using Fractint, The Fractals and Fractint Discussion List
  350. Post Message:   fractint@lists.xmission.com
  351. Get Commands:   majordomo@lists.xmission.com "help"
  352. Administrator:  twegner@phoenix.net
  353. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  354.  
  355.  
  356. -------------------------------------------------------------------------------
  357.  
  358. From: Paul Derbyshire <pderbysh@usa.net>
  359. Subject: Re: (fractint) high res. pictures 4096*2732
  360. Date: 04 Feb 1999 08:30:07 -0500
  361.  
  362. At 08:17 AM 2/4/99 EST, you wrote:
  363. >Hi Fractal folks,
  364. >
  365. >I was appalled by the language used by Paul Derbyshire on his latest post. I
  366. >would vote for his immediate expulsion from the FRACTINT list serve.
  367.  
  368. Excuse me?
  369. This is a) off topic and b) an unprovoked attack on me.
  370. Nobody died and left you Internet Censor. If a message offends you, don't
  371. read it. :P
  372.  
  373. -- 
  374.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  375. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  376.    `*'  straight line."    -------------------------------------------------
  377.         -- B. Mandelbrot  |http://surf.to/pgd.net
  378. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  379. Programmer & Humanist|ICQ: 10423848|
  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.  
  390. From: Kenneth Cole <kennethcole@home.com>
  391. Subject: Re: (fractint) high res. pictures 4096*2732
  392. Date: 04 Feb 1999 07:29:07 -0600
  393.  
  394. Hello,
  395.  
  396. Although I didn't approve of the language, I respect his work greatly. I
  397. totally disagree with any negative comments or actions about Paul.
  398. Everyone gets frustrated when you expect things to work and they don't.
  399. I know I do.
  400.  
  401. Ken Cole
  402.  
  403. Genealogy1@aol.com wrote:
  404. > Hi Fractal folks,
  405. > I was appalled by the language used by Paul Derbyshire on his latest post. I
  406. > would vote for his immediate expulsion from the FRACTINT list serve.
  407. > --Bob Carr--
  408. > --------------------------------------------------------------
  409. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  410. > Post Message:   fractint@lists.xmission.com
  411. > Get Commands:   majordomo@lists.xmission.com "help"
  412. > Administrator:  twegner@phoenix.net
  413. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  414.  
  415. Thanks for using Fractint, The Fractals and Fractint Discussion List
  416. Post Message:   fractint@lists.xmission.com
  417. Get Commands:   majordomo@lists.xmission.com "help"
  418. Administrator:  twegner@phoenix.net
  419. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  420.  
  421.  
  422. -------------------------------------------------------------------------------
  423.  
  424. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  425. Subject: Re: (fractint) high res. pictures 4096*2732
  426. Date: 04 Feb 1999 17:15:24 +0100
  427.  
  428. I _don't_ quite think so!
  429.  
  430. Frustration can be a very good reason for such language. And you're
  431. completely wrong (IMHO) when you think this is completely unacceptable. Your
  432. reaction does in no way show any social skills. Your behavior is IMO more to
  433. be frowned upon than Paul's.
  434.  
  435. [Note: I've just been through days of fuss with ISPs and mail servers. I
  436. definitely wondered what the "****" was happening when I wasn't able to
  437. administrate my own mailing list (listserv :) because my ISP had put my list
  438. server in it's black list, and redirection didn't work and two different mail
  439. servers denied the existences of my accounts. -- Yes I can understand it.]
  440.  
  441. --
  442.  
  443. Dean-Christian Strik
  444.    ICQ: 11760568
  445.  dean2@bigfoot.com
  446. cstrik.isg@hetnet.nl
  447.  
  448. Real programmers like vending machine popcorn. Coders pop it in the microwave
  449. oven. Real programmers use the heat given off by the CPU. They can tell what
  450. job is running just by listening to the rate of popping.
  451.  
  452.  
  453.  
  454. -----Original Message-----
  455.  
  456.  
  457. >Hi Fractal folks,
  458. >
  459. >I was appalled by the language used by Paul Derbyshire on his latest post. I
  460. >would vote for his immediate expulsion from the FRACTINT list serve.
  461. >
  462. >--Bob Carr--
  463. >
  464. >--------------------------------------------------------------
  465. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  466. >Post Message:   fractint@lists.xmission.com
  467. >Get Commands:   majordomo@lists.xmission.com "help"
  468. >Administrator:  twegner@phoenix.net
  469. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  470.  
  471.  
  472.  
  473. Thanks for using Fractint, The Fractals and Fractint Discussion List
  474. Post Message:   fractint@lists.xmission.com
  475. Get Commands:   majordomo@lists.xmission.com "help"
  476. Administrator:  twegner@phoenix.net
  477. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  478.  
  479.  
  480. -------------------------------------------------------------------------------
  481.  
  482. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  483. Subject: Re: (fractint) high res. pictures 4096*2732
  484. Date: 04 Feb 1999 17:04:42 +0100
  485.  
  486. Yeah, I wondered about that too. I got your message at 06:00 GMT+1, but the
  487. message you replied to didn't show up before 14:35 GMT+1....
  488.  
  489. It's a majordomo btw :)
  490.  
  491. PS. I'm still on the list. As a lurker :)
  492.  
  493. --
  494.  
  495. Dean-Christian Strik
  496.    ICQ: 11760568
  497.  dean2@bigfoot.com
  498. cstrik.isg@hetnet.nl
  499.  
  500. Real programmers like vending machine popcorn. Coders pop it in the microwave
  501. oven. Real programmers use the heat given off by the CPU. They can tell what
  502. job is running just by listening to the rate of popping.
  503.  
  504.  
  505. -----Original Message-----
  506.  
  507.  
  508. >At 12:51 PM 2/2/99 -0500, I wrote:
  509. >>Ladies and gentlemen, we have a newbie!
  510. >
  511. >but it only showed up at 23:54 2/3/99 ... 36 hours later!!!
  512. >
  513. >What the fuck's the matter with the listserv?
  514. >--
  515. >   .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  516. >-()  <  circles, and bark is not smooth, nor does lightning travel in a
  517. >   `*'  straight line."    -------------------------------------------------
  518. >        -- B. Mandelbrot  |http://surf.to/pgd.net
  519. >_____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  520. >Programmer & Humanist|ICQ: 10423848|
  521. >
  522. >--------------------------------------------------------------
  523. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  524. >Post Message:   fractint@lists.xmission.com
  525. >Get Commands:   majordomo@lists.xmission.com "help"
  526. >Administrator:  twegner@phoenix.net
  527. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  528.  
  529.  
  530.  
  531. Thanks for using Fractint, The Fractals and Fractint Discussion List
  532. Post Message:   fractint@lists.xmission.com
  533. Get Commands:   majordomo@lists.xmission.com "help"
  534. Administrator:  twegner@phoenix.net
  535. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  536.  
  537.  
  538. -------------------------------------------------------------------------------
  539.  
  540. From:    "Fliguer, Miguel" <M_Fliguer@miniphone.com.ar>
  541. Subject: RE: (fractint) high res. pictures 4096*2732
  542. Date: 04 Feb 1999 14:23:58 -0300 
  543.  
  544.  
  545. > Dean-Christian Strik wrote :
  546. >>>Frustration can be a very good reason for such language.
  547.  
  548. Dean, I have no problem with the word in question.
  549.  
  550. But I definitely have a problem with the "Ladies & Gentlemen, we have a
  551. newbie"
  552. attitude from Paul's original post. 
  553.  
  554. And I assume the list admin is DEFINITELY having a problem about this
  555. thread,
  556. so I better shut up.
  557.  
  558. no_par_today    {
  559.         formulafile=*.frm formulaname=no_par_today
  560.         }
  561.  
  562. frm:no_par_today {
  563.           }
  564.  
  565. Miguel Fliguer - Buenos Aires, Argentina
  566. http://members.xoom.com/fliguer/franktal.html
  567.  
  568.  
  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.  
  579. -------------------------------------------------------------------------------
  580.  
  581. From: Genealogy1@aol.com
  582. Subject: Re: (fractint) high res. pictures 4096*2732
  583. Date: 04 Feb 1999 13:04:25 EST
  584.  
  585. In a message dated 2/4/99 12:27:34 PM Eastern Standard Time,
  586. M_Fliguer@miniphone.com.ar writes:
  587.  
  588. << Dean, I have no problem with the word in question. >>
  589.  
  590. If this member has no problem with the "word", perhaps he should be expelled
  591. as well. 
  592.  
  593. This list is not for gutter trash !!!
  594.  
  595. --Bob Carr--
  596.  
  597. Thanks for using Fractint, The Fractals and Fractint Discussion List
  598. Post Message:   fractint@lists.xmission.com
  599. Get Commands:   majordomo@lists.xmission.com "help"
  600. Administrator:  twegner@phoenix.net
  601. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  602.  
  603.  
  604. -------------------------------------------------------------------------------
  605.  
  606. From: Genealogy1@aol.com
  607. Subject: Re: (fractint) high res. pictures 4096*2732
  608. Date: 04 Feb 1999 13:11:07 EST
  609.  
  610. In a message dated 2/4/99 11:25:51 AM Eastern Standard Time, dean2@bigfoot.com
  611. writes:
  612.  
  613. << Frustration can be a very good reason for such language. And you're
  614.  completely wrong (IMHO) when you think this is completely unacceptable. Your
  615.  reaction does in no way show any social skills. Your behavior is IMO more to
  616.  be frowned upon than Paul's. >>
  617.  
  618. There is NO REASON for such profanity on this format. If that's how one vents
  619. his frustration he is socialy  imature at best. In reality, he is common
  620. without sense of others feelings.
  621.  
  622. --Bob Carr--
  623.  
  624. Thanks for using Fractint, The Fractals and Fractint Discussion List
  625. Post Message:   fractint@lists.xmission.com
  626. Get Commands:   majordomo@lists.xmission.com "help"
  627. Administrator:  twegner@phoenix.net
  628. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  629.  
  630.  
  631. -------------------------------------------------------------------------------
  632.  
  633. From: George Martin <GGMARTIN@compuserve.com>
  634. Subject: Re: (fractint) high res. pictures 4096*2732
  635. Date: 04 Feb 1999 13:49:24 -0500
  636.  
  637. Friends,
  638.  
  639. I suggest that we quietly bring this thread to an end.  Matters of list
  640. etiquette are the province of our able administrator, Tim Wegner, who
  641. watches the list carefully, and will take whatever action he deems
  642. necessary in the event of breach, perhaps a gentle private admonishment o=
  643. r
  644. a reminder to the whole group if a problem is more widespread. Digging in=
  645.  
  646. our heels on the current matter will serve no purpose.
  647.  
  648. Regards,
  649.  
  650. George Martin =
  651.  
  652.  
  653. Thanks for using Fractint, The Fractals and Fractint Discussion List
  654. Post Message:   fractint@lists.xmission.com
  655. Get Commands:   majordomo@lists.xmission.com "help"
  656. Administrator:  twegner@phoenix.net
  657. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  658.  
  659.  
  660. -------------------------------------------------------------------------------
  661.  
  662. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  663. Subject: Re: (fractint) high res. pictures 4096*2732
  664. Date: 04 Feb 1999 18:39:47 -0000
  665.  
  666. Paul Derbyshire wrote
  667.  
  668. > If a message offends you, don't read it. :P
  669.  
  670. How exactly do I do that? sixth sense?
  671.  
  672. - Les
  673.  
  674.  
  675.  
  676. Thanks for using Fractint, The Fractals and Fractint Discussion List
  677. Post Message:   fractint@lists.xmission.com
  678. Get Commands:   majordomo@lists.xmission.com "help"
  679. Administrator:  twegner@phoenix.net
  680. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  681.  
  682.  
  683. -------------------------------------------------------------------------------
  684.  
  685. From: "Morgen H Bell" <morgenb@cobweb.net>
  686. Subject: Re: (fractint) high res. pictures 4096*2732
  687. Date: 04 Feb 1999 13:55:38 -0500
  688.  
  689. Good heavens!  The only thing fractal-like about all this is the endless
  690. repetitions which (I suppose) show self-similarity.  Give it a rest, guys.
  691.  
  692.  
  693. Hi Fractal folks,
  694.  
  695. I was appalled by the language used by Paul Derbyshire on his latest post. I
  696. would vote for his immediate expulsion from the FRACTINT list serve.
  697.  
  698. --Bob Carr--
  699.  
  700.  
  701.  
  702.  
  703. Thanks for using Fractint, The Fractals and Fractint Discussion List
  704. Post Message:   fractint@lists.xmission.com
  705. Get Commands:   majordomo@lists.xmission.com "help"
  706. Administrator:  twegner@phoenix.net
  707. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  708.  
  709.  
  710. -------------------------------------------------------------------------------
  711.  
  712. From: Alex Morano <amorano@erols.com>
  713. Subject: Re: (fractint) high res. pictures 4096*2732
  714. Date: 04 Feb 1999 15:17:17 -0500
  715.  
  716. Morgen H Bell wrote:
  717.  
  718. > Good heavens!  The only thing fractal-like about all this is the endless
  719. > repetitions which (I suppose) show self-similarity.  Give it a rest, guys.
  720.  
  721.         Well, I am sure glad I just signed up for this list. I see there are a
  722. lot of discussions on fractals here. Thanks for the welcome.
  723.  
  724.  
  725. --
  726.              ,,,,,
  727.              (o o)
  728.   =======oOO==(_)==OOo========
  729.  
  730.       http://www.bworks.com
  731.  
  732.   http://www.erols.com/amorano
  733.  
  734.          .oooO    Oooo.
  735.   =======(   )====(   )=======
  736.           \  (    )  /
  737.            \_)    (_/
  738.  
  739.  
  740.  
  741. Thanks for using Fractint, The Fractals and Fractint Discussion List
  742. Post Message:   fractint@lists.xmission.com
  743. Get Commands:   majordomo@lists.xmission.com "help"
  744. Administrator:  twegner@phoenix.net
  745. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  746.  
  747.  
  748. -------------------------------------------------------------------------------
  749.  
  750. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  751. Subject: Re: (fractint) high res. pictures 4096*2732
  752. Date: 04 Feb 1999 21:52:35 +0100
  753.  
  754. You can't be serious.... tell me, are you just kidding now or are you
  755. serious? If the latter applies to you, I can't but conclude you are the one
  756. who doesn't fit on this list.
  757.  
  758. No offense, just IMHO...
  759.  
  760. --
  761.  
  762. Dean-Christian Strik
  763.    ICQ: 11760568
  764.  dean2@bigfoot.com
  765. cstrik.isg@hetnet.nl
  766.  
  767. Real programmers like vending machine popcorn. Coders pop it in the microwave
  768. oven. Real programmers use the heat given off by the CPU. They can tell what
  769. job is running just by listening to the rate of popping.
  770.  
  771.  
  772. -----Original Message-----
  773.  
  774.  
  775. >In a message dated 2/4/99 12:27:34 PM Eastern Standard Time,
  776. >M_Fliguer@miniphone.com.ar writes:
  777. >
  778. ><< Dean, I have no problem with the word in question. >>
  779. >
  780. >If this member has no problem with the "word", perhaps he should be expelled
  781. >as well.
  782. >
  783. >This list is not for gutter trash !!!
  784. >
  785. >--Bob Carr--
  786. >
  787. >--------------------------------------------------------------
  788. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  789. >Post Message:   fractint@lists.xmission.com
  790. >Get Commands:   majordomo@lists.xmission.com "help"
  791. >Administrator:  twegner@phoenix.net
  792. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  793.  
  794.  
  795.  
  796. Thanks for using Fractint, The Fractals and Fractint Discussion List
  797. Post Message:   fractint@lists.xmission.com
  798. Get Commands:   majordomo@lists.xmission.com "help"
  799. Administrator:  twegner@phoenix.net
  800. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  801.  
  802.  
  803. -------------------------------------------------------------------------------
  804.  
  805. From: Paul Derbyshire <pderbysh@usa.net>
  806. Subject: Re: (fractint) high res. pictures 4096*2732
  807. Date: 04 Feb 1999 16:27:00 -0500
  808.  
  809. At 06:39 PM 2/4/99 -0000, you wrote:
  810. >Paul Derbyshire wrote
  811. >
  812. >> If a message offends you, don't read it. :P
  813. >
  814. >How exactly do I do that? sixth sense?
  815.  
  816. Procmail.
  817.  
  818. -- 
  819.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  820. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  821.    `*'  straight line."    -------------------------------------------------
  822.         -- B. Mandelbrot  |http://surf.to/pgd.net
  823. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  824. Programmer & Humanist|ICQ: 10423848|
  825.  
  826. Thanks for using Fractint, The Fractals and Fractint Discussion List
  827. Post Message:   fractint@lists.xmission.com
  828. Get Commands:   majordomo@lists.xmission.com "help"
  829. Administrator:  twegner@phoenix.net
  830. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  831.  
  832.  
  833. -------------------------------------------------------------------------------
  834.  
  835. From: Tim Gilman <t.gilman@apple.com>
  836. Subject: (fractint) ANT type on XFract
  837. Date: 04 Feb 1999 13:39:53 -0800
  838.  
  839. I can't get ANT to work using the 2nd ANT algorithm using XFract running 
  840. on top of SGI's IRIX.  Can someone try this guy out on their XFract?  The 
  841. trick is, I'm busy crafting the Macintosh port, and I'm not sure what 
  842. it'll take to get this working..
  843.  
  844. Thanks!
  845. Tim Gilman
  846. http://www.scruz.net/~tgilman/tim/macfract/
  847.  
  848.  
  849. Thanks for using Fractint, The Fractals and Fractint Discussion List
  850. Post Message:   fractint@lists.xmission.com
  851. Get Commands:   majordomo@lists.xmission.com "help"
  852. Administrator:  twegner@phoenix.net
  853. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  854.  
  855.  
  856. -------------------------------------------------------------------------------
  857.  
  858. From: "AA" <aa@panix.com>
  859. Subject: RE: (fractint) high res. pictures 4096*2732
  860. Date: 04 Feb 1999 21:50:27 -0500
  861.  
  862.  
  863.  
  864. > -----Original Message-----
  865. > From: owner-fractint@lists.xmission.com
  866. > [mailto:owner-fractint@lists.xmission.com]On Behalf Of
  867. > Genealogy1@aol.com
  868. > Sent: Thursday, February 04, 1999 8:18 AM
  869. > To: fractint@lists.xmission.com
  870. > Subject: Re: (fractint) high res. pictures 4096*2732
  871. > Hi Fractal folks,
  872. > I was appalled by the language used by Paul Derbyshire on his 
  873. > latest post. I
  874. > would vote for his immediate expulsion from the FRACTINT list serve.
  875. > --Bob Carr--
  876. > --------------------------------------------------------------
  877. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  878. > Post Message:   fractint@lists.xmission.com
  879. > Get Commands:   majordomo@lists.xmission.com "help"
  880. > Administrator:  twegner@phoenix.net
  881. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  882. >
  883.  
  884. 01000110011101010110001101101011 
  885.  
  886. Thanks for using Fractint, The Fractals and Fractint Discussion List
  887. Post Message:   fractint@lists.xmission.com
  888. Get Commands:   majordomo@lists.xmission.com "help"
  889. Administrator:  twegner@phoenix.net
  890. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  891.  
  892.  
  893. -------------------------------------------------------------------------------
  894.  
  895. From: Jim Watson <jimbo@eureka.lk>
  896. Subject: RE: (fractint) ANT type on XFract
  897. Date: 05 Feb 1999 09:01:23 -0000 (GMT)
  898.  
  899. Tim,
  900.  
  901. I've tried ant type 2 out on my version of Xfractint (version 3.04
  902. FRACTINT Version 19.6) running on a Linux system and can report that mine
  903. doesn't seem to work either.  All I get is a horizontal bar ( 3-4 pixels
  904. wide) in the centre of the screen which gradually expands out to the edges
  905. of the window.
  906.  
  907. Good luck with the porting....
  908.  
  909. On 04-Feb-99 Tim Gilman wrote:
  910. > I can't get ANT to work using the 2nd ANT algorithm using XFract running
  911. > on top of SGI's IRIX.  Can someone try this guy out on their XFract? 
  912.  
  913. Best Regards
  914.  
  915.  
  916. Jim Watson
  917. Marconi Communications,
  918. VOA (Sri Lanka) Project Site Office,
  919. P.O. Box 14,
  920. Negombo,
  921. Sri Lanka.
  922.  
  923. Fax : + 94 32 54584
  924. Tel : + 94 71 770542
  925.  
  926.  
  927. Thanks for using Fractint, The Fractals and Fractint Discussion List
  928. Post Message:   fractint@lists.xmission.com
  929. Get Commands:   majordomo@lists.xmission.com "help"
  930. Administrator:  twegner@phoenix.net
  931. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  932.  
  933.  
  934. -------------------------------------------------------------------------------
  935.  
  936. From: Jim Watson <jimbo@eureka.lk>
  937. Subject: RE: (fractint) ANT type on XFract
  938. Date: 05 Feb 1999 09:01:23 -0000 (GMT)
  939.  
  940. Tim,
  941.  
  942. I've tried ant type 2 out on my version of Xfractint (version 3.04
  943. FRACTINT Version 19.6) running on a Linux system and can report that mine
  944. doesn't seem to work either.  All I get is a horizontal bar ( 3-4 pixels
  945. wide) in the centre of the screen which gradually expands out to the edges
  946. of the window.
  947.  
  948. Good luck with the porting....
  949.  
  950. On 04-Feb-99 Tim Gilman wrote:
  951. > I can't get ANT to work using the 2nd ANT algorithm using XFract running
  952. > on top of SGI's IRIX.  Can someone try this guy out on their XFract? 
  953.  
  954. Best Regards
  955.  
  956.  
  957. Jim Watson
  958. Marconi Communications,
  959. VOA (Sri Lanka) Project Site Office,
  960. P.O. Box 14,
  961. Negombo,
  962. Sri Lanka.
  963.  
  964. Fax : + 94 32 54584
  965. Tel : + 94 71 770542
  966.  
  967.  
  968. Thanks for using Fractint, The Fractals and Fractint Discussion List
  969. Post Message:   fractint@lists.xmission.com
  970. Get Commands:   majordomo@lists.xmission.com "help"
  971. Administrator:  twegner@phoenix.net
  972. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  973.  
  974.  
  975. -------------------------------------------------------------------------------
  976.  
  977. From: Paul Derbyshire <pderbysh@usa.net>
  978. Subject: RE: (fractint) high res. pictures 4096*2732
  979. Date: 04 Feb 1999 22:18:31 -0500
  980.  
  981. At 09:50 PM 2/4/99 -0500, you wrote:
  982.  
  983. [A lot of quoted material, followed by:]
  984.  
  985. >01000110011101010110001101101011 
  986.  
  987. ????????????????????????????????
  988. -- 
  989.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  990. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  991.    `*'  straight line."    -------------------------------------------------
  992.         -- B. Mandelbrot  |http://surf.to/pgd.net
  993. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  994. Programmer & Humanist|ICQ: 10423848|
  995.  
  996. Thanks for using Fractint, The Fractals and Fractint Discussion List
  997. Post Message:   fractint@lists.xmission.com
  998. Get Commands:   majordomo@lists.xmission.com "help"
  999. Administrator:  twegner@phoenix.net
  1000. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1001.  
  1002.  
  1003. -------------------------------------------------------------------------------
  1004.  
  1005. From: Paul Derbyshire <pderbysh@usa.net>
  1006. Subject: RE: (fractint) ANT type on XFract
  1007. Date: 04 Feb 1999 22:20:14 -0500
  1008.  
  1009. At 09:01 AM 2/5/99 -0000, you wrote:
  1010.  
  1011. [A message]
  1012.  
  1013. to both fractint@lists.xmission.com and fractint@xmission.com.
  1014.  
  1015. This practise appears to produce duplicate messages on the list, as clearly
  1016. both of your destination addresses work for posting. Please stick to just
  1017. fractint@lists.xmission.com.
  1018.  
  1019. -- 
  1020.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  1021. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  1022.    `*'  straight line."    -------------------------------------------------
  1023.         -- B. Mandelbrot  |http://surf.to/pgd.net
  1024. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  1025. Programmer & Humanist|ICQ: 10423848|
  1026.  
  1027. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1028. Post Message:   fractint@lists.xmission.com
  1029. Get Commands:   majordomo@lists.xmission.com "help"
  1030. Administrator:  twegner@phoenix.net
  1031. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1032.  
  1033.  
  1034. -------------------------------------------------------------------------------
  1035.  
  1036. From: Lee&SusanLane <slane@kiwi.dep.anl.gov>
  1037. Subject: Re: (fractint) high res. pictures 4096*2732
  1038. Date: 04 Feb 1999 21:21:10 -0800
  1039.  
  1040. This is a multi-part message in MIME format.
  1041.  
  1042. --------------243E26DD57B1
  1043. Content-Type: text/plain; charset=us-ascii
  1044. Content-Transfer-Encoding: 7bit
  1045.  
  1046. George Martin hit the nail on the head, as I expect Tim would agree. But 
  1047. I have to say Bravo to Les St. Clair. That was brilliant.
  1048.  
  1049. Here are some soothing pars.
  1050.  
  1051. Cheers,  Lee Lane
  1052.  
  1053. >George Martin wrote:
  1054. > I suggest that we quietly bring this thread to an end.  Matters of list
  1055. > etiquette are the province of our able administrator, Tim Wegner, who
  1056. > watches the list carefully, and will take whatever action he deems
  1057. > necessary in the event of breach, perhaps a gentle private admonishment or
  1058. > a reminder to the whole group if a problem is more widespread. Digging in
  1059. > our heels on the current matter will serve no purpose.
  1060.  
  1061. --------------243E26DD57B1
  1062. Content-Type: text/plain; charset=us-ascii
  1063. Content-Transfer-Encoding: 7bit
  1064. Content-Disposition: inline; filename="LLane01.par"
  1065.  
  1066.  
  1067. LL2-0220           { ; Papal scepter                        t=  0:00:45.75
  1068.                      ; t=calc time [h:mm:ss.] using a PII-300 at 1280x1024
  1069.                      ; (c) 1999 by Lee Lane [Par date: Feb 04, 1999]
  1070.                      ; e-mail to: slane@kiwi.dep.anl.gov
  1071.   reset=1960 type=formula formulafile=leelane2.frm formulaname=ll2-02
  1072.   function=tan/atan/cos passes=1
  1073.   center-mag=-0.00317878/0.00155285/0.1608899/0.8932/-90
  1074.   params=21/0/1/1 float=y maxiter=256 inside=bof60 outside=atan
  1075.   rseed=-7839
  1076.   colors=RNHSSS<14>000<11>NJEPLFTPI<16>zqb<18>QLGOKFMIEKHDIFC<8>000<31>www\
  1077.   <31>000<2>543765986BA7DB8<24>zqb<24>EB8CA7A86875654<2>000<31>www<15>UUU
  1078.   }
  1079.  
  1080. LL2-0221           { ; Splash                               t=  0:00:48.17
  1081.                      ; t=calc time [h:mm:ss.] using a PII-300 at 1280x1024
  1082.                      ; (c) 1999 by Lee Lane [Par date: Feb 03, 1999]
  1083.                      ; e-mail to: slane@kiwi.dep.anl.gov
  1084.   reset=1960 type=formula formulafile=leelane2.frm formulaname=ll2-02
  1085.   function=cotan/asin/sqrt passes=1
  1086.   center-mag=-0.00317878/0.00155285/0.1581163/0.8932/-90
  1087.   params=43/8/4/0 float=y maxiter=256 inside=bof60 outside=real
  1088.   rseed=-7839
  1089.   colors=JPOsobtpc<2>oj_mhYkfWidUgbT<8>QLDOJCMHAKF9KF9<30>NW`NW`NV_<22>HHJ\
  1090.   GHIGGHFGHFFGEFFEEEDDD<16>HMLINMINMJONJON<2>KRPKRQLSQLSRLTR<7>NXVOYWOYWPZ\
  1091.   XPYW<8>OLHNJFNJF<13>ZO7_P6aQ6<11>p_7q`7ra7tb8tdCtfGtiKtkOtnS<12>PIG<5>WP\
  1092.   LYQMZRN`SOaUP<3>hZU<14>NJFLHELIE<15>ZVM_WN`XOaYPbZQ<6>hdWieWjfXjfXkgY<7>\
  1093.   rna
  1094.   }
  1095.  
  1096. LL2-0222           { ; Chinese decoration                   t=  0:00:53.94
  1097.                      ; t=calc time [h:mm:ss.] using a PII-300 at 1280x1024
  1098.                      ; (c) 1999 by Lee Lane [Par date: Feb 03, 1999]
  1099.                      ; e-mail to: slane@kiwi.dep.anl.gov
  1100.   reset=1960 type=formula formulafile=leelane2.frm formulaname=ll2-02
  1101.   function=tan/atan/cos passes=1
  1102.   center-mag=-0.00331305/0.00155285/0.2122482/0.8867/-90
  1103.   params=21/0/1/1 float=y maxiter=256 inside=bof60 outside=atan
  1104.   rseed=-7839
  1105.   colors=0003vW<22>0hm0hm1gn<13>3Xu3Wv4Wv4Vv<2>6Tx6Sx7Rx7Qx8Qy8Py<3>BLzBLz\
  1106.   CKzCJzDJz<8>IDzJCzKBzLBzMAz<5>Q7yR7xS6xT5wT5w<4>X3u000OCs_2t<18>l0im0hn0\
  1107.   gn0fo0e<4>r1bs1as2`t2_t2Zu2Z<8>x6Sx7Rx7Qy8Qy8Py9O<6>zDJzDIzEHzEHzFGzGG<1\
  1108.   3>xQ7xR6xS6wT5wT5wU5<5>tZ2t_2s_2s`2ra1rb1qb14KLI1z0KK000<55>000BzL<8>6xS\
  1109.   5wT5wT5wU4vV4vW
  1110.   }
  1111.  
  1112. frm:LL2-02  { ; overlay LL1-08 and LL1-11
  1113.     z = pixel,c = fn2(z^p1),b1 = p2+3,b2 = p2+1:
  1114.     IF (whitesq)
  1115.       z = fn1(z)*z*z+c
  1116.       PHC_bailout = |z| < b1
  1117.     ELSE
  1118.           z = p1*fn2(z*z*z*fn1(z)) + fn1(fn2(fn3(z)))
  1119.       PHC_bailout = z < b2
  1120.     ENDIF
  1121.     PHC_bailout}      
  1122.  
  1123. --------------243E26DD57B1--
  1124.  
  1125.  
  1126.  
  1127. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1128. Post Message:   fractint@lists.xmission.com
  1129. Get Commands:   majordomo@lists.xmission.com "help"
  1130. Administrator:  twegner@phoenix.net
  1131. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1132.  
  1133.  
  1134. -------------------------------------------------------------------------------
  1135.  
  1136. From: wdecker@csc.com
  1137. Subject: (fractint) Posting pars
  1138. Date: 04 Feb 1999 23:35:16 -0500
  1139.  
  1140. Something with smooth surfaces and not very complicated.
  1141. Something that gets us back on topic.
  1142.  
  1143. Bill Decker
  1144.  
  1145. bold-stripes       { ;  (c) Bill Decker Feb 04, 1999 t=  0:00:53.22
  1146.                      ;  on P150 800x600
  1147.   reset=1960 type=formula formulafile=0bill.frm formulaname=billsfn4
  1148.   function=recip/exp/abs center-mag=1.04059/0.573731/16.84333/1/-92.5
  1149.   params=1/1/8/4 float=y potential=255/200/0
  1150.   colors=000K10<39>cV0dW0dW1eX2<20>olXplZpm_qmaqma<37>dV1cU0cU0cU0<34>ZM0Z\
  1151.   M0ZM0YL0YL0XK0<22>M30L20K10J00I00<33>100000000000<40>K00
  1152.   }
  1153.  
  1154. frm:billsfn4  {
  1155.   z = p1, temp = pixel :
  1156.   z = fn1(temp^p2)
  1157.   IF (5 < z)
  1158.     temp = fn2(temp)
  1159.   ELSE
  1160.     temp = fn3(z)
  1161.   ENDIF
  1162.   z < 100
  1163. }
  1164.  
  1165.  
  1166.  
  1167. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1168. Post Message:   fractint@lists.xmission.com
  1169. Get Commands:   majordomo@lists.xmission.com "help"
  1170. Administrator:  twegner@phoenix.net
  1171. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1172.  
  1173.  
  1174. -------------------------------------------------------------------------------
  1175.  
  1176. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  1177. Subject: RE: (fractint) ANT type on XFract
  1178. Date: 05 Feb 1999 17:52:09 +1300
  1179.  
  1180. At 09:01 05/02/99 -0000, you wrote:
  1181. >Tim,
  1182. >
  1183. >I've tried ant type 2 out on my version of Xfractint (version 3.04
  1184. >FRACTINT Version 19.6) running on a Linux system and can report that mine
  1185. >doesn't seem to work either.  All I get is a horizontal bar ( 3-4 pixels
  1186. >wide) in the centre of the screen which gradually expands out to the edges
  1187. >of the window.
  1188. >
  1189. This sounds normal - if you're referring to the default "1100" rule. Try
  1190. another rule to see if more interesting patterns result - "1101101" should
  1191. give you a screenful of diagonal stripes.
  1192.  
  1193. >
  1194. >On 04-Feb-99 Tim Gilman wrote:
  1195. >> I can't get ANT to work using the 2nd ANT algorithm using XFract running
  1196. >> on top of SGI's IRIX.  Can someone try this guy out on their XFract? 
  1197. >>
  1198. This one is out of my bailiwick, I'm afraid.
  1199.  
  1200.  
  1201.  
  1202.  
  1203. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1204. Post Message:   fractint@lists.xmission.com
  1205. Get Commands:   majordomo@lists.xmission.com "help"
  1206. Administrator:  twegner@phoenix.net
  1207. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1208.  
  1209.  
  1210. -------------------------------------------------------------------------------
  1211.  
  1212. From: "Tim Wegner" <twegner@phoenix.net>
  1213. Subject: Re: (fractint) ANT type on XFract
  1214. Date: 04 Feb 1999 23:14:31 -0600
  1215.  
  1216. Tim wrote:
  1217. Tim Gilman wrote:
  1218.  
  1219. > I can't get ANT to work using the 2nd ANT algorithm using XFract running 
  1220. > on top of SGI's IRIX.  Can someone try this guy out on their XFract?  The 
  1221. > trick is, I'm busy crafting the Macintosh port, and I'm not sure what 
  1222. > it'll take to get this working..
  1223.  
  1224. I'll have a look at ant under Linux. Thanks for the report. Jonathan 
  1225. and I are both working on Linux bug fixes right now.
  1226.  
  1227. Tim
  1228.  
  1229.  
  1230.  
  1231. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1232. Post Message:   fractint@lists.xmission.com
  1233. Get Commands:   majordomo@lists.xmission.com "help"
  1234. Administrator:  twegner@phoenix.net
  1235. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1236.  
  1237.  
  1238. -------------------------------------------------------------------------------
  1239.  
  1240. From: "Tim Wegner" <twegner@phoenix.net>
  1241. Subject: (fractint) offensive messages
  1242. Date: 04 Feb 1999 23:17:42 -0600
  1243.  
  1244. George said: 
  1245.  
  1246. > I suggest that we quietly bring this thread to an end.  Matters of 
  1247. > list etiquette are the province of our able administrator, Tim 
  1248. > Wegner, who  watches the list carefully, and will take whatever 
  1249. > action he deems necessary  
  1250.  
  1251. George is right. I am dealing with this. Let's have no more  
  1252. discussion of this on the list, beyond this message. 
  1253.  
  1254. I will now state the obvious. For the sake of the protecting the  
  1255. purpose of the list (discussion of fractals): 
  1256.  
  1257. 1. don't post messages to the list asking or commenting about  
  1258. whether the list is up or down or other list administration issues. If  
  1259. you must, email me personally. I will tell you in advance, though,  
  1260. that I have no interest in 36 hour interruptions of the list that cure  
  1261. themselves. If there is a fundamental problem with the list I want to  
  1262. know.  
  1263.  
  1264. As list administrator, I have to post messages about administration 
  1265.  issues like this one from time to time. I ask everyone else to resist 
  1266.  the temptation to comment or respond to any off topic messages.  
  1267.  
  1268. 2. Dn't use language on the list that is likely to offend enough  
  1269. people to start a thread about your language. This is not a list for  
  1270. the purpose of discussing your language. By the same token, if  
  1271. someone on the list offends you, email me personally, don't post to 
  1272.  the list. Your complaint, however legitimate, is off topic. Email me  
  1273. and I will take care of the problem. 
  1274.  
  1275. If you are frustrated, send me emails full of profanity. I can handle it 
  1276.  :-) 
  1277.  
  1278. 3. We don't need messages about newbies or non-newbies or  
  1279. anyone else that might make anyone feel unwelcome. 
  1280.  
  1281. Finally, thanks to everyone for keeping the tone of the list so  
  1282. pleasant and friendly for the vast majority of messages. 
  1283.  
  1284. Tim 
  1285. List administrator 
  1286.  
  1287.  
  1288.  
  1289.  
  1290.  
  1291.  
  1292.  
  1293.  
  1294. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1295. Post Message:   fractint@lists.xmission.com
  1296. Get Commands:   majordomo@lists.xmission.com "help"
  1297. Administrator:  twegner@phoenix.net
  1298. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1299.  
  1300.  
  1301. -------------------------------------------------------------------------------
  1302.  
  1303. From: "Tim Wegner" <twegner@phoenix.net>
  1304. Subject: RE: (fractint) ANT type on XFract
  1305. Date: 04 Feb 1999 23:45:41 -0600
  1306.  
  1307. Morgan wrote (responding to Tim Gilman):
  1308.  
  1309. > >I've tried ant type 2 out on my version of Xfractint (version 3.04
  1310. > >FRACTINT Version 19.6) running on a Linux system and can report that mine
  1311. > >doesn't seem to work either.  All I get is a horizontal bar ( 3-4 pixels
  1312. > >wide) in the centre of the screen which gradually expands out to the edges
  1313. > >of the window.
  1314. > >
  1315. > This sounds normal - if you're referring to the default "1100" rule. Try
  1316. > another rule to see if more interesting patterns result - "1101101" should
  1317. > give you a screenful of diagonal stripes.
  1318.  
  1319. You have hit the nail on the head. The type 2 ant works fine, it is 
  1320. just that the default isn't good for type 2. Your suggestion works for 
  1321. me.
  1322.  
  1323. As Jim Watson pointed out, the Linux and DOS Ant behave the 
  1324. same, so it is not a Linux bug.
  1325.  
  1326. Tim
  1327.  
  1328.  
  1329.  
  1330.  
  1331.  
  1332. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1333. Post Message:   fractint@lists.xmission.com
  1334. Get Commands:   majordomo@lists.xmission.com "help"
  1335. Administrator:  twegner@phoenix.net
  1336. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1337.  
  1338.  
  1339. -------------------------------------------------------------------------------
  1340.  
  1341. From: PKyleCA@aol.com
  1342. Subject: Re: (fractint) high res. pictures 4096*2732
  1343. Date: 05 Feb 1999 01:38:22 EST
  1344.  
  1345. In a message dated 2/4/99 10:31:12 PM Pacific Standard Time, pderbysh@usa.net
  1346. writes:
  1347.  
  1348. << [A lot of quoted material, followed by:]
  1349.  
  1350.  >01000110011101010110001101101011  >>
  1351.  
  1352. perhaps binary code was our first hint of achieving fractals with computers-
  1353. exhibiting the properties of self-similarity (when various string lengths were
  1354. observed)... <G>
  1355.  
  1356. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1357. Post Message:   fractint@lists.xmission.com
  1358. Get Commands:   majordomo@lists.xmission.com "help"
  1359. Administrator:  twegner@phoenix.net
  1360. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1361.  
  1362.  
  1363. -------------------------------------------------------------------------------
  1364.  
  1365. From: "Nigel H. J. Long" <n.h.long@soton.ac.uk>
  1366. Subject: (fractint) A repeatable Plasma?
  1367. Date: 05 Feb 1999 08:09:58 +0000 (GMT Standard Time)
  1368.  
  1369. Please forgive me if I am asking either the obvious or the 
  1370. impossible!
  1371.  
  1372. Is there any way to 'seed' a value in Fractint 19.6 so that 
  1373. I can always plot a PREDICTABLE 'plasma' type display? I am 
  1374. setting up a rolling demo for a group of 11 and 12 year 
  1375. olds to use in their science fair project, and it involves 
  1376. a plasma plot being used to make a 3D mountain range; but 
  1377. some plasma's work better than others and I would like to 
  1378. stack the deck a bit so they get a good one every time.....
  1379.  
  1380. I tried pre-plotting a few and then loading them, but this 
  1381. does not show the viewer the whole process from start to 
  1382. finish - unless I cheat and don't use the plot itself, just 
  1383. load one of my pre-cooked screens instead :-)
  1384.  
  1385. Any comments and advice would be appreciated - especially 
  1386. by the 1,000 visitors expected to see the results.
  1387.  
  1388. ----------------------
  1389. Nigel H. J. Long
  1390. (Information Scientist)
  1391. n.h.long@soton.ac.uk
  1392.  
  1393.  
  1394. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1395. Post Message:   fractint@lists.xmission.com
  1396. Get Commands:   majordomo@lists.xmission.com "help"
  1397. Administrator:  twegner@phoenix.net
  1398. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1399.  
  1400.  
  1401. -------------------------------------------------------------------------------
  1402.  
  1403. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  1404. Subject: (fractint) UltraFractal Halley Formula
  1405. Date: 05 Feb 1999 10:52:01 GMT
  1406.  
  1407. Okay, as you've already guessed it's about UltraFractal, not 
  1408. fractint. My problem is this:
  1409.  
  1410. I've put together an impressive array of Newton approx formulas, but 
  1411. I can't seem to convert them to Halley approx. The resulting formulas 
  1412. just don't work. I don't get it. For example, below is the "Halley 
  1413. Cubic" formula, which doesn't work. However, if you change the last 
  1414. line of the loop section to read "Z = Z - @Relax * (F / G)", this 
  1415. transforming it into the Newton approx, it works just fine. What 
  1416. gives?
  1417.  
  1418. ###################################################
  1419.  
  1420. HalleyCubic {
  1421. init:
  1422.   Z = #Pixel
  1423.   Ca = @Co3
  1424.   Cb = @Co2
  1425.   Cc = @Co1
  1426.   Da = Ca*3
  1427.   Db = Cb*2
  1428.   Ea = Da*2
  1429.   Bailout = @Bailout * @Bailout
  1430. loop:
  1431.   F = Ca*Z*Z*Z + Cb*Z*Z + Cc*Z - @Root
  1432.   G = Da*Z*Z + Db*Z + Cc
  1433.   H = Ea*Z + Db
  1434.   Z = Z - @Relax * F / (G - (H * F / 2 * G))
  1435. bailout:
  1436.   |F| > Bailout
  1437. default:
  1438.   title = "Halley Cubic"
  1439.   param Bailout
  1440.     default = 0.001
  1441.   endparam
  1442.   param Root
  1443.     default = (1.0, 0.0)
  1444.   endparam
  1445.   param Relax
  1446.     caption = "Relaxation Coef"
  1447.     default = (1.0, 0.0)
  1448.   endparam
  1449.   param Co3
  1450.     caption = "Cubic Coef"
  1451.     default = (1.0, 0.0)
  1452.   endparam
  1453.   param Co2
  1454.     caption = "Quadratic Coef"
  1455.     default = (0.0, 0.0)
  1456.   endparam
  1457.   param Co1
  1458.     caption = "Linear Coef"
  1459.     default = (0.0, 0.0)
  1460.   endparam
  1461. }
  1462.  
  1463. Nam et ipsa scientia potestus est!
  1464. (Sir Francis Facon)
  1465. Andrew Orphi Coppin
  1466. DMU MK.
  1467.  
  1468. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1469. Post Message:   fractint@lists.xmission.com
  1470. Get Commands:   majordomo@lists.xmission.com "help"
  1471. Administrator:  twegner@phoenix.net
  1472. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1473.  
  1474.  
  1475. -------------------------------------------------------------------------------
  1476.  
  1477. From: Brederlow <goswin.brederlow@student.uni-tuebingen.de>
  1478. Subject: (fractint) high res. pictures greater than 2560*2560 or posters greater 32x32 tiles
  1479. Date: 05 Feb 1999 13:05:39 +0100
  1480.  
  1481. Why can't I have an image greater than 2560x2560 pixels in size? Where 
  1482. does that limitation come from? If it where 65535x65535 I could
  1483. understand where it comes from, but 2560?
  1484.  
  1485. Also, why is the number of tiles for a poster limited? (Well apart
  1486. from the stupid 8+3 limit does has.) For non-fat filesystems it is no
  1487. problem to have longer names and thus have tiles with multicharacter
  1488. index.
  1489.  
  1490. May the Source be with you.
  1491.             Goswin
  1492.  
  1493. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1494. Post Message:   fractint@lists.xmission.com
  1495. Get Commands:   majordomo@lists.xmission.com "help"
  1496. Administrator:  twegner@phoenix.net
  1497. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1498.  
  1499.  
  1500. -------------------------------------------------------------------------------
  1501.  
  1502. From:    "Fliguer, Miguel" <M_Fliguer@miniphone.com.ar>
  1503. Subject: RE: (fractint) A repeatable Plasma?
  1504. Date: 05 Feb 1999 09:22:05 -0300 
  1505.  
  1506. >>>Is there any way to 'seed' a value in Fractint 19.6 so that 
  1507. >>>I can always plot a PREDICTABLE 'plasma' type display? I am 
  1508.  
  1509. I guess 
  1510.  
  1511.  fractint rseed=xxx
  1512.  
  1513. would do the trick (it seems it was specifically introduced to get
  1514. repeatable plasmas).
  1515. This is in the F1 docs, in the "Calculation Parameters" screen.
  1516.  
  1517. RTFM  (sorry, RTM)  ;-)
  1518.  
  1519. Miguel Fliguer - Buenos Aires, Argentina
  1520. Franktal Gallery - Shut Up And Draw Yer Fractals
  1521. http://members.xoom.com/fliguer/franktal.html
  1522.  
  1523.  
  1524.  
  1525. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1526. Post Message:   fractint@lists.xmission.com
  1527. Get Commands:   majordomo@lists.xmission.com "help"
  1528. Administrator:  twegner@phoenix.net
  1529. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1530.  
  1531.  
  1532. -------------------------------------------------------------------------------
  1533.  
  1534. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  1535. Subject: Re: (fractint) A repeatable Plasma?
  1536. Date: 05 Feb 1999 15:05:02 +0100
  1537.  
  1538. Hi,
  1539.  
  1540. use 'rseed=000' or something similar from the CLI or <g> screen.
  1541.  
  1542. --
  1543.  
  1544. Dean-Christian Strik
  1545.    ICQ: 11760568
  1546.  dean2@bigfoot.com
  1547. cstrik.isg@hetnet.nl
  1548.  
  1549. Real programmers like vending machine popcorn. Coders pop it in the microwave
  1550. oven. Real programmers use the heat given off by the CPU. They can tell what
  1551. job is running just by listening to the rate of popping.
  1552.  
  1553. -----Original Message-----
  1554.  
  1555.  
  1556. >Please forgive me if I am asking either the obvious or the
  1557. >impossible!
  1558. >
  1559. >Is there any way to 'seed' a value in Fractint 19.6 so that
  1560. >I can always plot a PREDICTABLE 'plasma' type display? I am
  1561. >setting up a rolling demo for a group of 11 and 12 year
  1562. >olds to use in their science fair project, and it involves
  1563. >a plasma plot being used to make a 3D mountain range; but
  1564. >some plasma's work better than others and I would like to
  1565. >stack the deck a bit so they get a good one every time.....
  1566. >
  1567. >I tried pre-plotting a few and then loading them, but this
  1568. >does not show the viewer the whole process from start to
  1569. >finish - unless I cheat and don't use the plot itself, just
  1570. >load one of my pre-cooked screens instead :-)
  1571. >
  1572. >Any comments and advice would be appreciated - especially
  1573. >by the 1,000 visitors expected to see the results.
  1574. >
  1575. >----------------------
  1576. >Nigel H. J. Long
  1577. >(Information Scientist)
  1578. >n.h.long@soton.ac.uk
  1579. >
  1580. >
  1581. >--------------------------------------------------------------
  1582. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  1583. >Post Message:   fractint@lists.xmission.com
  1584. >Get Commands:   majordomo@lists.xmission.com "help"
  1585. >Administrator:  twegner@phoenix.net
  1586. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1587.  
  1588.  
  1589.  
  1590. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1591. Post Message:   fractint@lists.xmission.com
  1592. Get Commands:   majordomo@lists.xmission.com "help"
  1593. Administrator:  twegner@phoenix.net
  1594. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1595.  
  1596.  
  1597. -------------------------------------------------------------------------------
  1598.  
  1599. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  1600. Subject: (fractint) January PAR collection
  1601. Date: 05 Feb 1999 22:29:41 -0000
  1602.  
  1603. The January par collection of postings to this mail list is now available at:
  1604.  
  1605. http://ourworld.compuserve.com/homepages/Les_StClair/fml.htm
  1606. (just the parameters)
  1607.  
  1608. or, if you prefer the pars with their original messages left intact you can get
  1609. this version:
  1610.  
  1611. http://www.homeusers.prestel.co.uk/crosstrees/fml.htm
  1612.  
  1613. Updated companion formula & IFS collections are available from both sites.
  1614.  
  1615. cheers,
  1616. Les
  1617.  
  1618.  
  1619.  
  1620. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1621. Post Message:   fractint@lists.xmission.com
  1622. Get Commands:   majordomo@lists.xmission.com "help"
  1623. Administrator:  twegner@phoenix.net
  1624. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1625.  
  1626.  
  1627. -------------------------------------------------------------------------------
  1628.  
  1629. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  1630. Subject: (fractint) Binary code fractals
  1631. Date: 06 Feb 1999 13:04:00 +1300
  1632.  
  1633. At 01:38 05/02/99 EST, PKyleCA wrote:
  1634. >In a message dated 2/4/99 10:31:12 PM Pacific Standard Time, pderbysh@usa.net
  1635. >writes:
  1636. >
  1637. > >01000110011101010110001101101011  >>
  1638. >
  1639. >perhaps binary code was our first hint of achieving fractals with computers-
  1640. >exhibiting the properties of self-similarity (when various string lengths
  1641. were observed)... <G>
  1642. >
  1643. The Morse-Thue sequence could well be looked at as a fractal bit sequence
  1644. (in the same way that Pascal's triangle mod 2 can be seen as corresponding
  1645. to Sierpinski's Gasket). It is certainly self-similar: for a start, just
  1646. taking every _second_ bit in the sequence yields the original sequence.
  1647.  
  1648. There are at least three ways of generating it (these come from the
  1649. ever-enthralling Clifford Pickover's book "Mazes for the Mind")
  1650.  
  1651. The first can be implemented as a L-system. Starting with a 0, we take the
  1652. sequence we have up to now (to start with, "0") and replace each 0 with 01
  1653. and each 1 with 10.
  1654.  
  1655. For the second method we again start with 0. For each step, take the
  1656. sequence we have up to now, copy it with all its bits flipped (writing "1"
  1657. for "0" and vice versa), and append it to the original.
  1658.  
  1659. The third is probably one of the easier methods for generating really long
  1660. portions of the sequence, since it doesn't need to remember what has
  1661. already been generated.
  1662. Write down the binary expansions of the natural numbers 0, 1, 2, 3, ...
  1663. Now for each number write down a 0 if there is an even number of "1"s in
  1664. the binary expansion, and a 1 if there is an odd number.
  1665.  
  1666. It's an eerie sequence to listen to (high note for 0, low note for 1,
  1667. perhaps) and strangely difficult to type...
  1668. 0110100110010110100101100110100110010110011010010110100110010110100101100110
  1669. 1001011010011001011001101001100101101001011001101001100101100110100101101001
  1670. 1001011001101001100101101001011001101001011010011001011010010110011010011001
  1671. 0110011010010110100110010110...
  1672.  
  1673.  
  1674.  
  1675. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1676. Post Message:   fractint@lists.xmission.com
  1677. Get Commands:   majordomo@lists.xmission.com "help"
  1678. Administrator:  twegner@phoenix.net
  1679. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1680.  
  1681.  
  1682. -------------------------------------------------------------------------------
  1683.  
  1684. From: BillatNY@aol.com
  1685. Subject: Re: (fractint) Posting pars
  1686. Date: 06 Feb 1999 14:54:23 EST
  1687.  
  1688. Mr. Decker admonished me for not submitting pars based on his last formula
  1689. after I complimented him on it.  So blame him for these pictures, not me.
  1690.  
  1691.  
  1692. frm:billsfm4  {
  1693.   z = p1, temp = pixel :
  1694.   z = fn1(temp^p2)
  1695.   IF (5 < z)
  1696.     temp = fn2(temp)
  1697.   ELSE
  1698.     temp = fn3(z)
  1699.   ENDIF
  1700.   z < 100
  1701. }
  1702.  
  1703.  
  1704. Des01              { ; Bill Rossi
  1705.                      ; Based on a William Decker frm
  1706.                      ; Modified Linda Allison color map
  1707.   reset=1960 type=formula formulafile=bdecker.frm formulaname=billsfn4
  1708.   function=ident/ident/log
  1709.   center-mag=4.68e-006/0.00292203/1.644749/1.3258 params=1/1/4/0
  1710.   float=y potential=256/200/0
  1711.   colors=0001JG1KE1SN<7>4zp<29>2DC2BA2BA<12>111000000000<15>000500500<26>i\
  1712.   B3<8>xeKziMyfL<7>kF5iB3fA3<8>911500000<12>000000011021032mI7143iB3165<9>\
  1713.   ziM3B9<15>000<5>3CA4FC5JF<10>Fte<14>155012000<15>4zn<2>4pe4lb4h_3dX3`U<8\
  1714.   >022<2>0FC
  1715.   }
  1716.  
  1717. Des02              { ; Bill Rossi
  1718.                      ; Based on a William Decker frm
  1719.   reset=1960 type=formula formulafile=bdecker.frm formulaname=billsfn4
  1720.   function=exp/cosh/sqrt center-mag=-5.36e-007/-0.852673/2.380953
  1721.   params=1/1/4/0 float=y potential=256/200/0
  1722.   colors=000dGK<13>CmQ<26>r91<12>qBRqBTrDS<34>zsPztPxrO<37>312<4>947A58A58\
  1723.   <11>MCJNCKNEK<14>GoU<13>SdXTcXUbYVaZ<10>hPbmjh<36>iObrnH<19>rFS
  1724.   }
  1725.  
  1726. Des03              { ; Bill Rossi
  1727.                      ; Based on a William Decker frm
  1728.   reset=1960 type=formula formulafile=bdecker.frm formulaname=billsfn4
  1729.   function=cosh/cosxx/atanh passes=1 center-mag=0/0/0.6666667
  1730.   params=1/1/4/0 float=y potential=256/200/0
  1731.   colors=000zzzQ_l<18>8CQs0G<8>S08nTs<16>R9Veof<7>LQMpgX<7>wUO<7>UFCmkN<18\
  1732.   >RJ3yN9<10>PA4s0G<15>L69xy2<24>UR8gYi<23>L69abl<17>FARD9QC7PA5N_tS<15>HM\
  1733.   Ktw3<10>fd5s0G<6>S8BpKw<5>WFZSEVODRKCMKzz<6>A5Nzzzzzzzzz
  1734.   }
  1735.  
  1736. Des04              { ; Bill Rossi
  1737.                      ; Based on a William Decker frm
  1738.   reset=1960 type=formula formulafile=bdecker.frm formulaname=billsfn4
  1739.   function=recip/exp/abs
  1740.   center-mag=+1.11260997067448700/+1.04687092568448500/77.51938
  1741.   params=1/1/4/4 float=y potential=255/200/0
  1742.   colors=000uou<26>cWvnjaaZHyqu<11>h4myrr<16>T24pkp<2>MI_zuu<33>nr_sZmkBdA\
  1743.   2zkuSrojii_mic_XMMK3ytt<31>O6Drul<3>Kv9zts<11>zgWzeTxuu<21>2dorhkjV`aHQz\
  1744.   ut<40>P9dO7cO8c<9>IIgVbU<4>NYNzuu<6>upu
  1745.   }
  1746.  
  1747. Bill Rossi
  1748. http://members.aol.com/billatny/fractopi.htm
  1749.  
  1750. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1751. Post Message:   fractint@lists.xmission.com
  1752. Get Commands:   majordomo@lists.xmission.com "help"
  1753. Administrator:  twegner@phoenix.net
  1754. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1755.  
  1756.  
  1757. -------------------------------------------------------------------------------
  1758.  
  1759. From: wdecker@csc.com
  1760. Subject: Re: (fractint) Posting pars
  1761. Date: 06 Feb 1999 21:54:39 -0500
  1762.  
  1763. > Mr. Decker admonished me for not submitting pars based on his last
  1764. formula
  1765. > after I complimented him on it.  So blame him for these pictures, not me.
  1766. [snip]
  1767. > Bill Rossi
  1768. Blame is not warranted. I find these images to be complimentary to what I
  1769. posted.
  1770.  
  1771. I'm always surprised by what others find in the  formulas I post. I write a
  1772. formula and then I wander around it trying to see its possibilities. After
  1773. banging away at it for what seems an eternity, I feel like I've exhausted
  1774. it.
  1775.  
  1776. A fresh view is always startling. That is why I asked for Bill's post.
  1777. Good, new perspective. I like the images.
  1778.  
  1779. Just to let you see where I've explored in this formula, here are images I
  1780. created on this theme last year.
  1781.  
  1782. flowerbed          { ;  (c) Bill Decker Aug 03, 1998 t=  0:02:09.40
  1783.                      ;  on P100 1024x768
  1784.   reset=1960 type=formula formulafile=0bill.frm formulaname=billsfn4
  1785.   function=cos/atan/abs
  1786.   center-mag=0.584848/-0.377847/14.09517/1/-162.5 params=5/5/-1/-5
  1787.   float=y potential=255/100/0
  1788.   colors=800AQNBRP<11>3GA3F93F9<21>144143133132122121111000<41>u00w00v00<3\
  1789.   7>200000020050<11>los<13>SNCQL9PK8QK6<14>xn_<13>TN9RL7PJ7PK8<14>nru<14>0\
  1790.   50130200<2>011011021031<3>0630630730830940940A4<3>1D71E82FA<9>9PM
  1791.   }
  1792.  
  1793. deathwords2        { ;  (c) Bill Decker Aug 08, 1998 t=  0:00:52.45
  1794.                      ;  on P150 800x600
  1795.   reset=1960 type=formula formulafile=0bill.frm formulaname=billsfn4
  1796.   function=cos/atan/abs passes=b
  1797.   center-mag=0.567271/-0.421102/13.34454/1/-157.499 params=5/5/-1/-5
  1798.   float=y fillcolor=200 potential=255/100/0
  1799.   colors=000Q00<13>k00m00m10<29>yk0zm0zm1<30>zzz<44>zz5zz3zz2zz0zy0<43>z50\
  1800.   z30z20z00y00<59>200000000000<14>O00
  1801.   }
  1802.  
  1803. frm:billsfm4  {
  1804.   z = p1, temp = pixel :
  1805.   z = fn1(temp^p2)
  1806.   IF (5 < z)
  1807.     temp = fn2(temp)
  1808.   ELSE
  1809.     temp = fn3(z)
  1810.   ENDIF
  1811.   z < 100
  1812. }
  1813.  
  1814.  
  1815. Bill Decker
  1816.  
  1817.  
  1818.  
  1819. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1820. Post Message:   fractint@lists.xmission.com
  1821. Get Commands:   majordomo@lists.xmission.com "help"
  1822. Administrator:  twegner@phoenix.net
  1823. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1824.  
  1825.  
  1826. -------------------------------------------------------------------------------
  1827.  
  1828. From: Paul Derbyshire <pderbysh@usa.net>
  1829. Subject: Re: (fractint) Posting pars
  1830. Date: 06 Feb 1999 22:01:25 -0500
  1831.  
  1832. At 09:54 PM 2/6/99 -0500, you wrote:
  1833. >flowerbed          { ;  (c) Bill Decker Aug 03, 1998 t=  0:02:09.40
  1834. >                     ;  on P100 1024x768
  1835.  
  1836. [deletia]
  1837.  
  1838. >deathwords2        { ;  (c) Bill Decker Aug 08, 1998 t=  0:00:52.45
  1839. >                     ;  on P150 800x600
  1840.  
  1841. [deletia]
  1842.  
  1843. Hey. Where did you get those 50 shiny new megahertz, and do you know where
  1844. I can get a few cheap? :-)
  1845.  
  1846. -- 
  1847.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  1848. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  1849.    `*'  straight line."    -------------------------------------------------
  1850.         -- B. Mandelbrot  |http://surf.to/pgd.net
  1851. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  1852. Programmer & Humanist|ICQ: 10423848|
  1853.  
  1854. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1855. Post Message:   fractint@lists.xmission.com
  1856. Get Commands:   majordomo@lists.xmission.com "help"
  1857. Administrator:  twegner@phoenix.net
  1858. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1859.  
  1860.  
  1861. -------------------------------------------------------------------------------
  1862.  
  1863. From: Birdsinger@aol.com
  1864. Subject: Re: (fractint) Posting pars
  1865. Date: 07 Feb 1999 14:46:16 EST
  1866.  
  1867.  
  1868. Here is a Valentine's Day variation of the Des01 par posted by Bill Rossi,
  1869. formula by William Decker and color map by Linda Allison:
  1870.  
  1871. valen1             { ; Birdie
  1872.                         ; Based on a Bill Rossi par of a William Decker frm
  1873.                         ; Modified Linda Allison color map
  1874.   reset=1960 type=formula formulafile=valen.par formulaname=billsfv4
  1875.   function=ident/ident/log
  1876.   center-mag=0.0391379/-0.00708526/0.5980878/1.2096 params=6/0
  1877.   float=y potential=256/200/0
  1878.   colors=mob255244333222<2>414515717<2>B0DC0FC0H<3>G0PH0RH0SH0U<12>M0oN0qN\
  1879.   0q<11>VAuVBvWBu<13>qLZsMXsNX<2>rQWrSVrTVrVUrWU<4>rcVrdVqfWqgX<6>qqjpslps\
  1880.   k<2>orgoqfnqempdlob<12>SgdQfePed<5>L`_K_ZJYX<7>8JJ7IH6GF5FE4DD3CB2AA<3>3\
  1881.   66356245234235236<3>22D31F42H42J53M64P<14>Q3qS2sT2uU1vV1xX0z<13>RQzQSzQS\
  1882.   z<13>aaqbbpddr<3>llz<4>gZqeWoeVn<13>W8YV6WU6V<14>F0FE0ED0DC0CB1B<4>626
  1883.   }
  1884.  
  1885. frm:billsfv4  {
  1886.   temp = pixel :
  1887.   z = fn1(temp^p1)
  1888.   IF (5 < z)
  1889.     temp = fn2(temp)
  1890.   ELSE
  1891.     temp = fn3(z)
  1892.   ENDIF
  1893.   z < 100
  1894.   }
  1895.  
  1896. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1897. Post Message:   fractint@lists.xmission.com
  1898. Get Commands:   majordomo@lists.xmission.com "help"
  1899. Administrator:  twegner@phoenix.net
  1900. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1901.  
  1902.  
  1903. -------------------------------------------------------------------------------
  1904.  
  1905. From: wdecker@csc.com
  1906. Subject: Re: (fractint) Posting pars
  1907. Date: 08 Feb 1999 21:25:02 -0500
  1908.  
  1909. > Hey. Where did you get those 50 shiny new megahertz, and do you know
  1910. where
  1911. > I can get a few cheap? :-)
  1912. I work on two machines and since the image size and speed have impact on
  1913. time to complete, I try to keep my comments consistent with that fact.
  1914.  
  1915. The 150 MHz PC is a laptop. I had some concerns about buying a laptop for
  1916. fractaling, especially because that was going to be its primary purpose.
  1917. Since then I have discovered that the search for fractal images is mightily
  1918. enhanced when it is performed in a lazy-boy recliner with an adult beverage
  1919. in easy reach. (Something I would find hard to do with a desktop model.)
  1920.  
  1921. Bill Decker
  1922.  
  1923.  
  1924.  
  1925. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1926. Post Message:   fractint@lists.xmission.com
  1927. Get Commands:   majordomo@lists.xmission.com "help"
  1928. Administrator:  twegner@phoenix.net
  1929. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1930.  
  1931.  
  1932. -------------------------------------------------------------------------------
  1933.  
  1934. From: "narada" <narada@hermes.net.au>
  1935. Subject: Re: (fractint) Posting pars
  1936. Date: 09 Feb 1999 21:26:39 +1100
  1937.  
  1938. This is a multi-part message in MIME format.
  1939.  
  1940. ------=_NextPart_000_0014_01BE5472.E1907BE0
  1941. Content-Type: text/plain;
  1942.     charset="iso-8859-1"
  1943. Content-Transfer-Encoding: quoted-printable
  1944.  
  1945. Hi.
  1946. Im new to the list. Hope you like these...
  1947.  
  1948.  
  1949. Franjipani       { ; Dan Vantari
  1950.                      ; Based on a Bill Rossi par of a William Decker frm
  1951.                      ; Narada's colour map
  1952.   reset=3D1960 type=3Dformula formulafile=3Dweb.par =
  1953. formulaname=3Dbillsfv4
  1954.   function=3Dcotan/sqrt/exp
  1955.   center-mag=3D0.0206845/-0.00708526/0.9902116/1.2096 params=3D5/0 =
  1956. float=3Dy
  1957.   potential=3D256/200/0
  1958.   =
  1959. colors=3D000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZccc<7>zzz<6>00z<15>zz0<1=
  1960. 5\
  1961.   =
  1962. >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13>2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\=
  1963.  
  1964.   15>zzz<5>zvo
  1965.   }
  1966.  
  1967.  
  1968. IceCrystals       { ; Dan Vantari
  1969.                      ; Based on a Bill Rossi par of a William Decker frm
  1970.                    =20
  1971.   reset=3D1960 type=3Dformula formulafile=3Dvar.par =
  1972. formulaname=3Dbillsfv4
  1973.   function=3Dsqrt/cos/exp
  1974.   center-mag=3D0.0206845/-0.00708526/1.27913/1.2096 params=3D6/0 =
  1975. float=3Dy
  1976.   potential=3D256/200/0
  1977.   =
  1978. colors=3D222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQ=
  1979. O\
  1980.   =
  1981. MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<2\=
  1982.  
  1983.   =
  1984. >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIAQK\=
  1985.  
  1986.   =
  1987. EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2mS6qU\=
  1988.  
  1989.   =
  1990. 6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQyiUug\=
  1991.  
  1992.   =
  1993. UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\=
  1994.  
  1995.   =
  1996. aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\=
  1997.  
  1998.   =
  1999. iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemuiouim\=
  2000.  
  2001.   =
  2002. qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_qIauMc\=
  2003.  
  2004.   =
  2005. uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi2Oi2M\=
  2006.  
  2007.   e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa
  2008.   }
  2009.  
  2010. frm:billsfv4  {
  2011.   temp =3D pixel :
  2012.   z =3D fn1(temp^p1)
  2013.   IF (5 < z)
  2014.     temp =3D fn2(temp)
  2015.   ELSE
  2016.     temp =3D fn3(z)
  2017.   ENDIF
  2018.   z < 100
  2019.   }
  2020.  
  2021.  
  2022. ------=_NextPart_000_0014_01BE5472.E1907BE0
  2023. Content-Type: text/html;
  2024.     charset="iso-8859-1"
  2025. Content-Transfer-Encoding: quoted-printable
  2026.  
  2027. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  2028. <HTML>
  2029. <HEAD>
  2030.  
  2031. <META content=3Dtext/html;charset=3Diso-8859-1 =
  2032. http-equiv=3DContent-Type>
  2033. <META content=3D'"MSHTML 4.72.2106.6"' name=3DGENERATOR>
  2034. </HEAD>
  2035. <BODY bgColor=3D#ffffff>
  2036. <DIV><FONT color=3D#000000 size=3D2>Hi.</FONT></DIV>
  2037. <DIV><FONT color=3D#000000 size=3D2></FONT><FONT size=3D2>Im new to the =
  2038. list. Hope you=20
  2039. like these...</FONT></DIV>
  2040. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2041. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2042. <DIV><FONT color=3D#000000 =
  2043. size=3D2>Franjipani       {=20
  2044. ; Dan=20
  2045. Vantari<BR>          &n=
  2046. bsp;         =20
  2047. ; Based on a Bill Rossi par of a William Decker=20
  2048. frm<BR>           =
  2049.          =20
  2050. ; Narada's colour map<BR>  reset=3D1960 type=3Dformula =
  2051. formulafile=3Dweb.par=20
  2052. formulaname=3Dbillsfv4<BR>  function=3Dcotan/sqrt/exp<BR> =20
  2053. center-mag=3D0.0206845/-0.00708526/0.9902116/1.2096 params=3D5/0 =
  2054. float=3Dy<BR> =20
  2055. potential=3D256/200/0<BR> =20
  2056. colors=3D000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZ=
  2057. ccc<7>zzz<6>00z<15>zz0<15\<BR> =20
  2058. >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13&g=
  2059. t;2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\<BR> =20
  2060. 15>zzz<5>zvo<BR>  }</FONT></DIV>
  2061. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2062. <DIV><FONT color=3D#000000=20
  2063. size=3D2><BR>IceCrystals       { ; Dan=20
  2064. Vantari<BR>          &n=
  2065. bsp;         =20
  2066. ; Based on a Bill Rossi par of a William Decker=20
  2067. frm<BR>           =
  2068.         =20
  2069. <BR>  reset=3D1960 type=3Dformula formulafile=3Dvar.par=20
  2070. formulaname=3Dbillsfv4<BR>  function=3Dsqrt/cos/exp<BR> =20
  2071. center-mag=3D0.0206845/-0.00708526/1.27913/1.2096 params=3D6/0 =
  2072. float=3Dy<BR> =20
  2073. potential=3D256/200/0<BR> =20
  2074. colors=3D222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQ=
  2075. O\<BR> =20
  2076. MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<=
  2077. ;2\<BR> =20
  2078. >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIA=
  2079. QK\<BR> =20
  2080. EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2=
  2081. mS6qU\<BR> =20
  2082. 6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQ=
  2083. yiUug\<BR> =20
  2084. UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\=
  2085. <BR> =20
  2086. aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\=
  2087. <BR> =20
  2088. iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemu=
  2089. iouim\<BR> =20
  2090. qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_q=
  2091. IauMc\<BR> =20
  2092. uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi=
  2093. 2Oi2M\<BR> =20
  2094. e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa<BR>  }</FONT></DIV>
  2095. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2096. <DIV><FONT color=3D#000000 size=3D2>frm:billsfv4  {<BR>  temp =
  2097. =3D pixel=20
  2098. :<BR>  z =3D fn1(temp^p1)<BR>  IF (5 < =
  2099. z)<BR>    temp=20
  2100. =3D fn2(temp)<BR>  ELSE<BR>    temp =3D =
  2101. fn3(z)<BR> =20
  2102. ENDIF<BR>  z < 100<BR>  }<BR></FONT></DIV></BODY></HTML>
  2103.  
  2104. ------=_NextPart_000_0014_01BE5472.E1907BE0--
  2105.  
  2106.  
  2107. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2108. Post Message:   fractint@lists.xmission.com
  2109. Get Commands:   majordomo@lists.xmission.com "help"
  2110. Administrator:  twegner@phoenix.net
  2111. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2112.  
  2113.  
  2114. -------------------------------------------------------------------------------
  2115.  
  2116. From: "Wayne Kiely" <kiely+co@riverland.net.au>
  2117. Subject: (fractint) 10 PARS and a FRM
  2118. Date: 10 Feb 1999 00:13:40 +1030
  2119.  
  2120. Hi all,
  2121.  
  2122. I found the following whilst starting to play with my first formulas.  My first real attempt was so
  2123. simple the results surprised me.  Someone with better maths might be able to explain the presence of
  2124. the 'julia like' zooms b, e and h into the points that are just visible in the 'bulbs' in the 'a'
  2125. mandelbrot image.  I have never seen the two together before.
  2126.  
  2127. Wayne
  2128.  
  2129. frm:WK990208 {
  2130.        z=c=pixel:
  2131.        z = z * z + pixel,
  2132.        if (fn1(|z|) < .05)
  2133.           z = z * 100
  2134.        endif
  2135.        |z| < 4
  2136.       }
  2137.  
  2138.  
  2139. wk990208a          { ; W Kiely <kiely+co@riverland.net.au>
  2140.                      ; Feb  08, 1999
  2141.                      ; t=  0:09:30.84 on PII 350 MMX at 1024 x 768
  2142.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2143.   function=abs center-mag=-0.500083/1.0105e-005/0.6666712 maxiter=1000
  2144.   inside=zmag outside=real
  2145.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2146.   74>000JJfJJfx00<3>p00
  2147.   }
  2148.  
  2149. wk990208b          { ; W Kiely <kiely+co@riverland.net.au>
  2150.                      ;  Feb 08, 1999
  2151.                      ; t=  0:00:10.27 on PII 350 MMX at 1024 x 768
  2152.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2153.   function=abs
  2154.   center-mag=-0.99998450250000000/+0.00000390410000000/47.60351/1.0008
  2155.   maxiter=1000 inside=zmag outside=real
  2156.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2157.   74>000JJfJJfx00<3>p00
  2158.   }
  2159.  
  2160. wk990208c          { ; W Kiely <kiely+co@riverland.net.au>
  2161.                      ; Feb 08, 1999
  2162.                      ; t=  0:00:20.22 on PII 350 MMX at 1024 x 768
  2163.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2164.   function=abs
  2165.   center-mag=-1.31043175000000000/+0.00001791119500000/121.1846/0.9997
  2166.   maxiter=1000 inside=zmag outside=real
  2167.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2168.   74>000JJfJJfx00<3>p00
  2169.   }
  2170.  
  2171. wk990208d          { ; W Kiely <kiely+co@riverland.net.au>
  2172.                      ; Feb 08, 1999
  2173.                      ; t=  0:00:20.76 on PII 350 MMX at 1024 x 768
  2174.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2175.   function=abs
  2176.   center-mag=-1.75487840968424400/-0.00000017833685776/120716.4
  2177.   float=y maxiter=1000 inside=zmag outside=real
  2178.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2179.   74>000JJfJJfx00<3>p00
  2180.   }
  2181.  
  2182. wk990208e          { ; W Kiely <kiely+co@riverland.net.au>
  2183.                      ; Feb 08, 1999
  2184.                      ; t=  0:00:19.56 on PII 350 MMX at 1024 x 768
  2185.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2186.   function=abs
  2187.   center-mag=-0.12258783000000000/+0.74487781550000000/116.3501/1.0023
  2188.   maxiter=1000 inside=zmag outside=real
  2189.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2190.   74>000JJfJJfx00<3>p00
  2191.   }
  2192.  
  2193. wk990208f          { ; W Kiely <kiely+co@riverland.net.au>
  2194.                      ;  Feb 08, 1999
  2195.                      ; t=  0:01:18.98 on PII 350 MMX at 1024 x 768
  2196.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2197.   function=abs
  2198.   center-mag=-0.12255853400000000/+0.74486988749999990/10936.91/0.9997
  2199.   maxiter=1000 inside=zmag outside=real
  2200.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2201.   74>000JJfJJfx00<3>p00
  2202.   }
  2203.  
  2204. wk990208g          { ; W Kiely <kiely+co@riverland.net.au>
  2205.                      ; Feb 08, 1999
  2206.                      ; t=  0:04:46.10 on PII 350 MMX at 1024 x 768
  2207.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2208.   function=abs passes=t
  2209.   center-mag=-0.12278743933445910/+0.74488480237201430/6.701785e+012
  2210.   float=y maxiter=1000 inside=zmag outside=real
  2211.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2212.   74>000JJfJJfx00<3>p00
  2213.   }
  2214.  
  2215. wk990208h          { ; W Kiely <kiely+co@riverland.net.au>
  2216.                      ; Feb 08, 1999
  2217.                      ; t=  0:00:42.67 on PII 350 MMX at 1024 x 768
  2218.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2219.   function=abs
  2220.   center-mag=-0.12278642759328280/+0.74488567242585060/7.352441e+008
  2221.   float=y maxiter=1000 inside=zmag outside=real
  2222.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2223.   74>000JJfJJfx00<3>p00
  2224.   }
  2225.  
  2226. wk990208i          { ; W Kiely <kiely+co@riverland.net.au>
  2227.                      ; Feb 08, 1999
  2228.                      ; t=  0:01:01.31 on PII 350 MMX at 1024 x 768
  2229.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2230.   function=abs
  2231.   center-mag=-0.12278642760099750/+0.74488567239098110/5.523178e+010
  2232.   float=y maxiter=1000 inside=zmag outside=real
  2233.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2234.   74>000JJfJJfx00<3>p00
  2235.   }
  2236.  
  2237. wk990208j          { ; W Kiely <kiely+co@riverland.net.au>
  2238.                      ; Feb 08, 1999
  2239.                      ; t=  0:00:52.90 on PII 350 MMX at 1024 x 768
  2240.   reset=1960 type=formula formulafile=wk.frm formulaname=wk990208
  2241.   function=abs
  2242.   center-mag=-0.12278642760054370/+0.74488567239143520/1.287913e+010
  2243.   float=y maxiter=1000 inside=zmag outside=real
  2244.   colors=z00n00<23>30000000z<30>0000z0<29>030000000<76>xxxyyyzzzzzzyyyxxx<\
  2245.   74>000JJfJJfx00<3>p00
  2246.   }
  2247.  
  2248.  
  2249.  
  2250.  
  2251. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2252. Post Message:   fractint@lists.xmission.com
  2253. Get Commands:   majordomo@lists.xmission.com "help"
  2254. Administrator:  twegner@phoenix.net
  2255. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2256.  
  2257.  
  2258. -------------------------------------------------------------------------------
  2259.  
  2260. From: "AA" <aa@panix.com>
  2261. Subject: RE: (fractint) Binary code fractals
  2262. Date: 09 Feb 1999 13:53:38 -0500
  2263.  
  2264.  
  2265.  
  2266. > -----Original Message-----
  2267. > From: owner-fractint@lists.xmission.com
  2268. > [mailto:owner-fractint@lists.xmission.com]On Behalf Of Morgan L. Owens
  2269. > Sent: Friday, February 05, 1999 7:04 PM
  2270. > To: fractint@lists.xmission.com
  2271. > Subject: (fractint) Binary code fractals
  2272. >
  2273. >
  2274. > At 01:38 05/02/99 EST, PKyleCA wrote:
  2275. > >In a message dated 2/4/99 10:31:12 PM Pacific Standard Time,
  2276. > pderbysh@usa.net
  2277. > >writes:
  2278. > >
  2279. > >
  2280. > > >01000110011101010110001101101011  >>
  2281. > >
  2282. > >perhaps binary code was our first hint of achieving fractals
  2283. > with computers-
  2284. > >exhibiting the properties of self-similarity (when various string lengths
  2285. > were observed)... <G>
  2286. > >
  2287. > The Morse-Thue sequence could well be looked at as a fractal bit sequence
  2288. > (in the same way that Pascal's triangle mod 2 can be seen as corresponding
  2289. > to Sierpinski's Gasket). It is certainly self-similar: for a start, just
  2290. > taking every _second_ bit in the sequence yields the original sequence.
  2291. >
  2292. > There are at least three ways of generating it (these come from the
  2293. > ever-enthralling Clifford Pickover's book "Mazes for the Mind")
  2294. >
  2295. > The first can be implemented as a L-system. Starting with a 0, we take the
  2296. > sequence we have up to now (to start with, "0") and replace each 0 with 01
  2297. > and each 1 with 10.
  2298. >
  2299. > For the second method we again start with 0. For each step, take the
  2300. > sequence we have up to now, copy it with all its bits flipped (writing "1"
  2301. > for "0" and vice versa), and append it to the original.
  2302. >
  2303. > The third is probably one of the easier methods for generating really long
  2304. > portions of the sequence, since it doesn't need to remember what has
  2305. > already been generated.
  2306. > Write down the binary expansions of the natural numbers 0, 1, 2, 3, ...
  2307. > Now for each number write down a 0 if there is an even number of "1"s in
  2308. > the binary expansion, and a 1 if there is an odd number.
  2309. >
  2310. > It's an eerie sequence to listen to (high note for 0, low note for 1,
  2311. > perhaps) and strangely difficult to type...
  2312. >
  2313. 0110100110010110100101100110100110010110011010010110100110010110100101100110
  2314. >
  2315. 1001011010011001011001101001100101101001011001101001100101100110100101101001
  2316. >
  2317. 1001011001101001100101101001011001101001011010011001011010010110011010011001
  2318. > 0110011010010110100110010110...
  2319. >
  2320. >
  2321. >
  2322. > --------------------------------------------------------------
  2323. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  2324. > Post Message:   fractint@lists.xmission.com
  2325. > Get Commands:   majordomo@lists.xmission.com "help"
  2326. > Administrator:  twegner@phoenix.net
  2327. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2328. >
  2329.  
  2330. The Morse-Thue sequence is the parity of the sum of the digits of the binary
  2331. representation of the numbers 0, 1, 2, ...
  2332.  
  2333. If we substitute 1 for the 0's and -1 for the 1's in M-T then we get the
  2334. sequence 1 -1 -1 1 -1 1 1 -1 -1 1 1 -1 1 -1 -1 1 ...
  2335. which are the coefficients of the infinite series generated by
  2336. (1-x)*(1-x^2)*(1-x^4)*(1-x^8)...
  2337.  
  2338. Years ago, I created the notation
  2339. 2-Prod f(x) = f(x)*f(x^2)*f(x^4)...
  2340. or more generally
  2341. n-Prod f(x,y) = f(x,y)*f(x^n,y^n)*f(x^(n^2),y^(n^2))*f(x^(n^3),y^(n^3))...
  2342.  
  2343. It turns out that this is the generating function for the Integer-Lattice
  2344. Scaling Fractal (ILSF)generated by the set of points corresponding to
  2345. f(x,y).
  2346.  
  2347. Thus, 2-Prod (1-x) generates the revised M-T and 2-Prod (1+x+y) generates
  2348. a serpinski triangle as does 2-Prod (1+xy+x^2).
  2349.  
  2350. I have written some code for generating these types of ILSF's and its
  2351. principles could be included in fractint, but...
  2352. it emphasizes number-theoretic and combinatorial qualities rather than
  2353. the analytic qualities of most fractint fractals.
  2354.  
  2355. One of my entries in the last contest was generated by this code.
  2356.  
  2357.  
  2358. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2359. Post Message:   fractint@lists.xmission.com
  2360. Get Commands:   majordomo@lists.xmission.com "help"
  2361. Administrator:  twegner@phoenix.net
  2362. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2363.  
  2364.  
  2365. -------------------------------------------------------------------------------
  2366.  
  2367. From: "narada" <narada@hermes.net.au>
  2368. Subject: (fractint) Resend of above in plain text
  2369. Date: 10 Feb 1999 13:21:40 +1100
  2370.  
  2371. This is a multi-part message in MIME format.
  2372.  
  2373. ------=_NextPart_000_0052_01BE54F8.4B577D00
  2374. Content-Type: text/plain;
  2375.     charset="iso-8859-1"
  2376. Content-Transfer-Encoding: quoted-printable
  2377.  
  2378. Hi.
  2379. Im new to the list (and have just had it pointed out that my browser was =
  2380. sending HTML format, so this is a repeat of the above PARs, thanks).   =
  2381. Hope you like these...
  2382. =20
  2383. =20
  2384. Franjipani       { ; Dan Vantari
  2385.                      ; Based on a Bill Rossi par of a William Decker frm
  2386.                      ; Narada's colour map
  2387.   reset=3D1960 type=3Dformula formulafile=3Dweb.par =
  2388. formulaname=3Dbillsfv4
  2389.   function=3Dcotan/sqrt/exp
  2390.   center-mag=3D0.0206845/-0.00708526/0.9902116/1.2096 params=3D5/0 =
  2391. float=3Dy
  2392.   potential=3D256/200/0
  2393.   =
  2394. colors=3D000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZccc<7>zzz<6>00z<15>zz0<1=
  2395. 5\
  2396.   =
  2397. >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13>2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\=
  2398.  
  2399.   15>zzz<5>zvo
  2400.   }
  2401. =20
  2402.  
  2403. IceCrystals       { ; Dan Vantari
  2404.                      ; Based on a Bill Rossi par of a William Decker frm
  2405.                    =20
  2406.   reset=3D1960 type=3Dformula formulafile=3Dvar.par =
  2407. formulaname=3Dbillsfv4
  2408.   function=3Dsqrt/cos/exp
  2409.   center-mag=3D0.0206845/-0.00708526/1.27913/1.2096 params=3D6/0 =
  2410. float=3Dy
  2411.   potential=3D256/200/0
  2412.   =
  2413. colors=3D222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQ=
  2414. O\
  2415.   =
  2416. MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<2\=
  2417.  
  2418.   =
  2419. >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIAQK\=
  2420.  
  2421.   =
  2422. EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2mS6qU\=
  2423.  
  2424.   =
  2425. 6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQyiUug\=
  2426.  
  2427.   =
  2428. UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\=
  2429.  
  2430.   =
  2431. aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\=
  2432.  
  2433.   =
  2434. iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemuiouim\=
  2435.  
  2436.   =
  2437. qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_qIauMc\=
  2438.  
  2439.   =
  2440. uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi2Oi2M\=
  2441.  
  2442.   e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa
  2443.   }
  2444. =20
  2445. frm:billsfv4  {
  2446.   temp =3D pixel :
  2447.   z =3D fn1(temp^p1)
  2448.   IF (5 < z)
  2449.     temp =3D fn2(temp)
  2450.   ELSE
  2451.     temp =3D fn3(z)
  2452.   ENDIF
  2453.   z < 100
  2454.   }
  2455.  
  2456.  
  2457. ------=_NextPart_000_0052_01BE54F8.4B577D00
  2458. Content-Type: text/html;
  2459.     charset="iso-8859-1"
  2460. Content-Transfer-Encoding: quoted-printable
  2461.  
  2462. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  2463. <HTML>
  2464. <HEAD>
  2465.  
  2466. <META content=3Dtext/html;charset=3Diso-8859-1 =
  2467. http-equiv=3DContent-Type>
  2468. <META content=3D'"MSHTML 4.72.2106.6"' name=3DGENERATOR>
  2469. </HEAD>
  2470. <BODY bgColor=3D#ffffff>
  2471. <DIV>
  2472. <DIV><FONT color=3D#000000 size=3D2>Hi.</FONT></DIV>
  2473. <DIV><FONT color=3D#000000 size=3D2></FONT><FONT size=3D2>Im new to the =
  2474. list (and have=20
  2475. just had it pointed out that my browser was sending HTML format, so this =
  2476. is a=20
  2477. repeat of the above PARs, thanks).   Hope you like=20
  2478. these...</FONT></DIV>
  2479. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2480. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2481. <DIV><FONT color=3D#000000 =
  2482. size=3D2>Franjipani       {=20
  2483. ; Dan=20
  2484. Vantari<BR>          &n=
  2485. bsp;         =20
  2486. ; Based on a Bill Rossi par of a William Decker=20
  2487. frm<BR>           =
  2488.          =20
  2489. ; Narada's colour map<BR>  reset=3D1960 type=3Dformula =
  2490. formulafile=3Dweb.par=20
  2491. formulaname=3Dbillsfv4<BR>  function=3Dcotan/sqrt/exp<BR> =20
  2492. center-mag=3D0.0206845/-0.00708526/0.9902116/1.2096 params=3D5/0 =
  2493. float=3Dy<BR> =20
  2494. potential=3D256/200/0<BR> =20
  2495. colors=3D000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZ=
  2496. ccc<7>zzz<6>00z<15>zz0<15\<BR> =20
  2497. >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13&g=
  2498. t;2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\<BR> =20
  2499. 15>zzz<5>zvo<BR>  }</FONT></DIV>
  2500. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2501. <DIV><FONT color=3D#000000=20
  2502. size=3D2><BR>IceCrystals       { ; Dan=20
  2503. Vantari<BR>          &n=
  2504. bsp;         =20
  2505. ; Based on a Bill Rossi par of a William Decker=20
  2506. frm<BR>           =
  2507.         =20
  2508. <BR>  reset=3D1960 type=3Dformula formulafile=3Dvar.par=20
  2509. formulaname=3Dbillsfv4<BR>  function=3Dsqrt/cos/exp<BR> =20
  2510. center-mag=3D0.0206845/-0.00708526/1.27913/1.2096 params=3D6/0 =
  2511. float=3Dy<BR> =20
  2512. potential=3D256/200/0<BR> =20
  2513. colors=3D222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQ=
  2514. O\<BR> =20
  2515. MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<=
  2516. ;2\<BR> =20
  2517. >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIA=
  2518. QK\<BR> =20
  2519. EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2=
  2520. mS6qU\<BR> =20
  2521. 6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQ=
  2522. yiUug\<BR> =20
  2523. UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\=
  2524. <BR> =20
  2525. aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\=
  2526. <BR> =20
  2527. iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemu=
  2528. iouim\<BR> =20
  2529. qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_q=
  2530. IauMc\<BR> =20
  2531. uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi=
  2532. 2Oi2M\<BR> =20
  2533. e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa<BR>  }</FONT></DIV>
  2534. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2535. <DIV><FONT color=3D#000000 size=3D2>frm:billsfv4  {<BR>  temp =
  2536. =3D pixel=20
  2537. :<BR>  z =3D fn1(temp^p1)<BR>  IF (5 < =
  2538. z)<BR>    temp=20
  2539. =3D fn2(temp)<BR>  ELSE<BR>    temp =3D =
  2540. fn3(z)<BR> =20
  2541. ENDIF<BR>  z < 100<BR>  =
  2542. }<BR></FONT></DIV></DIV></BODY></HTML>
  2543.  
  2544. ------=_NextPart_000_0052_01BE54F8.4B577D00--
  2545.  
  2546.  
  2547. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2548. Post Message:   fractint@lists.xmission.com
  2549. Get Commands:   majordomo@lists.xmission.com "help"
  2550. Administrator:  twegner@phoenix.net
  2551. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2552.  
  2553.  
  2554. -------------------------------------------------------------------------------
  2555.  
  2556. From: Guy Marson <guy.marson@mnhn.lu>
  2557. Subject: (fractint) Tim's error
  2558. Date: 10 Feb 1999 17:40:03 +0100
  2559.  
  2560. Hi,
  2561.  
  2562. where can I find the *.frm from the "Tim's error" formula (for the Formula
  2563. Parser, type=formula)?
  2564. thanks for helping me.
  2565.  
  2566.  
  2567. cheers,
  2568.  
  2569. Guy
  2570.  
  2571.  
  2572.  
  2573.  
  2574. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2575. Post Message:   fractint@lists.xmission.com
  2576. Get Commands:   majordomo@lists.xmission.com "help"
  2577. Administrator:  twegner@phoenix.net
  2578. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2579.  
  2580.  
  2581. -------------------------------------------------------------------------------
  2582.  
  2583. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  2584. Subject: (fractint) Systems Theory
  2585. Date: 11 Feb 1999 08:58:11 GMT
  2586.  
  2587. I read a book the other day called "Systems Theory, Systems Practice" 
  2588. (now, was it by Peter Checkland or was it Steve Skidmore... I can't 
  2589. rememver...). It talks a lot about "the Science of Systems", which is 
  2590. a "Science of the consiquences of Wholeness". The basic premise 
  2591. behind this is that "the Whole is greater then the sum of its parts", 
  2592. because "the Whole represents a highter (more constrianed) level of 
  2593. organisation then the one below, having imergant properties that were 
  2594. not present below". By way of example, the book talks about the other 
  2595. sciences (Systems Theory itself is a "meta-science"?!?): "All of 
  2596. Chemistry can be decomposed into Physics, but there are properties of 
  2597. Chemistry that do not appear as a consiquence of Physics, which is 
  2598. what makes the subject worthy of study in its own right. Simularly, 
  2599. Bioligy could be decomposed into Chemistry, but of all the possible 
  2600. arrangements of chemicals possible, only a limited subset appear in 
  2601. Bioligy. This represents a higher level of organisation, which does 
  2602. not appear and does not make sense at any lower level(s)."
  2603.  
  2604. Is it just me, or does someone else here echos of Fractal Geometry in 
  2605. here? What would Mr. B. B. Mandelbrot have to say about that lot? 
  2606.  
  2607. Please note that these are not EXACT quotes. I'll have a look in the 
  2608. library and post some actual quotes (and an ISBN and author name) 
  2609. tomorrow or sometime like that.
  2610.  
  2611. Nam et ipsa scientia potestus est!
  2612. (Sir Francis Facon)
  2613. Andrew Orphi Coppin
  2614. DMU MK.
  2615.  
  2616. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2617. Post Message:   fractint@lists.xmission.com
  2618. Get Commands:   majordomo@lists.xmission.com "help"
  2619. Administrator:  twegner@phoenix.net
  2620. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2621.  
  2622.  
  2623. -------------------------------------------------------------------------------
  2624.  
  2625. From: aq936@freenet.carleton.ca (Michael Traynor)
  2626. Subject: (fractint) Re: [fractal-art] FOTD 07-02-99 (Epicycle Fantasy) (C)
  2627. Date: 11 Feb 1999 07:39:23 -0500 (EST)
  2628.  
  2629. I started the par for this one, and saved it, but when I restore it the
  2630. rest of the screen generates a blank.  It generated fine in a view-window
  2631. using boundary tracing, though.  Any ideas, help, offers to point out how
  2632. I've stupidly missed something obvious?
  2633.  
  2634. I'm running in DOS, on a 486/33, at 1024x768.
  2635.  
  2636. --
  2637. Mike Traynor
  2638.  
  2639. People who like this sort of thing will find this the sort of thing they like.
  2640.     Abraham Lincoln
  2641.  
  2642. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2643. Post Message:   fractint@lists.xmission.com
  2644. Get Commands:   majordomo@lists.xmission.com "help"
  2645. Administrator:  twegner@phoenix.net
  2646. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2647.  
  2648.  
  2649. -------------------------------------------------------------------------------
  2650.  
  2651. From: Gedeon Peteri <gedeon@InfoAve.Net>
  2652. Subject: (fractint) updated web site
  2653. Date: 11 Feb 1999 10:27:35 -0500
  2654.  
  2655. I have added two new pages of Ultra Fractal images to my Geocities web
  2656. site. I hope you enjoy your visit.
  2657.  
  2658. Gedeon
  2659.  
  2660. --
  2661. Fractals: http://www.geocities.com/~gedeonp/index.html
  2662. Member Infinite Fractal Loop
  2663. Last updated: February 11, 1999 - two new pages
  2664. Photography: http://members.xoom.com/gedeonp/index.html
  2665. Last updated: November 8, 1998
  2666.  
  2667.  
  2668.  
  2669. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2670. Post Message:   fractint@lists.xmission.com
  2671. Get Commands:   majordomo@lists.xmission.com "help"
  2672. Administrator:  twegner@phoenix.net
  2673. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2674.  
  2675.  
  2676. -------------------------------------------------------------------------------
  2677.  
  2678. From: "Jon Camp" <jon.camp@valpo.edu>
  2679. Subject: (fractint) website remake and update
  2680. Date: 11 Feb 1999 10:09:22 -0800
  2681.  
  2682. I've updated my entire site in order to get it ready for a move this weekend
  2683. to my own domain. I have also added 6 new fractals to my galleries. This
  2684. will be the last opportunity to visit it before we go offline for a week or
  2685. so to complete the move. Tell me what you think about the new layout.
  2686. Thanks.
  2687.  
  2688. Jon Camp
  2689. chaotic n-space network
  2690.  
  2691. main page: http://www.valpo.edu/home/student/jcamp/index.html
  2692. fractals page: http://www.valpo.edu/home/student/jcamp/html/fractals.html
  2693. philosophy page:
  2694. http://www.valpo.edu/home/student/jcamp/html/philosophy.html
  2695.  
  2696.  
  2697.  
  2698. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2699. Post Message:   fractint@lists.xmission.com
  2700. Get Commands:   majordomo@lists.xmission.com "help"
  2701. Administrator:  twegner@phoenix.net
  2702. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2703.  
  2704.  
  2705. -------------------------------------------------------------------------------
  2706.  
  2707. From: Tom Conally <conally@netpath.net>
  2708. Subject: Re: (fractint) website remake and update
  2709. Date: 11 Feb 1999 14:58:18 -0500
  2710.  
  2711. At 10:09 AM 2/11/1999 -0800, you wrote:
  2712. > Tell me what you think about the new layout.
  2713. >Thanks.
  2714.  
  2715. I think it's a super layout, wonderful color coordination, and overall one
  2716. of the best sites I've seen in a long time.
  2717. Thanks for sharing.
  2718. Tom Conally
  2719. In every boomerang there is a perfect throw.
  2720. Your life, Grasshopper, is to practice
  2721. till you find that throw
  2722. and become one with that boomerang!
  2723. http://www.angelfire.com/nc/conally  " Flying Frog Boomerangs"
  2724. http://members.tripod.com/~afractal   " Flying Frogs Fractals"
  2725. http://www.netpath.net/~conally     "Paradise"
  2726.  
  2727. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2728. Post Message:   fractint@lists.xmission.com
  2729. Get Commands:   majordomo@lists.xmission.com "help"
  2730. Administrator:  twegner@phoenix.net
  2731. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2732.  
  2733.  
  2734. -------------------------------------------------------------------------------
  2735.  
  2736. From: James Polley <james_p@iname.com>
  2737. Subject: (fractint) What's up with the list?
  2738. Date: 12 Feb 1999 06:12:02 +1000
  2739.  
  2740. Hi! I was subscribed to the list several years ago, and I got used to recieving
  2741. 20-30 messages each day. I've now re-subscribed, and I'm only getting one or two
  2742. messages a day. Whats up?
  2743.  
  2744. -- 
  2745. James Polley            |  :-j <>< 'For God has not given
  2746. 07 5595 4643            |  us a spirit of fear, but of
  2747. C/- Student Residences  |  power, and of love, and of a 
  2748. Bond University, 4229   |  sound mind' 2 Tim 1:7
  2749.  
  2750. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2751. Post Message:   fractint@lists.xmission.com
  2752. Get Commands:   majordomo@lists.xmission.com "help"
  2753. Administrator:  twegner@phoenix.net
  2754. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2755.  
  2756.  
  2757. -------------------------------------------------------------------------------
  2758.  
  2759. From: "Ron Barnett" <rbarnett@telenet.net>
  2760. Subject: RE: (fractint) What's up with the list?
  2761. Date: 11 Feb 1999 15:35:42 -0500
  2762.  
  2763. Some of the traffic has move to the UltraFractal list
  2764.  
  2765. > -----Original Message-----
  2766. > From: owner-fractint@lists.xmission.com
  2767. > [mailto:owner-fractint@lists.xmission.com]On Behalf Of James Polley
  2768. > Sent: Thursday, February 11, 1999 3:12 PM
  2769. > To: Fractint List
  2770. > Subject: (fractint) What's up with the list?
  2771. > Hi! I was subscribed to the list several years ago, and I got 
  2772. > used to recieving
  2773. > 20-30 messages each day. I've now re-subscribed, and I'm only 
  2774. > getting one or two
  2775. > messages a day. Whats up?
  2776. > -- 
  2777. > James Polley            |  :-j <>< 'For God has not given
  2778. > 07 5595 4643            |  us a spirit of fear, but of
  2779. > C/- Student Residences  |  power, and of love, and of a 
  2780. > Bond University, 4229   |  sound mind' 2 Tim 1:7
  2781. > --------------------------------------------------------------
  2782. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  2783. > Post Message:   fractint@lists.xmission.com
  2784. > Get Commands:   majordomo@lists.xmission.com "help"
  2785. > Administrator:  twegner@phoenix.net
  2786. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2787.  
  2788. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2789. Post Message:   fractint@lists.xmission.com
  2790. Get Commands:   majordomo@lists.xmission.com "help"
  2791. Administrator:  twegner@phoenix.net
  2792. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2793.  
  2794.  
  2795. -------------------------------------------------------------------------------
  2796.  
  2797. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  2798. Subject: (fractint) Re: [fractal-art] FOTD 07-02-99 (Epicycle Fantasy) (C)
  2799. Date: 11 Feb 1999 17:20:21 -0500
  2800.  
  2801. Hi Mike,
  2802.  
  2803. >> I started the par for this one, and saved it, but when I restore it th=
  2804. e
  2805. >> rest of the screen generates a blank.  It generated fine in a
  2806. >> view-window using boundary tracing, though.  Any ideas, help, offers t=
  2807. o
  2808. >> point out how I've stupidly missed something obvious?
  2809.  
  2810.   You probably have two different versions of the formula.  The formula J=
  2811. im
  2812. posted with his par is:
  2813.  
  2814. frm:MandelbrotMix4 {; Jim Muth
  2815. a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2), g=3D1/f,
  2816. h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j, k=3Dreal(p3)+1,
  2817. l=3Dimag(p3)+100, c=3Dfn1(pixel):
  2818. z=3Dk*((a*(z^b))+(d*(z^f)))+c,
  2819. |z| < l
  2820. }
  2821.  
  2822.   so, when you start the par in Fractint, Fractint uses the formula that =
  2823. is
  2824. in the par file.  If you restore the image, Fractint will find this one i=
  2825. n
  2826. _m.frm:
  2827.  
  2828. MandelbrotMix4 {; Jim Muth
  2829. c=3Dpixel, a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2),
  2830. g=3D1/f, h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j:
  2831. z=3D(a*(z^b))+(d*(z^f))+c,
  2832. |z| <=3D 100
  2833.   ;SOURCE: pink.par
  2834. }
  2835.  
  2836.   Cheers,
  2837.  
  2838.         - Sylvie
  2839.  
  2840. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2841. Post Message:   fractint@lists.xmission.com
  2842. Get Commands:   majordomo@lists.xmission.com "help"
  2843. Administrator:  twegner@phoenix.net
  2844. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2845.  
  2846.  
  2847. -------------------------------------------------------------------------------
  2848.  
  2849. From: "Tim Wegner" <twegner@phoenix.net>
  2850. Subject: (fractint) Anyone use Red Hat Linux?
  2851. Date: 11 Feb 1999 16:38:45 -0600
  2852.  
  2853. Does anyone have experience compiling Xfractint with Red Hat? I 
  2854. use Slakware Linux and have no problems (but then again I only 
  2855. compile the developer version these days.) 
  2856.  
  2857.  I received the following message:
  2858.  
  2859. Hello!
  2860.  
  2861. I have downloaded Xfractint for Linux, but when I try to compile it I 
  2862. get several error messages (see below). I am using Red Hat Linux 
  2863. 5.2 (Apollo) runnning on Cyrix 686. I have tried to adjust the source 
  2864. according to the guidelines for Linux/Apollo, which are included in 
  2865. the "makefile", but without success. I would be much obliged for 
  2866. any suggestions and help.
  2867.  
  2868. Thanks in advance.
  2869.  
  2870. Best regards,
  2871. Andrej Lajovic
  2872.  
  2873. Error messages:
  2874.  
  2875. unixscr.c: In function `UnixInit':
  2876. unixscr.c:244: `SignalHandler' undeclared (first use this function)
  2877. unixscr.c:244: (Each undeclared identifier is reported only once
  2878. unixscr.c:244: for each function it appears in.)
  2879. unixscr.c:244: parse error before `goodbye'
  2880. unixscr.c: In function `shell_to_dos':
  2881. unixscr.c:2071: `SignalHandler' undeclared (first use this function)
  2882. unixscr.c:2071: parse error before `sigint'
  2883. unixscr.c:2076: `sigint' undeclared (first use this function)
  2884. unixscr.c:2076: parse error before `signal'
  2885. unixscr.c:2124: parse error before `sigint'
  2886. unixscr.c: In function `schedulealarm':
  2887. unixscr.c:2149: `SignalHandler' undeclared (first use this function)
  2888. unixscr.c:2149: parse error before `setredrawscreen'
  2889. make: *** [unixscr.o] Error 1
  2890.  
  2891.  
  2892.  
  2893. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2894. Post Message:   fractint@lists.xmission.com
  2895. Get Commands:   majordomo@lists.xmission.com "help"
  2896. Administrator:  twegner@phoenix.net
  2897. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2898.  
  2899.  
  2900. -------------------------------------------------------------------------------
  2901.  
  2902. From: "Mike and Linda Allison" <gumbycat@ix.netcom.com>
  2903. Subject: Re: (fractint) What's up with the list?
  2904. Date: 11 Feb 1999 15:41:49 -0800
  2905.  
  2906. That happens every now and then, James.  I've never figured out why,
  2907. either, but rest assured, traffic will pick up eventually, and
  2908. spontaneously.
  2909.  
  2910. It may be because the shareware version of Ultrafractal was just
  2911. released, and everyone is enamored of it and otherwise occupied!  When
  2912. the newness wears off a little, people will start using all of their
  2913. programs again and traffic will increase.  (Ultrafractal and Fractint
  2914. are a perfect marriage, in my opinion.  I generate a lot of my images in
  2915. Fractint, then convert them to Ultrafractal for layering.  I doubt that
  2916. Fractint will ever lose it's audience permanently!)
  2917.  
  2918. Linda
  2919.  
  2920. -----Original Message-----
  2921.  
  2922.  
  2923. >Hi! I was subscribed to the list several years ago, and I got used to
  2924. recieving
  2925. >20-30 messages each day. I've now re-subscribed, and I'm only getting
  2926. one or two
  2927. >messages a day. Whats up?
  2928. >
  2929. >--
  2930. >James Polley            |  :-j <>< 'For God has not given
  2931. >07 5595 4643            |  us a spirit of fear, but of
  2932. >C/- Student Residences  |  power, and of love, and of a
  2933. >Bond University, 4229   |  sound mind' 2 Tim 1:7
  2934. >
  2935. >--------------------------------------------------------------
  2936. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  2937. >Post Message:   fractint@lists.xmission.com
  2938. >Get Commands:   majordomo@lists.xmission.com "help"
  2939. >Administrator:  twegner@phoenix.net
  2940. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2941. >
  2942.  
  2943.  
  2944. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2945. Post Message:   fractint@lists.xmission.com
  2946. Get Commands:   majordomo@lists.xmission.com "help"
  2947. Administrator:  twegner@phoenix.net
  2948. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2949.  
  2950.  
  2951. -------------------------------------------------------------------------------
  2952.  
  2953. From: Ian Kaplan <ijk@force.stwing.upenn.edu>
  2954. Subject: Re: (fractint) Anyone use Red Hat Linux?
  2955. Date: 11 Feb 1999 19:13:33 -0500 (EST)
  2956.  
  2957.  
  2958. > Does anyone have experience compiling Xfractint with Red Hat? I 
  2959. > use Slakware Linux and have no problems (but then again I only 
  2960. > compile the developer version these days.) 
  2961.  
  2962. I'll try and test it over the weekend.
  2963.  
  2964.  
  2965. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2966. Post Message:   fractint@lists.xmission.com
  2967. Get Commands:   majordomo@lists.xmission.com "help"
  2968. Administrator:  twegner@phoenix.net
  2969. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2970.  
  2971.  
  2972. -------------------------------------------------------------------------------
  2973.  
  2974. From: "Zina Costiner" <zinacostiner@worldnet.att.net>
  2975. Subject: (fractint) simple source code needed
  2976. Date: 11 Feb 1999 19:25:26 -0500
  2977.  
  2978. Hi fractal-friends,
  2979.  
  2980. I have a student to prepare for the Science Fair on fractals.
  2981. The guy is in the 7th grade.
  2982.  
  2983. Could anyone  help me with any ideas or simple source code, please.
  2984. I would appreciate very much any suggestions.
  2985.  
  2986. Warm regards,
  2987.  
  2988. Zina Costiner
  2989. E-mail: zinacostiner@worldnet.att.net
  2990.  
  2991.  
  2992.  
  2993.  
  2994. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2995. Post Message:   fractint@lists.xmission.com
  2996. Get Commands:   majordomo@lists.xmission.com "help"
  2997. Administrator:  twegner@phoenix.net
  2998. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2999.  
  3000.  
  3001. -------------------------------------------------------------------------------
  3002.  
  3003. From: "Koppens,Ton" <Ton_Koppens.rxnl@eur.xerox.com>
  3004. Subject: (fractint) PAR & FRM
  3005. Date: 12 Feb 1999 12:53:32 +0000 (GMT)
  3006.  
  3007. Some pars for you to enjoy.
  3008. Have a nice weekend all.
  3009.  
  3010. Ton
  3011.  
  3012. ===============================================================================
  3013.  
  3014. 98091810           { ; CalcTime   0:01:11.85 at 800x600 on a P166
  3015.                      ; Image Copyright 18 Sep 1998 by Ton Koppens
  3016.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3017.   reset=1960 type=formula formulafile=_b.frm
  3018.   formulaname=bills_diff_delt1 function=cosh passes=3
  3019.   center-mag=-0.250313/0.651085/2.73224 params=1/0.5/1/1.5/2.5/1.5
  3020.   float=y logmap=old potential=25/45/25 biomorph=0
  3021.   colors=0008jo<29>1lrDin<28>iRSCin<38>4ZkCin<56>e6MDem<6>M7bCim<39>fb5Cin\
  3022.   <15>MYgEinNYg<19>ZJZAin<6>8jo
  3023.   }
  3024.  
  3025. 98092103           { ; CalcTime   0:00:15.05 at 800x600 on a P166
  3026.                      ; Image Copyright 21 Sep 1998 by Ton Koppens
  3027.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3028.   reset=1960 type=formula formulafile=_b.frm
  3029.   formulaname=bills_diff_delt1 function=sin
  3030.   center-mag=+1.12944802776051500/+0.06976800198533709/58.36455/1.2065
  3031.   params=1/1/1/1/2/3 float=y potential=20/45/18
  3032.   colors=000MWWITT_ys9xkxzo<3>py4wvs<7>WR0zuw<8>zBPwtv<3>iUdxux<8>c9evwx<1\
  3033.   3>2IVxxv<9>_ZBktxsrnXmvIgt2`q<5>X2_<6>RP8QT4RT6<12>e_d<7>GKd<6>kyi<11>7y\
  3034.   z<3>tZm<6>ZpmVslQsf<4>0tA<10>9Ry<8>ojo<14>tNS<6>_0I<8>ASH7WG7YG<10>EuI<5\
  3035.   >nIX<9>VJpSKrROr<4>Mgq<8>87Jghgwxx<9>PZZ
  3036.   }
  3037.  
  3038. 98092124           { ; CalcTime   0:00:43.17 at 800x600 on a P166
  3039.                      ; Image Copyright 21 Sep 1998 by Ton Koppens
  3040.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3041.   reset=1960 type=formula formulafile=_b.frm
  3042.   formulaname=bills_diff_delt1 function=sqrt passes=3
  3043.   center-mag=0.520651/0.0300501/1.893939 params=1.5/1/0.5/1/2/3
  3044.   float=y potential=30/45/25
  3045.   colors=0007DM<4>EAUFAVIFW<9>hwZ<10>dme_Zmdmf<15>`_ocHr<22>`_o2VZ<5>W_mxx\
  3046.   k<7>bao8i0<3>WaeW0D<29>`ZnB3B<10>ZYl4DE<11>ZZm0Qg<18>__oQ2y<7>_XpQY0<12>\
  3047.   `_lQNa<26>`_o4Ba<20>_ZohHb0_e<11>P_l
  3048.   }
  3049.  
  3050. 98111003           { ; 98111002 with other colors
  3051.                      ; CalcTime   0:01:38.86 at 800x600 on a P166
  3052.                      ; Image Copyright 10 Nov 1998 by Ton Koppens
  3053.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3054.   reset=1960 type=tim's_error function=sin passes=t
  3055.   center-mag=-2.00626995774959000/-1.36844021516822000/4222.748/3.1741/30/\
  3056.   55.132 params=1.8/2 float=y bailout=55 decomp=128 biomorph=1
  3057.   colors=RNHfff<8>www<31>000<2>543765986BA7DB8<24>zqb<26>A8687565444322200\
  3058.   0<31>www<31>000<11>NJEPLFTPI<16>zqb<20>MIEKHDIFCGEAEC9<6>000<21>ddd
  3059.   }
  3060.  
  3061. 98111005           { ; uses 1star2.map by Kathy Roth
  3062.                      ; CalcTime   0:04:14.26 at 800x600 on a P166
  3063.                      ; Image Copyright 10 Nov 1998 by Ton Koppens
  3064.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3065.   reset=1960 type=formula formulafile=_s.frm
  3066.   formulaname=starFlexBalls_Mand function=atanh passes=t
  3067.   center-mag=-1.11022e-016/8.32667e-017/3.875969
  3068.   params=2.5/0.5/0.01/0.05 float=y bailout=55 decomp=256 biomorph=1
  3069.   colors=000KSQajQ<27>AG6zqCzqCspIzqC<19>qFApD9pD9<2>pD9wcB<7>qGApD9oC9<2>\
  3070.   l68f87`A7QE6wxz<24>nFPmDNouy<26>JfuHetHdr<4>FalF`kE_iEZhEYf<8>BUWBUVBUUB\
  3071.   TTASRASR<37>4AA4CCC`V<8>AVQAUP9TP9SO9SN9RN<13>5GE8JD8ICCJ7<21>7D57C57C57\
  3072.   B57B56A4EM8
  3073.   }
  3074.  
  3075. 98111006           { ; uses found_object2.map by Kathy Roth
  3076.                      ; CalcTime   0:06:24.24 at 800x600 on a P166
  3077.                      ; Image Copyright 10 Nov 1998 by Ton Koppens
  3078.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3079.   reset=1960 type=formula formulafile=_s.frm
  3080.   formulaname=starFlexBalls_Mand function=atanh passes=t
  3081.   center-mag=-1.18780475594493100/+0.11247112466241700/46.04221/2.1293
  3082.   params=2.5/0.5/0.01/0.05 float=y bailout=55 decomp=256 biomorph=1
  3083.   colors=xn_VX_<4>los<13>SNCQL9QL9QL8QK7<24>tjWukXvlYxn_xn_xn_<29>RL7QK6QK\
  3084.   7QL9<2>UQHVSKXUO<9>los<9>788<3>222000001<10>21D22E22F23G23I<7>37R37S48U5\
  3085.   8W<4>7Cd8De8De<27>SYvSZvT_wT_wSZv<27>BGfAFe9Ed8Dc7Cb<10>24K23J12H01F<8>0\
  3086.   19018017016016015014003001001<7>STW cyclerange=0/255
  3087.   }
  3088.  
  3089. 98122009           { ; CalcTime   0:04:31.49 at 800x600 on a P166
  3090.                      ; Image Copyright 20 Dec 1998 by Ton Koppens
  3091.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3092.   reset=1960 type=tim's_error function=tanh
  3093.   center-mag=+1.30632695141084400/+0.94503331193235840/1557.097/1/0/49.559
  3094.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  3095.   bailout=250 decomp=256 biomorph=1; colors=@jacco180.map
  3096.   colors=000<7>00H10K30K<5>F0K<5>303000000<2>203304304404<31>W04X04Z03_02a\
  3097.   00<6>jR0<12>M20K00J00<13>204005005<9>002002001100100000<15>D00<2>G0B<9>z\
  3098.   zz<9>wa0wc0<7>U00<7>000<5>40850A509<6>102000100<21>c00<14>80950A50D<7>00\
  3099.   c<5>0Pc0Uc0Wd<5>0hj000kkk
  3100.   }
  3101.  
  3102. 98122011           { ; CalcTime   0:04:00.52 at 800x600 on a P166
  3103.                      ; Image Copyright 20 Dec 1998 by Ton Koppens
  3104.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3105.   reset=1960 type=tim's_error function=tanh
  3106.   center-mag=+1.30634044644263200/+0.94560822705900870/84185.61/1/0/49.559
  3107.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  3108.   bailout=250 decomp=256 biomorph=1
  3109.   colors=00030K<5>F0K<5>303000000<2>203304304404<31>W04X04Z03_02a00<6>jR0<\
  3110.   12>M20K00J00<13>204005005<9>002002001100100000<15>D00<2>G0B<9>zzz<9>wa0w\
  3111.   c0<7>U00<7>000<5>40850A509<6>102000100<21>c00<14>80950A50D<7>00c<5>0Pc0U\
  3112.   c0Wd<5>0hj000kkk002<7>10K
  3113.   }
  3114.  
  3115. 98122108           { ; CalcTime   0:01:46.56 at 800x600 on a P166
  3116.                      ; Image Copyright 21 Dec 1998 by Ton Koppens
  3117.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3118.   reset=1960 type=tim's_error function=tanh
  3119.   center-mag=-1.30059274107898900/-0.75024965216700480/147.2379
  3120.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  3121.   bailout=250 decomp=256 biomorph=1
  3122.   colors=GC7qompopspnqpqtqosqsvsqtsturoutvtqnvuwsqmxwyspmxwxrplwvwrokvuuqo\
  3123.   juttqniusrpmhtsqomhsroolgrqnnlfrpmnkeqokmkdpojljconhljbomgkibnlekhamkdjh\
  3124.   `ljbig_kibigZkhahfYjh`hfYig_geXigZgeWhfYfdVhfYecUgeXecTgeWdbTfdVdbSecUca\
  3125.   RecTbaQdbTb`PdbSa`OcaRa_NbaQ`ZNb`P_ZMa`O_YLa_NZYK`ZNZXJ_ZMYXI_YLZXJ`YM`X\
  3126.   LaYNbXNbYOdYPdXQeYQeXRgYSfXSiYUgXTkZW<7>Z9OX9NU8L<8>L6FG6BJ5EA56H5C441H8\
  3127.   A772AC2GF4DG1<5>MU0OX0QY2<15>wxc<2>pqZnoYjkWjjVefSefS`aP`aPWWLXXMRRISTJL\
  3128.   MEOOGGGBJJDBB7EFA664AA7000554000<51>b`_b`_dbadb`ecbecbfddgecgeehfdiggjgf\
  3129.   jhhkigkijmjilkknljnlmpmkomn
  3130.   }
  3131.  
  3132. 98122110           { ; CalcTime   0:02:45.49 at 800x600 on a P166
  3133.                      ; Image Copyright 21 Dec 1998 by Ton Koppens
  3134.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3135.   reset=1960 type=tim's_error function=tanh
  3136.   center-mag=-1.30551157479612100/-0.74630387208600610/856.0342
  3137.   params=1.2178727682762/0.4823488684686834 float=y maxiter=647
  3138.   bailout=250 decomp=256 biomorph=1
  3139.   colors=GC7qpqtqosqsvsqtsturoutvtqnvuwsqmxwyspmxwxrplwvwrokvuuqojuttqnius\
  3140.   rpmhtsqomhsroolgrqnnlfrpmnkeqokmkdpojljconhljbomgkibnlekhamkdjh`ljbig_ki\
  3141.   bigZkhahfYjh`hfYig_geXigZgeWhfYfdVhfYecUgeXecTgeWdbTfdVdbSecUcaRecTbaQdb\
  3142.   Tb`PdbSa`OcaRa_NbaQ`ZNb`P_ZMa`O_YLa_NZYK`ZNZXJ_ZMYXI_YLZXJ`YM`XLaYNbXNbY\
  3143.   OdYPdXQeYQeXRgYSfXSiYUgXTkZW<7>Z9OX9NU8L<8>L6FG6BJ5EA56H5C441H8A772AC2GF\
  3144.   4DG1<5>MU0OX0QY2<15>wxc<2>pqZnoYjkWjjVefSefS`aP`aPWWLXXMRRISTJLMEOOGGGBJ\
  3145.   JDBB7EFA664AA7000554000<51>b`_b`_dbadb`ecbecbfddgecgeehfdiggjgfjhhkigkij\
  3146.   mjilkknljnlmpmkomnqompopspn
  3147.   }
  3148.  
  3149. 99011803           { ; CalcTime   0:00:20.32 at 800x600 on a P166
  3150.                      ; Image Copyright 18 Jan 1999 by Ton Koppens
  3151.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3152.   reset=1960 type=barnsleym3
  3153.   center-mag=-0.00675917/0.437857/21.92356/1.7679/0/-10.259 params=0/0
  3154.   float=y
  3155.   colors=gWVMRE<3>4A0<12>ovo<11>3AD<12>llz<11>06M<11>uzz<2>uvvtuutsssrq<14\
  3156.   >lWUlVSkTQjSP<14>I98G76C33700<10>pyb<12>4A0<11>7JH8KJ8LK9MMANN<21>llz<10\
  3157.   >05Q<12>zzz<19>pdbocana_m`ZkZYiYWeUT<12>H9AF78B44700<10>sve<6>QVI
  3158.   }
  3159.  
  3160. 99011804           { ; CalcTime   0:00:09.45 at 800x600 on a P166
  3161.                      ; Image Copyright 18 Jan 1999 by Ton Koppens
  3162.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3163.   reset=1960 type=barnsleym3
  3164.   center-mag=-0.01799258272814384/+0.45237566607450940/202.3957/2.6259/0/1\
  3165.   9.9 params=0/0 float=y
  3166.   colors=0003U92S91R8<3>0L60J61I51H5<2>5D47B39A3B93D82<4>P41S31U21X20Z10a1\
  3167.   0<3>i00j00l00m00n00<3>o10o20n20<2>k50i60h71f81d91<4>TF2QG3OH3LJ3JK4GM4EN\
  3168.   4CP59Q58S66T6<3>1Z80`80a90c90dA<3>3jC4kD6lD<2>BpFDqGGrH<5>VwKXwL_xMaxNcy\
  3169.   NfyOgyPiyP<3>nySoyToxToxUowV<3>luYktYisZ<4>_naXlbVkcSjcQidNgd<4>B`g9Zh7Y\
  3170.   i5Wi4Vj3Tj1Sk<4>0Km0Jm1Hn2Gn3Fo<5>E8qG7qJ6q<3>T2rW2rY1r`1sb0s<2>h0sj0sk0\
  3171.   sl0sm0sn0s<2>o1so2sn2sn3s<2>j5ri6rg7re8r<4>UEqSFpPHpMIp<4>APn8Rm7Sm5Um<2\
  3172.   >1Zk0_k0aj<2>0ei0fh1hg2ig<2>6me8neAodCpcFrcHsb<5>WwZZxY`xYbxXeyW<4>myTny\
  3173.   SnyR<2>oxPowPnvOnvN<2>jsLhsLfrKdqJboJ<3>TkGRiFOhFMfEJeE<4>8ZB6XA5WA
  3174.   }
  3175.  
  3176. 99011806           { ; CalcTime   0:00:07.04 at 800x600 on a P166
  3177.                      ; Image Copyright 18 Jan 1999 by Ton Koppens
  3178.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3179.   reset=1960 type=barnsleym3
  3180.   center-mag=0.8799/-0.0318387/1.673352/1.3299 params=-1/0.5 float=y
  3181.   maxiter=647 bailoutest=manr outside=atan
  3182.   colors=00001A<7>058167167277286<8>AG4BH4DI4<17>bX0cY0eZ0fZ0g_0i_0<7>rb0s\
  3183.   b0sb0<2>vb0va0wa0wa0wa0<6>xZ1xY1wX1wX1<7>rQ2qP3oO3<5>hJ4gI5fH5dG5cF5aE6<\
  3184.   9>N69M59K49J4AI3AG3A<5>90C80D70D60D50E<3>20F10F10G10G<5>03I03I04J05J15J1\
  3185.   6J<4>4AL5BL6CL7DM8DM9EM<4>FJNGKOHLOJMOKNOLOP<9>_WQaXQbYQdYQeZRgZR<4>maRn\
  3186.   aRoaRpaRqbR<3>ubRubRvbRvaRwaR<8>xYQxYQwXQ<5>tSPsROrROqQOpPO<6>hIMfHMeGMc\
  3187.   FLbEL<7>R7JP7IO6IN5I<4>F2GE2GD1GC1FB1F<3>60E50D50D<2>20C20C10B10B01B
  3188.   }
  3189.  
  3190. 99013101           { ; uses migold.map
  3191.                      ; CalcTime   0:00:55.15 at 800x600 on a P166
  3192.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  3193.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3194.   reset=1960 type=formula formulafile=_b.frm formulaname=bills_wonder
  3195.   function=tanh
  3196.   center-mag=+1.43604505632040000/-0.03831385642737881/124.1399/1.6782/0/-\
  3197.   10.795 params=0.188615286/1/0.9897812/2/11/3 float=y maxiter=647
  3198.   decomp=256 biomorph=1
  3199.   colors=0If0If000<7>eWJ<23>111<46>pdOrePreP<62>511511621<60>qdOrePqdO<22>\
  3200.   SD4QB3RC4<14>B53942942942842
  3201.   }
  3202.  
  3203. 99013102           { ; CalcTime   0:02:16.10 at 800x600 on a P166
  3204.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  3205.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3206.   reset=1960 type=formula formulafile=_b.frm formulaname=bills_wonder
  3207.   function=tanh center-mag=0/0/0.6666667 params=0.5/2/0.2/1/20/40
  3208.   float=y maxiter=647 decomp=256 biomorph=1
  3209.   colors=XBBYKK<4>WKLnYYWKL<5>ULMjVWULN<3>SMOSMOTNOhUVVOP<5>`RSfSTbST<5>hV\
  3210.   VdRRjWW<5>pZZaPPr__<3>vaat``sZ_dQOqXX<5>iQQ_KIgNO<5>`GHcMIYEF<5>R78gPIQ5\
  3211.   6<5>XB8kRIZD9<5>eJCoUIgKD<5>nQFsWIpSG<6>xZJz_KyYJ<12>j93i72i73i84i95<14>\
  3212.   K9CI9DH8C<3>D38<12>oZl<5>oampbmpcmpdnpdn<18>uruvsuvtvwuvwuw<4>zzzZBB`CBc\
  3213.   DBWDFjFC<5>hFDbIJhGD<5>fGEiNNeGF<5>dHGqSRcHG<5>bIHsXWaIH<5>`JIvaa_JJ<5>Y\
  3214.   JKr__YKK
  3215.   }
  3216.  
  3217. 99013103           { ; CalcTime   0:00:47.79 at 800x600 on a P166
  3218.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  3219.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3220.   reset=1960 type=formula formulafile=_b.frm formulaname=bills_wonder
  3221.   function=tanh center-mag=-3.33067e-016/2.22045e-016/2.73224
  3222.   params=0.5/2/0.2/1/20/40 float=y maxiter=647 decomp=256 biomorph=1
  3223.   colors=JENW8H<31>yxxzzzzyy<34>ZIJYGHYHH<21>nia<14>H78E45E34F23<5>C44B55A\
  3224.   55966966<44>mX5<11>ID8FC9CA998AA9C<13>OMTQNVPMU<5>LGOKFOJDM<8>B4DA3CB4D<\
  3225.   10>VFOXGP_HRbHSeIUdKTcKTbLS<6>f6Og3Nf3N<6>X4GV5FV5FV6G
  3226.   }
  3227.  
  3228. 99013104           { ; uses migold.map
  3229.                      ; CalcTime   0:01:47.37 at 800x600 on a P166
  3230.                      ; Image Copyright 31 Jan 1999 by Ton Koppens
  3231.                      ; e-mail:Ton_Koppens.RXNL@eur.xerox.com
  3232.   reset=1960 type=formula formulafile=_b.frm
  3233.   formulaname=bills_xy-trade6 function=tanh/sqr/sinh
  3234.   center-mag=0/0/0.6666667 params=1/0.5/1/0.5/10/20 float=y
  3235.   maxiter=647 decomp=256 biomorph=1
  3236.   colors=0If0If000<7>eWJ<23>111<46>pdOrePreP<62>511511621<60>qdOrePqdO<22>\
  3237.   SD4QB3RC4<14>B53942942942842
  3238.   }
  3239.  
  3240. FRM:bills_diff_delt1  { ; Apr-13-98
  3241.                    ; p1 = offset for y var
  3242.                    ; real p2 = base real exponent
  3243.                    ; imag p2 = base imag exponent
  3244.                    ; real p3 = exponent real delta
  3245.                    ; imag p3 = exponent imag delta
  3246.                    ;
  3247.   c = x = pixel, y = pixel + p1
  3248.   splus = real(p2) + real(p3) + flip(imag(p2) + imag(p3))
  3249.   sminus = real(p2) - real(p3) + flip(imag(p2) - imag(p3)):
  3250.   xtemp = x^splus +c
  3251.   x = fn1(xtemp)
  3252.   ytemp = y^sminus +c
  3253.   y = fn1(ytemp)
  3254.   d = |x-y|
  3255.   z = d^2
  3256.   |z| < 2
  3257.   ;SOURCE: 180998.frm
  3258. }
  3259.  
  3260. FRM:starFlexBalls_Mand {;adapted from Paul Carlson by Kathy Roth
  3261. ; Copyright (c) Paul W. Carlson, 1998
  3262.     ; p1 = radius of center of ring (0.01 to 10)
  3263.     ; p2 = one half thickness of ring (0.01 to p1)
  3264.     ;
  3265.     c=log(sqr(sqr(pixel))*pixel)*0.2
  3266.     w = z = iter = bailout = 0
  3267.     d0 = p1 + p2
  3268.     d1 = 0.382683432365 * p1
  3269.     d2 = 0.923879532511 * p1
  3270.     dsqd = d0 * d0 + p1 * p1 - (d0 + d0) * d2
  3271.     :
  3272.      w2=fn1(w)+c
  3273.     w=c*(1-w2*w2)/(1+w2*w2)
  3274.     ;
  3275.     IF ((abs(cabs(w) - p1) < p2) && iter > 0)
  3276.  bailout = 1
  3277.  wr = real(w), wi = imag(w)
  3278.  awr = abs(wr), awi = abs(wi)
  3279.  IF (awr >= awi)
  3280.      dist = (awr - d2) * (awr - d2) + (awi - d1) * (awi - d1)
  3281.      adjust = 1
  3282.  ELSE
  3283.      dist = (awr - d1) * (awr - d1) + (awi - d2) * (awi - d2)
  3284.      adjust = 0
  3285.  ENDIF
  3286.  IF     (wr >= 0 && wi >= 0)
  3287.      range_num = 1 - adjust
  3288.  ELSEIF (wr < 0 && wi >= 0)
  3289.      range_num = 2 + adjust
  3290.  ELSEIF (wr < 0 && wi < 0)
  3291.      range_num = 5 - adjust
  3292.  ELSE
  3293.      range_num = 6 + adjust
  3294.  ENDIF
  3295.  ratio = sqrt(dist / dsqd)
  3296.  z = 29 * ratio + range_num * 30 + 1
  3297.     ENDIF
  3298.     iter = iter + 1
  3299.     z = z - iter
  3300.     bailout == 0 && |w| < 1000
  3301.   ;SOURCE: 281098.frm
  3302. }
  3303.  
  3304. FRM:bills_wonder  {
  3305.   z = 1/pixel, a = real(p1), b = imag(p1):
  3306.   ztemp = z^a - z^b
  3307.   z = (fn1(ztemp)^p2)/z
  3308.   |z| < real(p3)
  3309.   ;SOURCE: 061098.frm
  3310. }
  3311.  
  3312. FRM:bills_xy-trade6  {
  3313.   a = real(p1), b = imag(p1)
  3314.   c = real(p2), d = imag(p2)
  3315.   e = real(p3), f = imag(p3)
  3316.   z = pixel+c/pixel
  3317.   zold = pixel^e:
  3318.   x = (real(z)-real(zold))^a
  3319.   y = (imag(z)-imag(zold))^b
  3320.   zold = fn3(z)
  3321.   z = (y +flip(x))
  3322.   z = ( (fn1(z)) - (fn2(zold)) )^d
  3323.   |z| < f
  3324.   ;SOURCE: 281098.frm
  3325. }
  3326.  
  3327. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3328. Post Message:   fractint@lists.xmission.com
  3329. Get Commands:   majordomo@lists.xmission.com "help"
  3330. Administrator:  twegner@phoenix.net
  3331. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3332.  
  3333.  
  3334. -------------------------------------------------------------------------------
  3335.  
  3336. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  3337. Subject: Re: (fractint) What's up with the list?
  3338. Date: 12 Feb 1999 14:25:11 +0100
  3339.  
  3340. I hope so. I joined april 98, in the middle of a text editor war :)
  3341. Lesse... there were Kragen (still think it's too bad he left), Peter Gavin,
  3342. Paul Carlson, Steve 'SKarl52884', Paul Derbyshire, Jiho Kim, Linda Allison,
  3343. Jon Camp, 'davides', Christian Strik :), Paul N. Lee, Wizzle (where's she
  3344. been??), ....
  3345.  
  3346. There have been days we had over 60 messages.... now it takes about 60 days
  3347. to receive one message :)
  3348.  
  3349. --
  3350.  
  3351. Dean-Christian Strik
  3352.    ICQ: 11760568
  3353.  dean2@bigfoot.com
  3354. cstrik.isg@hetnet.nl
  3355.  
  3356. Real programmers like vending machine popcorn. Coders pop it in the
  3357. microwave oven. Real programmers use the heat given off by the CPU. They can
  3358. tell what job is running just by listening to the rate of popping.
  3359.  
  3360.  
  3361. -----Original Message-----
  3362.  
  3363.  
  3364. >That happens every now and then, James.  I've never figured out why,
  3365. >either, but rest assured, traffic will pick up eventually, and
  3366. >spontaneously.
  3367.  
  3368.  
  3369.  
  3370.  
  3371. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3372. Post Message:   fractint@lists.xmission.com
  3373. Get Commands:   majordomo@lists.xmission.com "help"
  3374. Administrator:  twegner@phoenix.net
  3375. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3376.  
  3377.  
  3378. -------------------------------------------------------------------------------
  3379.  
  3380. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  3381. Subject: Re: (fractint) Anyone use Red Hat Linux?
  3382. Date: 12 Feb 1999 14:18:26 +0100
  3383.  
  3384. Me too.
  3385.  
  3386. -----Original Message-----
  3387.  
  3388.  
  3389. >
  3390. >>
  3391. >> Does anyone have experience compiling Xfractint with Red Hat? I
  3392. >> use Slakware Linux and have no problems (but then again I only
  3393. >> compile the developer version these days.)
  3394. >>
  3395. >
  3396. >I'll try and test it over the weekend.
  3397. >
  3398. >
  3399. >--------------------------------------------------------------
  3400. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  3401. >Post Message:   fractint@lists.xmission.com
  3402. >Get Commands:   majordomo@lists.xmission.com "help"
  3403. >Administrator:  twegner@phoenix.net
  3404. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3405. >
  3406.  
  3407.  
  3408.  
  3409. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3410. Post Message:   fractint@lists.xmission.com
  3411. Get Commands:   majordomo@lists.xmission.com "help"
  3412. Administrator:  twegner@phoenix.net
  3413. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3414.  
  3415.  
  3416. -------------------------------------------------------------------------------
  3417.  
  3418. From: George Martin <GGMARTIN@compuserve.com>
  3419. Subject: (fractint) Re: [fractal-art] FOTD 07-02-99 (Epicycle Fantasy) (C)
  3420. Date: 12 Feb 1999 10:45:45 -0500
  3421.  
  3422. Friends,
  3423.  
  3424. Sylvie Gallet correctly pointed out yesterday that there are two formulas=
  3425.  
  3426. in circulation with the name mandelbrotmix4. I have renamed the earlier o=
  3427. ne
  3428. "mandelbrotmix4_v1", and am leaving the later version (the one which Jim =
  3429. is
  3430. currently using in FOTD postings) with the name mandelbrotmix4. I am
  3431. editing the orgform compilation accordingly. To stay in sync with me, tho=
  3432. se
  3433. who are following along should delete the current mandelbrotmix4 from
  3434. _m.frm and add these two:
  3435.  
  3436.  
  3437. MandelbrotMix4 {; Jim Muth
  3438.   a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2), g=3D1/f
  3439.   h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j, k=3Dreal(p3)+1
  3440.   l=3Dimag(p3)+100, c=3Dfn1(pixel):
  3441.   z=3Dk*((a*(z^b))+(d*(z^f)))+c
  3442.   |z| < l
  3443. }
  3444.  
  3445.  
  3446. MandelbrotMix4_v1 {; Jim Muth
  3447.   c=3Dpixel, a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2)
  3448.   g=3D1/f, h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j:
  3449.   z=3D(a*(z^b))+(d*(z^f))+c
  3450.   |z| <=3D 100
  3451. }
  3452.  
  3453.  
  3454. Regards,
  3455.  
  3456. George Martin
  3457.  
  3458. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3459. Post Message:   fractint@lists.xmission.com
  3460. Get Commands:   majordomo@lists.xmission.com "help"
  3461. Administrator:  twegner@phoenix.net
  3462. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3463.  
  3464.  
  3465. -------------------------------------------------------------------------------
  3466.  
  3467. From: "Jim Prickett" <jprickett@satcom.net>
  3468. Subject: Re: (fractint) simple source code needed
  3469. Date: 12 Feb 1999 10:09:24 -0800
  3470.  
  3471. >I have a student to prepare for the Science Fair on fractals.
  3472. >The guy is in the 7th grade.
  3473. >
  3474. >Could anyone  help me with any ideas or simple source code, please.
  3475. >I would appreciate very much any suggestions.
  3476.  
  3477. You might take a look at my webpage "The Programmer's Lair".
  3478. The entire site is dedicated to source code for fractals, chaos,
  3479. other eye candy.  Goto http://geocities.com/SiliconValley/Way/9943 or
  3480. http://i.am.fractals
  3481.  
  3482. Jim Prickett
  3483. jprickett@satcom.net
  3484.  
  3485.  
  3486.  
  3487. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3488. Post Message:   fractint@lists.xmission.com
  3489. Get Commands:   majordomo@lists.xmission.com "help"
  3490. Administrator:  twegner@phoenix.net
  3491. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3492.  
  3493.  
  3494. -------------------------------------------------------------------------------
  3495.  
  3496. From: Mike Hammer <mhammer@misslink.net>
  3497. Subject: Re: (fractint) Anyone use Red Hat Linux?
  3498. Date: 12 Feb 1999 16:02:02 -0600
  3499.  
  3500. >>>
  3501. >>> Does anyone have experience compiling Xfractint with Red Hat? I
  3502. >>> use Slakware Linux and have no problems (but then again I only
  3503. >>> compile the developer version these days.)
  3504. >>>
  3505. >>
  3506.  
  3507. Hi,
  3508. Im new to the list but have used and enjoyed
  3509. Fractint for quite a while.
  3510.  
  3511. I tried to compile Xfractint on a Redhat 5.2 system
  3512. and encountered a number of errors. I dont remember
  3513. what they were now as it was several weeks ago. As I remember
  3514. it was the compiler complaining of missing modules when
  3515. compiling general.o If I remember correctly the module it
  3516. complained about was bstring.h.
  3517.  
  3518. I downloaded the source from:
  3519. http://spanky.triumf.ca/www/fractint/getting.html
  3520.  
  3521. I opted for a rpm install of Xfractint I found on an ftp site.
  3522. This installed OK but I havnt been able to get it to to run.
  3523.  
  3524. I get an error stating:
  3525.  
  3526. "Error opening terminal: xterm."
  3527.  
  3528. Anybody have any suggestions?
  3529.  
  3530. TTYL!
  3531.  
  3532. Mike Hammer
  3533. mhammer@misslink.net
  3534.  
  3535.  
  3536. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3537. Post Message:   fractint@lists.xmission.com
  3538. Get Commands:   majordomo@lists.xmission.com "help"
  3539. Administrator:  twegner@phoenix.net
  3540. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3541.  
  3542.  
  3543. -------------------------------------------------------------------------------
  3544.  
  3545. From: Paul Derbyshire <pderbysh@usa.net>
  3546. Subject: Re: (fractint) Anyone use Red Hat Linux?
  3547. Date: 12 Feb 1999 17:56:05 -0500
  3548.  
  3549. At 04:02 PM 2/12/99 -0600, you wrote:
  3550.  
  3551. [Another person comes forward with the announcement that xfract won't
  3552.  compile on Red Hat 5.2]
  3553.  
  3554. I think the problem is probably some sort of X related thing. Linux itself
  3555. has little code base forking, but the various free X implementations have
  3556. forked a great deal and aren't all that intercompatible so I hear.
  3557.  
  3558. The other thing is "standard" libraries. Libc, libm, and iostreams usually
  3559. are compatible across Linuxes and among particular variants, but the
  3560. various C++ libraries other than iostreams seem to vary a huge amount,
  3561. largely because the standard has only recently been decided. The SGI STL
  3562. implementation is now pretty much standard, but some programs exist that
  3563. were written using older C++ libraries of varying degrees of compatibility.
  3564. -- 
  3565.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  3566. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  3567.    `*'  straight line."    -------------------------------------------------
  3568.         -- B. Mandelbrot  |http://surf.to/pgd.net
  3569. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  3570. Programmer & Humanist|ICQ: 10423848|
  3571.  
  3572. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3573. Post Message:   fractint@lists.xmission.com
  3574. Get Commands:   majordomo@lists.xmission.com "help"
  3575. Administrator:  twegner@phoenix.net
  3576. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3577.  
  3578.  
  3579. -------------------------------------------------------------------------------
  3580.  
  3581. From: Bob Margolis <rttyman@wwa.com>
  3582. Subject: Re: (fractint) What's up with the list?
  3583. Date: 12 Feb 1999 17:23:54 -0600
  3584.  
  3585. Dean-Christian Strik wrote some stuff to which I now reply:
  3586. Most of us are still here, although Wizzle has become a railfan and has
  3587. deserted us for rides on the iron horse. She'll be back when she regains her
  3588. senses. :-)
  3589.  
  3590. You'be been made aware of the Ultra Fractal software, which is being tested and
  3591. tested and tested by the lot of us, including moi, on another mailing list. You
  3592. can pick it up at http://www.ultrafactal.com although it's now in the shareware
  3593. stage and being sold for 35 USD. It's a nice program. But don't worry, I'm sure
  3594. everyone will come back here en masse once Master Tim announces the release of
  3595. FractInt V. 20. Then someone will be wondering on the other mailing list were
  3596. everyone disappeared to. You might say that's PAR for the course! Groan. Sorry,
  3597. couldn't help using the pun.
  3598.  
  3599. I'm outta here.
  3600.  
  3601. Bob
  3602.  
  3603. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3604. Post Message:   fractint@lists.xmission.com
  3605. Get Commands:   majordomo@lists.xmission.com "help"
  3606. Administrator:  twegner@phoenix.net
  3607. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3608.  
  3609.  
  3610. -------------------------------------------------------------------------------
  3611.  
  3612. From: Jim Muth <jamth@mindspring.com>
  3613. Subject: (fractint) Re: Two versions of same formula
  3614. Date: 12 Feb 1999 19:02:56 -0500 (EST)
  3615.  
  3616. At 10:45 AM 2/12/99 -0500, George Martin wrote:
  3617.  
  3618.    <snip>
  3619. >. . . there are two formulas in circulation with the name 
  3620. >mandelbrotmix4. I have renamed the earlier one 
  3621. >"mandelbrotmix4_v1", and am leaving the later version (the one 
  3622. >which Jim is currently using in FOTD postings) with the name 
  3623. >mandelbrotmix4. . . .  <snip>
  3624.  
  3625. I did it again.  This is about the third time this had happened.  
  3626. I'm as sorry as presid... (I'd better not mention it.)  I try not 
  3627. to let any duplicated formulas get through, but now and then one 
  3628. slips by.  It happens because I often post FOTD's created with 
  3629. formulas that are still in the development stage.  In this case, 
  3630. I had no idea that I had ever posted a par file that used the old 
  3631. version.  Thanks again to George for keeping my disorganized 
  3632. jumble of formulas in at least a modicum of order.
  3633.  
  3634. Jim Muth
  3635. jamth@mindspring.com
  3636.  
  3637.  
  3638. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3639. Post Message:   fractint@lists.xmission.com
  3640. Get Commands:   majordomo@lists.xmission.com "help"
  3641. Administrator:  twegner@phoenix.net
  3642. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3643.  
  3644.  
  3645. -------------------------------------------------------------------------------
  3646.  
  3647. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  3648. Subject: Re: (fractint) Anyone use Red Hat Linux?
  3649. Date: 13 Feb 1999 01:05:47 +0100
  3650.  
  3651. Hm. I seem to have an older copy of the xfractint source, and not even the
  3652. official distribution :(
  3653.  
  3654. I'll give it a try anyway.
  3655.  
  3656. --
  3657.  
  3658. Dean-Christian Strik
  3659.    ICQ: 11760568
  3660.  dean2@bigfoot.com
  3661. cstrik.isg@hetnet.nl
  3662.  
  3663. Real programmers like vending machine popcorn. Coders pop it in the
  3664. microwave oven. Real programmers use the heat given off by the CPU. They can
  3665. tell what job is running just by listening to the rate of popping.
  3666.  
  3667. -----Original Message-----
  3668.  
  3669.  
  3670. >Me too.
  3671. >
  3672. >-----Original Message-----
  3673. >From: Ian Kaplan <ijk@force.stwing.upenn.edu>
  3674. >To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  3675. >Date: vrijdag 12 februari 1999 01 20 Fluxen
  3676. >Subject: Re: (fractint) Anyone use Red Hat Linux?
  3677. >
  3678. >
  3679. >>
  3680. >>>
  3681. >>> Does anyone have experience compiling Xfractint with Red Hat? I
  3682. >>> use Slakware Linux and have no problems (but then again I only
  3683. >>> compile the developer version these days.)
  3684. >>>
  3685. >>
  3686. >>I'll try and test it over the weekend.
  3687. >>
  3688. >>
  3689. >>--------------------------------------------------------------
  3690. >>Thanks for using Fractint, The Fractals and Fractint Discussion List
  3691. >>Post Message:   fractint@lists.xmission.com
  3692. >>Get Commands:   majordomo@lists.xmission.com "help"
  3693. >>Administrator:  twegner@phoenix.net
  3694. >>Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3695. >>
  3696. >
  3697. >
  3698. >
  3699. >--------------------------------------------------------------
  3700. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  3701. >Post Message:   fractint@lists.xmission.com
  3702. >Get Commands:   majordomo@lists.xmission.com "help"
  3703. >Administrator:  twegner@phoenix.net
  3704. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3705. >
  3706.  
  3707.  
  3708.  
  3709. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3710. Post Message:   fractint@lists.xmission.com
  3711. Get Commands:   majordomo@lists.xmission.com "help"
  3712. Administrator:  twegner@phoenix.net
  3713. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3714.  
  3715.  
  3716. -------------------------------------------------------------------------------
  3717.  
  3718. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  3719. Subject: Re: (fractint) Anyone use Red Hat Linux?
  3720. Date: 13 Feb 1999 01:09:37 +0100
  3721.  
  3722. My distribution of the xfractint source (not the official one!) contains the
  3723. binary. However, the binary exits with the error that ncurses.so can't be
  3724. found.
  3725.  
  3726.  
  3727. --
  3728.  
  3729. PS. Never use RPMs. Not on non-RedHat systems, and not even on RedHat...
  3730.  
  3731. --
  3732.  
  3733. Dean-Christian Strik
  3734.    ICQ: 11760568
  3735.  dean2@bigfoot.com
  3736. cstrik.isg@hetnet.nl
  3737.  
  3738. Real programmers like vending machine popcorn. Coders pop it in the
  3739. microwave oven. Real programmers use the heat given off by the CPU. They can
  3740. tell what job is running just by listening to the rate of popping.
  3741.  
  3742. -----Original Message-----
  3743.  
  3744.  
  3745. >>>>
  3746. >>>> Does anyone have experience compiling Xfractint with Red Hat? I
  3747. >>>> use Slakware Linux and have no problems (but then again I only
  3748. >>>> compile the developer version these days.)
  3749. >>>>
  3750. >>>
  3751. >
  3752. >Hi,
  3753. >Im new to the list but have used and enjoyed
  3754. >Fractint for quite a while.
  3755. >
  3756. >I tried to compile Xfractint on a Redhat 5.2 system
  3757. >and encountered a number of errors. I dont remember
  3758. >what they were now as it was several weeks ago. As I remember
  3759. >it was the compiler complaining of missing modules when
  3760. >compiling general.o If I remember correctly the module it
  3761. >complained about was bstring.h.
  3762. >
  3763. >I downloaded the source from:
  3764. >http://spanky.triumf.ca/www/fractint/getting.html
  3765. >
  3766. >I opted for a rpm install of Xfractint I found on an ftp site.
  3767. >This installed OK but I havnt been able to get it to to run.
  3768. >
  3769. >I get an error stating:
  3770. >
  3771. >"Error opening terminal: xterm."
  3772. >
  3773. >Anybody have any suggestions?
  3774. >
  3775. >TTYL!
  3776. >
  3777. >Mike Hammer
  3778. >mhammer@misslink.net
  3779. >
  3780. >
  3781. >--------------------------------------------------------------
  3782. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  3783. >Post Message:   fractint@lists.xmission.com
  3784. >Get Commands:   majordomo@lists.xmission.com "help"
  3785. >Administrator:  twegner@phoenix.net
  3786. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3787. >
  3788.  
  3789.  
  3790.  
  3791. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3792. Post Message:   fractint@lists.xmission.com
  3793. Get Commands:   majordomo@lists.xmission.com "help"
  3794. Administrator:  twegner@phoenix.net
  3795. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3796.  
  3797.  
  3798. -------------------------------------------------------------------------------
  3799.  
  3800. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  3801. Subject: Re: (fractint) simple source code needed
  3802. Date: 13 Feb 1999 01:07:21 +0100
  3803.  
  3804. >http://i.am.fractals
  3805.  
  3806.  
  3807. Huh? Seems like a ridiculous url to me... anyway, I tested it, but hey, it
  3808. doesn't work (not really surprising).
  3809.  
  3810. --
  3811.  
  3812. Dean-Christian Strik
  3813.    ICQ: 11760568
  3814.  dean2@bigfoot.com
  3815. cstrik.isg@hetnet.nl
  3816.  
  3817. Real programmers like vending machine popcorn. Coders pop it in the
  3818. microwave oven. Real programmers use the heat given off by the CPU. They can
  3819. tell what job is running just by listening to the rate of popping.
  3820.  
  3821.  
  3822.  
  3823.  
  3824. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3825. Post Message:   fractint@lists.xmission.com
  3826. Get Commands:   majordomo@lists.xmission.com "help"
  3827. Administrator:  twegner@phoenix.net
  3828. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3829.  
  3830.  
  3831. -------------------------------------------------------------------------------
  3832.  
  3833. From: Paul Derbyshire <pderbysh@usa.net>
  3834. Subject: Re: (fractint) simple source code needed
  3835. Date: 12 Feb 1999 21:02:50 -0500
  3836.  
  3837. At 01:07 AM 2/13/99 +0100, you wrote:
  3838. >>http://i.am.fractals
  3839. >
  3840. >
  3841. >Huh? Seems like a ridiculous url to me... anyway, I tested it, but hey, it
  3842. >doesn't work (not really surprising).
  3843.  
  3844. It should be
  3845. http://i.am/fractals
  3846.  
  3847.  
  3848. >Real programmers like vending machine popcorn. Coders pop it in the
  3849. >microwave oven. Real programmers use the heat given off by the CPU. They can
  3850. >tell what job is running just by listening to the rate of popping.
  3851.  
  3852. The 1970s were the days for hackers. Those were the days when code grinders
  3853. were code grinders, suits were suits, hackers never wore suits, and real
  3854. men arranged NOPs and weird instructions in their idle loops and positioned
  3855. data on drums in such a way as to make the CPU put out RF signals that
  3856. played a tune on an AM radio sitting near the box!
  3857.  
  3858. -- 
  3859.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  3860. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  3861.    `*'  straight line."    -------------------------------------------------
  3862.         -- B. Mandelbrot  |http://surf.to/pgd.net
  3863. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  3864. Programmer & Humanist|ICQ: 10423848|
  3865.  
  3866. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3867. Post Message:   fractint@lists.xmission.com
  3868. Get Commands:   majordomo@lists.xmission.com "help"
  3869. Administrator:  twegner@phoenix.net
  3870. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3871.  
  3872.  
  3873. -------------------------------------------------------------------------------
  3874.  
  3875. From: Paul Derbyshire <pderbysh@usa.net>
  3876. Subject: Re: (fractint) Anyone use Red Hat Linux?
  3877. Date: 12 Feb 1999 21:03:56 -0500
  3878.  
  3879. At 01:09 AM 2/13/99 +0100, you wrote:
  3880. >My distribution of the xfractint source (not the official one!) contains the
  3881. >binary. However, the binary exits with the error that ncurses.so can't be
  3882. >found.
  3883.  
  3884. Well...get ncurses.so. It's a linux equivalent of a DLL. You know what to
  3885. do about missing DLL problems right? :-)
  3886.  
  3887. >PS. Never use RPMs. Not on non-RedHat systems, and not even on RedHat...
  3888.  
  3889. Why?
  3890. -- 
  3891.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  3892. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  3893.    `*'  straight line."    -------------------------------------------------
  3894.         -- B. Mandelbrot  |http://surf.to/pgd.net
  3895. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  3896. Programmer & Humanist|ICQ: 10423848|
  3897.  
  3898. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3899. Post Message:   fractint@lists.xmission.com
  3900. Get Commands:   majordomo@lists.xmission.com "help"
  3901. Administrator:  twegner@phoenix.net
  3902. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3903.  
  3904.  
  3905. -------------------------------------------------------------------------------
  3906.  
  3907. From: Paul Derbyshire <pderbysh@usa.net>
  3908. Subject: Re: (fractint) What's up with the list?
  3909. Date: 12 Feb 1999 21:58:24 -0500
  3910.  
  3911. Ultra Fractal is timebombware. It should by all rights be free and open
  3912. source. :P
  3913.  
  3914. -- 
  3915.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  3916. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  3917.    `*'  straight line."    -------------------------------------------------
  3918.         -- B. Mandelbrot  |http://surf.to/pgd.net
  3919. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  3920. Programmer & Humanist|ICQ: 10423848|
  3921.  
  3922. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3923. Post Message:   fractint@lists.xmission.com
  3924. Get Commands:   majordomo@lists.xmission.com "help"
  3925. Administrator:  twegner@phoenix.net
  3926. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3927.  
  3928.  
  3929. -------------------------------------------------------------------------------
  3930.  
  3931. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  3932. Subject: Re: (fractint) What's up with the list?
  3933. Date: 12 Feb 1999 19:11:44 -0800 (PST)
  3934.  
  3935. > Ultra Fractal is timebombware. It should by all rights be free and open
  3936. > source. :P
  3937.  
  3938. Why?
  3939.  
  3940. Just because the original authors of Fractint chose to make the code
  3941. open and freely available doesn't mean that everyone who writes software
  3942. should follow suit.  UF is an outstanding program and Frederik has done
  3943. a fantastic job of developing it and incorporating the suggestions and
  3944. comments of the beta testers.  That isn't to say that Fractint doesn't
  3945. have its advandages over UF.  They are both outstanding tools to create
  3946. images with.  IMO, it is worth twice the $35 shareware fee.  I think
  3947. Frederik is well within his rights to make it shareware.  Even if it
  3948. were freeware, I don't see that he should be obligated to share the
  3949. source.
  3950.  
  3951. Of course, YMMV.
  3952.  
  3953.  
  3954. Ken...
  3955.  
  3956.  
  3957.  
  3958.  
  3959. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3960. Post Message:   fractint@lists.xmission.com
  3961. Get Commands:   majordomo@lists.xmission.com "help"
  3962. Administrator:  twegner@phoenix.net
  3963. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3964.  
  3965.  
  3966. -------------------------------------------------------------------------------
  3967.  
  3968. From: Gedeon Peteri <gedeon@InfoAve.Net>
  3969. Subject: (fractint) further web site update
  3970. Date: 12 Feb 1999 22:21:58 -0500
  3971.  
  3972. I have done some further work on my Geocities web site. There is a
  3973. second page of Chebyshev images, and the Classic Curves page has been
  3974. completely updated with new images. Both of these pages contain Ultra
  3975. Fractal images. I hope you enjoy your visit.
  3976.  
  3977. Gedeon
  3978.  
  3979. --
  3980. Fractals: http://www.geocities.com/~gedeonp/index.html
  3981. Member Infinite Fractal Loop
  3982. Last updated: February 12, 1999 - two new pages
  3983. Photography: http://members.xoom.com/gedeonp/index.html
  3984. Last updated: November 8, 1998
  3985.  
  3986.  
  3987.  
  3988. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3989. Post Message:   fractint@lists.xmission.com
  3990. Get Commands:   majordomo@lists.xmission.com "help"
  3991. Administrator:  twegner@phoenix.net
  3992. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3993.  
  3994.  
  3995. -------------------------------------------------------------------------------
  3996.  
  3997. From: aq936@freenet.carleton.ca (Michael Traynor)
  3998. Subject: Re: (fractint) What's up with the list?
  3999. Date: 12 Feb 1999 22:25:58 -0500 (EST)
  4000.  
  4001. Bob,
  4002.  
  4003. Folk will probably be using fractint's evolver to come up with stuff
  4004. they'll tart up in UF (which is an awfully nice bit o' software).
  4005.  
  4006. >
  4007. >Dean-Christian Strik wrote some stuff to which I now reply:
  4008. >> 
  4009. >Most of us are still here, although Wizzle has become a railfan and has
  4010. >deserted us for rides on the iron horse. She'll be back when she regains her
  4011. >senses. :-)
  4012. >
  4013. >You'be been made aware of the Ultra Fractal software, which is being tested and
  4014. >tested and tested by the lot of us, including moi, on another mailing list. You
  4015. >can pick it up at http://www.ultrafactal.com although it's now in the shareware
  4016. >stage and being sold for 35 USD. It's a nice program. But don't worry, I'm sure
  4017. >everyone will come back here en masse once Master Tim announces the release of
  4018. >FractInt V. 20. Then someone will be wondering on the other mailing list were
  4019. >everyone disappeared to. You might say that's PAR for the course! Groan. Sorry,
  4020. >couldn't help using the pun.
  4021. >
  4022. >I'm outta here.
  4023. >
  4024. >Bob
  4025. >
  4026. >--------------------------------------------------------------
  4027. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  4028. >Post Message:   fractint@lists.xmission.com
  4029. >Get Commands:   majordomo@lists.xmission.com "help"
  4030. >Administrator:  twegner@phoenix.net
  4031. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4032. >
  4033. >
  4034.  
  4035. --
  4036. Mike Traynor
  4037.  
  4038. People who like this sort of thing will find this the sort of thing they like.
  4039.     Abraham Lincoln
  4040.  
  4041. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4042. Post Message:   fractint@lists.xmission.com
  4043. Get Commands:   majordomo@lists.xmission.com "help"
  4044. Administrator:  twegner@phoenix.net
  4045. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4046.  
  4047.  
  4048. -------------------------------------------------------------------------------
  4049.  
  4050. From: Paul DeCelle <PaulDC@prodigy.net>
  4051. Subject: Re: (fractint) What's up with the list?
  4052. Date: 13 Feb 1999 00:20:24 -0500
  4053.  
  4054.  
  4055.  
  4056. Paul Derbyshire wrote:
  4057.  
  4058. > Ultra Fractal is timebombware. It should by all rights be free and open
  4059. > source. :P
  4060.  
  4061. Why should ALL software be free?  As far as I'm concerned, that's up to the
  4062. author(s) who've made the effort to develop it for the rest of us to use.  Don't
  4063. get me wrong - Fractint is an outstanding program, and you can't beat the price
  4064. (free!).  On the other hand, the  $35 US for Ultra Fractal is a (IMHO) real
  4065. value when one takes into account it's additional features and capabilities.
  4066. I'll continue to use both, but that's my personal choice - Factint for coming up
  4067. with inspirations and UF for refinements...
  4068.  
  4069. BTW, my small (so far!) UF site at  http://pages.prodigy.net/pauldc/ufintro.html
  4070. shows a hint of what can be done with combining Fractint formulas and UF
  4071. features.
  4072.  
  4073. Regards, Paul DeCelle
  4074.  
  4075.  
  4076. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4077. Post Message:   fractint@lists.xmission.com
  4078. Get Commands:   majordomo@lists.xmission.com "help"
  4079. Administrator:  twegner@phoenix.net
  4080. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4081.  
  4082.  
  4083. -------------------------------------------------------------------------------
  4084.  
  4085. From: Paul Derbyshire <pderbysh@usa.net>
  4086. Subject: Re: (fractint) What's up with the list?
  4087. Date: 13 Feb 1999 01:04:10 -0500
  4088.  
  4089. At 07:11 PM 2/12/99 -0800, you wrote:
  4090. >Just because the original authors of Fractint chose to make the code
  4091. >open and freely available doesn't mean that everyone who writes software
  4092. >should follow suit.  UF is an outstanding program and Frederik has done
  4093. >a fantastic job of developing it and incorporating the suggestions and
  4094. >comments of the beta testers...
  4095.  
  4096. ...only to then discriminate against the poor, the students, and everyone
  4097. who has a bankruptcy in their records 7 years young or younger.
  4098. Software should be equally available to everyone with a computer regardless
  4099. of their means, because it can easily be distributed to everyone with a
  4100. computer.
  4101. As a compromise, it should certainly always be possible to obtain it easily
  4102. and conveniently if you have the money, and shouldn't cost more than
  4103. amortized cost of development plus distribution cost.
  4104. Requiring someone use a credit card to get something makes it inaccessible
  4105. to some people that can afford it and by all rights should be able to get
  4106. it quickly and conveniently.
  4107. Requiring someone use a credit card to get something is wrong and violates
  4108. the constitution of nearly all decent free countries.
  4109. Remember the recent ruling that struck down a law that would have required
  4110. people have a credit card to view online porn and to access sexual medical
  4111. information and so forth, as proof of age? It was struck down because it
  4112. was discriminatory and violated the first amendment in the US by making
  4113. some constitutionally protected free speech available only to the elite
  4114. (that is, people that are well to do, certainly not students anymore, and
  4115. haven't been bankrupt).
  4116.  
  4117. Elitism must end. Especially this software elitism.
  4118. Been bankrupt? A world of downloadable $$$-ware is beyond your grasp, even
  4119. if you have the physical cash.
  4120. Student? Unemployed? Still a minor? Forget it. You'll just have to stick to
  4121. the expensive, overpriced software in the local computer retail which is
  4122. available to people via ready cash.
  4123. A victim of identity theft and credit fraud? Stick to nonags.com...forget
  4124. about Paint Shop Pro, Ultra Fractal, and Adobe Acrobat.
  4125. Unexpectedly laid off? The door to a lot of software just slammed shut.
  4126.  
  4127. It almost makes you want to try those $$$GET GOOD CREDIT INSTANTLY!!!$$$
  4128. schemes just on the off chance they won't land you in prison.
  4129. Or sneak off with your father's credit card...
  4130.  
  4131.  
  4132. Credit cards must stop being a necessity for electronic commerce.
  4133. We need a direct-debit system, where if you have the money in a bank
  4134. account, you can buy online.
  4135. And until that system is imposed, at the very least, it should all be free.
  4136.  
  4137. >IMO, it is worth twice the $35 shareware fee.
  4138.  
  4139. It is not fair though that there are people who physically have the $35 and
  4140. still can't get it!
  4141.  
  4142.  
  4143. -- 
  4144.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  4145. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  4146.    `*'  straight line."    -------------------------------------------------
  4147.         -- B. Mandelbrot  |http://surf.to/pgd.net
  4148. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  4149. Programmer & Humanist|ICQ: 10423848|
  4150.  
  4151. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4152. Post Message:   fractint@lists.xmission.com
  4153. Get Commands:   majordomo@lists.xmission.com "help"
  4154. Administrator:  twegner@phoenix.net
  4155. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4156.  
  4157.  
  4158. -------------------------------------------------------------------------------
  4159.  
  4160. From: aq936@freenet.carleton.ca (Michael Traynor)
  4161. Subject: Re: (fractint) What's up with the list?
  4162. Date: 13 Feb 1999 01:46:28 -0500 (EST)
  4163.  
  4164. Paul Derbyshire writes:
  4165.  
  4166. >...only to then discriminate against the poor, the students, and everyone
  4167. >who has a bankruptcy in their records 7 years young or younger.
  4168. >Software should be equally available to everyone with a computer regardless
  4169. >of their means, because it can easily be distributed to everyone with a
  4170. >computer.
  4171.  
  4172. Hmmmm, I'm sure anyone could use your computer.  Shall I send them over to
  4173. play with it?
  4174.  
  4175. >As a compromise, it should certainly always be possible to obtain it easily
  4176. >and conveniently if you have the money, and shouldn't cost more than
  4177. >amortized cost of development plus distribution cost.
  4178.  
  4179. It would be my guess the Frederik will not get enough money off UF to pay
  4180. him at a rate commensurate with the skill used for the time he will have
  4181. spent on the program.  Only he (and perhaps the revenuers in the
  4182. Netherlands) will know, as folk are oddly cagy about what they make (that
  4183. kind of secrecy usually helps the folk buying labour, not selling it).
  4184.  
  4185. >Requiring someone use a credit card to get something makes it inaccessible
  4186. >to some people that can afford it and by all rights should be able to get
  4187. >it quickly and conveniently.
  4188.  
  4189. Well, one could always e-mail and ask if something like a postal money
  4190. order would be acceptable.  I did, for UF, and they are.
  4191.  
  4192. >Requiring someone use a credit card to get something is wrong and violates
  4193. >the constitution of nearly all decent free countries.
  4194.  
  4195. That is an interesting viewpoint, and I don't think the lack of references
  4196. is due to inadvertance.
  4197.  
  4198. >Remember the recent ruling that struck down a law that would have required
  4199. >people have a credit card to view online porn and to access sexual medical
  4200. >information and so forth, as proof of age? It was struck down because it
  4201. >was discriminatory and violated the first amendment in the US by making
  4202. >some constitutionally protected free speech available only to the elite
  4203. >(that is, people that are well to do, certainly not students anymore, and
  4204. >haven't been bankrupt).
  4205.  
  4206. You need to learn that court decisions only stand for what they decide. 
  4207. The court did not decide that the owner of a site could not charge for
  4208. access and refuse to take any form of payment but credit card.  It ruled
  4209. that site owners could not be required by law to require credit card info
  4210. up front before showing anything.  Two very different things.
  4211.  
  4212. >Elitism must end. Especially this software elitism.
  4213.  
  4214. By all means, take the bull by the horns and produce free software for
  4215. others to use and so squeeze out those who would sell it.  There actually
  4216. is a group of folk doing just that.  Putting their efforts where their
  4217. metaphorical mouth is.
  4218.  
  4219.  
  4220. --
  4221. Mike Traynor
  4222.  
  4223. People who like this sort of thing will find this the sort of thing they like.
  4224.     Abraham Lincoln
  4225.  
  4226. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4227. Post Message:   fractint@lists.xmission.com
  4228. Get Commands:   majordomo@lists.xmission.com "help"
  4229. Administrator:  twegner@phoenix.net
  4230. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4231.  
  4232.  
  4233. -------------------------------------------------------------------------------
  4234.  
  4235. From: Paul Derbyshire <pderbysh@usa.net>
  4236. Subject: Re: (fractint) What's up with the list?
  4237. Date: 13 Feb 1999 03:57:40 -0500
  4238.  
  4239. At 01:46 AM 2/13/99 -0500, you wrote:
  4240. >Well, one could always e-mail and ask if something like a postal money
  4241. >order would be acceptable.  I did, for UF, and they are.
  4242.  
  4243. I seem to recall mentioning something about "quickly, conveniently, and
  4244. easily"... messing with snail mail, paying extra for stamps and envelopes,
  4245. and waiting for however long the snail mail takes (if it gets there at
  4246. all!) doesn't strike me as "quickly, conveniently, and easily".
  4247.  
  4248. I think if a person has the right to something (because, for instance, they
  4249. have the money) then they have the right to obtain it as quickly,
  4250. conveniently, and easily as everyone else.
  4251.  
  4252. >That is an interesting viewpoint, and I don't think the lack of references
  4253. >is due to inadvertance.
  4254.  
  4255. Lack of references? I cited in detail a recent event where a court struck
  4256. down a law that would have made something available only to the People With
  4257. Credit.
  4258.  
  4259. >By all means, take the bull by the horns and produce free software for
  4260. >others to use and so squeeze out those who would sell it.  There actually
  4261. >is a group of folk doing just that.  Putting their efforts where their
  4262. >metaphorical mouth is.
  4263.  
  4264. I plan to. :-)
  4265.  
  4266. -- 
  4267.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  4268. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  4269.    `*'  straight line."    -------------------------------------------------
  4270.         -- B. Mandelbrot  |http://surf.to/pgd.net
  4271. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  4272. Programmer & Humanist|ICQ: 10423848|
  4273.  
  4274. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4275. Post Message:   fractint@lists.xmission.com
  4276. Get Commands:   majordomo@lists.xmission.com "help"
  4277. Administrator:  twegner@phoenix.net
  4278. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4279.  
  4280.  
  4281. -------------------------------------------------------------------------------
  4282.  
  4283. From: "Marie Drozdis" <mariedrozdis@att.net>
  4284. Subject: RE: (fractint) What's up with the list?
  4285. Date: 13 Feb 1999 10:30:35 -0800
  4286.  
  4287. Paul, if you want software free, the answer is simple. Write your own
  4288. programs.  No one needs to feel entitled to other's work when they can do
  4289. their own. If you don't know how to program, there are books at the library
  4290. to get you started.
  4291.  
  4292. M  :)
  4293.  
  4294.  
  4295. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4296. Post Message:   fractint@lists.xmission.com
  4297. Get Commands:   majordomo@lists.xmission.com "help"
  4298. Administrator:  twegner@phoenix.net
  4299. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4300.  
  4301.  
  4302. -------------------------------------------------------------------------------
  4303.  
  4304. From: JOAN <savo@lleida.com>
  4305. Subject: (fractint) Bifurcations
  4306. Date: 13 Feb 1999 16:48:05 +0100
  4307.  
  4308. Hi,
  4309. I wrote before but am not sure that the purpose of my query was clear. I
  4310. want to do bifurcations with Fractint, inserting specific values in
  4311. place of the ones given for growth factor, population, etc. If is
  4312. possible and someone can tell me how to do it, I would be grateful.
  4313. joan duran
  4314.  
  4315.  
  4316. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4317. Post Message:   fractint@lists.xmission.com
  4318. Get Commands:   majordomo@lists.xmission.com "help"
  4319. Administrator:  twegner@phoenix.net
  4320. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4321.  
  4322.  
  4323. -------------------------------------------------------------------------------
  4324.  
  4325. From: JOAN <savo@lleida.com>
  4326. Subject: (fractint) Bifurcations
  4327. Date: 13 Feb 1999 16:48:05 +0100
  4328.  
  4329. Hi,
  4330. I wrote before but am not sure that the purpose of my query was clear. I
  4331. want to do bifurcations with Fractint, inserting specific values in
  4332. place of the ones given for growth factor, population, etc. If is
  4333. possible and someone can tell me how to do it, I would be grateful.
  4334. joan duran
  4335.  
  4336.  
  4337. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4338. Post Message:   fractint@lists.xmission.com
  4339. Get Commands:   majordomo@lists.xmission.com "help"
  4340. Administrator:  twegner@phoenix.net
  4341. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4342.  
  4343.  
  4344. -------------------------------------------------------------------------------
  4345.  
  4346. From: "Damien M. Jones" <dmj@fractalus.com>
  4347. Subject: Re: (fractint) What's up with the list?
  4348. Date: 13 Feb 1999 10:55:23 -0600
  4349.  
  4350. Paul,
  4351.  
  4352.  - Ultra Fractal is timebombware. It should by all rights be free and open
  4353.  - source. :P
  4354.  
  4355. You and I have covered this in private e-mail before. For some reason you
  4356. labor under the impression that you, simple by virtue of your existence,
  4357. are *entitled* to help yourself to the work of everyone else, for free.
  4358.  
  4359. You can pay for Ultra Fractal (and most other shareware!) by sending a
  4360. check or money order to the author. How DARE you whine that it's "too much
  4361. trouble" to mess with stamps and writing a check! Do you think the world is
  4362. here to coddle you? Do you whine that your groceries must be delivered to
  4363. your door, because it's too much trouble for you to go to the supermarket
  4364. to pick them up?
  4365.  
  4366. It's time you shed this infantile attitude that you can help yourself to
  4367. everything in the world. Frederik took the opportunity to develop a fine
  4368. piece of software. If he wants to charge for his labors, he is entitled to
  4369. do so. Plain and simple. When you do the work, you can decide whether to
  4370. give it away or sell it, but don't even THINK about presuming to dictate to
  4371. someone else.
  4372.  
  4373. I suspect once you get out of school and into the real world, you will
  4374. understand the value of work. There are some things you really don't learn
  4375. in school.
  4376.  
  4377. Damien M. Jones   \\
  4378. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  4379.                     \\  http://www.fractalus.com/
  4380.  
  4381. Please do not post my e-mail address on a web site or
  4382. in a newsgroup.  Thank you.
  4383.  
  4384. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4385. Post Message:   fractint@lists.xmission.com
  4386. Get Commands:   majordomo@lists.xmission.com "help"
  4387. Administrator:  twegner@phoenix.net
  4388. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4389.  
  4390.  
  4391. -------------------------------------------------------------------------------
  4392.  
  4393. From: Bob Margolis <rttyman@wwa.com>
  4394. Subject: (fractint) Dean: We're here.
  4395. Date: 13 Feb 1999 11:15:26 -0600
  4396.  
  4397. Dean-Christian;
  4398.  
  4399. See. We're still all here--and we're talking. :-))))))
  4400.  
  4401. Bob
  4402.  
  4403. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4404. Post Message:   fractint@lists.xmission.com
  4405. Get Commands:   majordomo@lists.xmission.com "help"
  4406. Administrator:  twegner@phoenix.net
  4407. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4408.  
  4409.  
  4410. -------------------------------------------------------------------------------
  4411.  
  4412. From: aq936@freenet.carleton.ca (Michael Traynor)
  4413. Subject: Re: (fractint) What's up with the list?
  4414. Date: 13 Feb 1999 12:26:10 -0500 (EST)
  4415.  
  4416. >I think if a person has the right to something (because, for instance, they
  4417. >have the money) then they have the right to obtain it as quickly,
  4418. >conveniently, and easily as everyone else.
  4419. >
  4420. >>That is an interesting viewpoint, and I don't think the lack of references
  4421. >>is due to inadvertance.
  4422. >
  4423. >Lack of references? I cited in detail a recent event where a court struck
  4424. >down a law that would have made something available only to the People With
  4425. >Credit.
  4426.  
  4427. If you re-read my post (or indeed pretty much any of the media reports, or
  4428. hey, find the decision on the web - it will probably be up soon if it
  4429. isn't yet - and free) you will see that this is not the case.  The
  4430. case revolved around the restriction placed on people who would distribute
  4431. information, i.e they would only be allowed to distribute information if
  4432. they had obtained some sort of ID first.  The case did not say that if I
  4433. (assuming I were subject to US law - which I'm not) have a website and
  4434. wish to restrict access to people who can pay by credit card that I may
  4435. not do so.  I can demand payment in any form I like.  What the court
  4436. decided was that the US government could not force me to demand a credit
  4437. card or other form of ID where I did not wish to do so.
  4438.  
  4439. As this whole thread is really off-topic here, I'll leave the rest of Mr
  4440. D's argument unanswered.  This, though was a matter of correcting a
  4441. misrepresentation.
  4442.  
  4443. --
  4444. Mike Traynor
  4445.  
  4446. People who like this sort of thing will find this the sort of thing they like.
  4447.     Abraham Lincoln
  4448.  
  4449. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4450. Post Message:   fractint@lists.xmission.com
  4451. Get Commands:   majordomo@lists.xmission.com "help"
  4452. Administrator:  twegner@phoenix.net
  4453. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4454.  
  4455.  
  4456. -------------------------------------------------------------------------------
  4457.  
  4458. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  4459. Subject: Re: (fractint) What's up with the list?
  4460. Date: 13 Feb 1999 11:50:43 -0800 (PST)
  4461.  
  4462.  
  4463. Paul,
  4464.  
  4465. > At 07:11 PM 2/12/99 -0800, you wrote:
  4466. > >Just because the original authors of Fractint chose to make the code
  4467. > >open and freely available doesn't mean that everyone who writes software
  4468. > >should follow suit.  UF is an outstanding program and Frederik has done
  4469. > >a fantastic job of developing it and incorporating the suggestions and
  4470. > >comments of the beta testers...
  4471. > ...only to then discriminate against the poor, the students, and everyone
  4472. > who has a bankruptcy in their records 7 years young or younger.
  4473. > Software should be equally available to everyone with a computer regardless
  4474. > of their means, because it can easily be distributed to everyone with a
  4475. > computer.
  4476.  
  4477. Really? Why do you think that you, or anyone for that matter, has a
  4478. right to the labors of others for free?
  4479.  
  4480. Sheeesh, I guess anything that costs money discriminates against someone
  4481. by this [il]logic.
  4482.  
  4483. > As a compromise, it should certainly always be possible to obtain it easily
  4484. > and conveniently if you have the money, and shouldn't cost more than
  4485. > amortized cost of development plus distribution cost.
  4486.  
  4487. If this were the case for UF, you certainly wouldn't be able to afford
  4488. it, and neither would most people.
  4489.  
  4490. > Requiring someone use a credit card to get something makes it inaccessible
  4491. > to some people that can afford it and by all rights should be able to get
  4492. > it quickly and conveniently.
  4493.  
  4494. Put a check in the mail, or Money Order, or cash if you want to risk
  4495. it.
  4496.  
  4497. > Requiring someone use a credit card to get something is wrong and violates
  4498. > the constitution of nearly all decent free countries.
  4499. > Remember the recent ruling that struck down a law that would have required
  4500. > people have a credit card to view online porn and to access sexual medical
  4501. > information and so forth, as proof of age? It was struck down because it
  4502. > was discriminatory and violated the first amendment in the US by making
  4503. > some constitutionally protected free speech available only to the elite
  4504. > (that is, people that are well to do, certainly not students anymore, and
  4505. > haven't been bankrupt).
  4506.  
  4507. This is just nonsense.  The recent court decision applied only to the
  4508. rampant distribution of porn, and was a speech issue.  It had nothing to
  4509. do with paying for SW with a credit card.  IMO, you are only kidding
  4510. yourself if you think that regulation of this and other activities isn't
  4511. forthcoming in the future.  However, that is certainly no topic for this
  4512. list.
  4513.  
  4514. > Elitism must end. Especially this software elitism.
  4515.  
  4516. Yes, I agree, your kind of elitism must end.  It is a destructive
  4517. attitude, IMO.
  4518.  
  4519. > Been bankrupt? A world of downloadable $$$-ware is beyond your grasp, even
  4520. > if you have the physical cash.
  4521. > Student? Unemployed? Still a minor? Forget it. You'll just have to stick to
  4522. > the expensive, overpriced software in the local computer retail which is
  4523. > available to people via ready cash.
  4524. > A victim of identity theft and credit fraud? Stick to nonags.com...forget
  4525. > about Paint Shop Pro, Ultra Fractal, and Adobe Acrobat.
  4526. > Unexpectedly laid off? The door to a lot of software just slammed shut.
  4527.  
  4528. Well, I think the appropriate response here is "life happens".  Quit
  4529. whining about it.  Get off your hiney and do something about it.  I
  4530. assume you are an intelligent individual, put your talents to work to
  4531. benefit yourself and others.
  4532.  
  4533. > It almost makes you want to try those $$$GET GOOD CREDIT INSTANTLY!!!$$$
  4534. > schemes just on the off chance they won't land you in prison.
  4535. > Or sneak off with your father's credit card...
  4536.  
  4537. Or, send a check or MO.
  4538.  
  4539. > Credit cards must stop being a necessity for electronic commerce.
  4540. > We need a direct-debit system, where if you have the money in a bank
  4541. > account, you can buy online.
  4542. > And until that system is imposed, at the very least, it should all be free.
  4543.  
  4544. ROTFLMAO.  Grow up.  This may very well happen, however, it certainly
  4545. isn't a dire necessity.
  4546.  
  4547. > >IMO, it is worth twice the $35 shareware fee.
  4548. > It is not fair though that there are people who physically have the $35 and
  4549. > still can't get it!
  4550.  
  4551. Nonsense.
  4552.  
  4553. If you care to futher this exchange, feel free to email me privately, as
  4554. I think we are now into territory not appropriate for this list.
  4555.  
  4556.  
  4557.  
  4558. Ken...
  4559.  
  4560.  
  4561.  
  4562. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4563. Post Message:   fractint@lists.xmission.com
  4564. Get Commands:   majordomo@lists.xmission.com "help"
  4565. Administrator:  twegner@phoenix.net
  4566. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4567.  
  4568.  
  4569. -------------------------------------------------------------------------------
  4570.  
  4571. From: comdotatdotcom@csi.com
  4572. Subject: (fractint) New (free) fractint utility
  4573. Date: 13 Feb 1999 20:16:04 +0000
  4574.  
  4575. Hi Folks,
  4576.   At the risk of inflaming the on going free software debate further may I
  4577. announce the birth of Paste & go! the new, potentially useful, definitely
  4578. simple, front end for fractint under win95.
  4579.  
  4580.   As I've been told to learn some visual basic for work ( Don't even *think*
  4581. about that message anyone, I know it's slow and nasty and non portable and all
  4582. :-) ... and this isn't a language advocacy list!) I've made my first ever
  4583. windows app something that the list members here might have a use for.
  4584.  
  4585.  It's a box you can paste a par into, (make sure that it's the sort of par that
  4586. has the formula included if necessary, separate frms get dealt with next
  4587. version) and a big button that invokes fractint and tells it to calculate the
  4588. par... no more fiddling with notepad or whatever.
  4589.  
  4590. And that's all so far :-)
  4591.  
  4592. get it here:
  4593.  
  4594. http://web.ukonline.co.uk/robin.b2/pastengo.zip   (4k)
  4595.  
  4596. It runs on win 95 and NT4 and probably win98, just unzip into your fractint dir
  4597. and run it from there.
  4598.  
  4599. If you get a complaint about a missing DLL when you try and run it than you'll
  4600. need to grab this also:
  4601.  
  4602. http://web.ukonline.co.uk/robin.b2/msruntime.zip (640K!!)
  4603.  
  4604. and unzip it into your windows/system directory (or windows/system32 if using
  4605. NT4) Though it looks like this file, msvbm50.dll, comes with win95.
  4606.  
  4607. That's it really, all should be obvious, it will help if you have an sstools.ini
  4608. with a default video mode, then you won't have to keep selecting one. 
  4609.  
  4610. !!!!!!!!! Don't mail the list with complaints!!!!!!!!!
  4611.  
  4612. mail me instead: 
  4613.  
  4614. comdotatdotcom@csi.com  or  robin.b2@ukonline.co.uk
  4615.  
  4616. All comments gratefully received, if possible remember to tell me the source of
  4617. the data you pasted (email client, editor, web page or whatever)
  4618.  
  4619. Cheers,
  4620.      Robin.
  4621.  
  4622. P.S. this is free, no charge, only took me a lunch hour anyway, no guarantees,
  4623. not-very-pretty-ware. You have been warned :-)
  4624.  
  4625. P.P.S make sure that the first character you select for the copy from email or
  4626. wherever is the first character of the par name, and only one par at a time
  4627. please.
  4628.  
  4629.  
  4630.  
  4631. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4632. Post Message:   fractint@lists.xmission.com
  4633. Get Commands:   majordomo@lists.xmission.com "help"
  4634. Administrator:  twegner@phoenix.net
  4635. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4636.  
  4637.  
  4638. -------------------------------------------------------------------------------
  4639.  
  4640. From: Baxter Tocher <baxter@trance.ednet.co.uk>
  4641. Subject: (fractint) Looking for map
  4642. Date: 13 Feb 1999 18:50:45 +0000
  4643.  
  4644. Hi folks
  4645.  
  4646. Can anyone point me towards alien.map? I need to to render a .par
  4647. properly and can't find it anywhere.
  4648.  
  4649. Thanks
  4650.  
  4651. -- 
  4652.  
  4653. Baxter
  4654.  
  4655. baxter@trance.ednet.co.uk
  4656.  
  4657.  
  4658.  
  4659. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4660. Post Message:   fractint@lists.xmission.com
  4661. Get Commands:   majordomo@lists.xmission.com "help"
  4662. Administrator:  twegner@phoenix.net
  4663. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4664.  
  4665.  
  4666. -------------------------------------------------------------------------------
  4667.  
  4668. From: "Shauna Jones" <shauna@aloha.net>
  4669. Subject: (fractint) Any tips using Elsa adaptor w/ Fractint?
  4670. Date: 13 Feb 1999 11:06:51 -1000
  4671.  
  4672. Just yesterday ordered myself a birthday present - an 
  4673. Elsa Gloria Synergy PCI display adaptor with 8MB of 
  4674. SGRAM, 2D and 3D acceleration, support for video 
  4675. input/output, so on.
  4676.  
  4677. Anything I should be aware of or watch out for? Thanks!
  4678.  
  4679. Another blast of bits from David
  4680. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  4681. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  4682.  
  4683. Random Thought for this Nanosecond
  4684. HTML = Hard-to-Manage Language (D.Jones)
  4685.  
  4686.  
  4687.  
  4688. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4689. Post Message:   fractint@lists.xmission.com
  4690. Get Commands:   majordomo@lists.xmission.com "help"
  4691. Administrator:  twegner@phoenix.net
  4692. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4693.  
  4694.  
  4695. -------------------------------------------------------------------------------
  4696.  
  4697. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  4698. Subject: Re: (fractint) What's up with the list?
  4699. Date: 13 Feb 1999 15:23:06 -0600
  4700.  
  4701. Dean-Christian Strik wrote:
  4702. >
  4703. > Lesse... there were Kragen (still think it's too bad he left),
  4704. > Peter Gavin, Paul Carlson, Steve 'SKarl52884', Paul Derbyshire,
  4705. > Jiho Kim, Linda Allison, Jon Camp, 'davides', Christian Strik :),
  4706. > Paul N. Lee, ....
  4707. >
  4708.  
  4709. I am still around, just barely have time to read all 100+ email a day
  4710. (that's personal email).  Then there is the new job as D.P.Manager, with
  4711. another set of email.  Plus, keeping up to date on all of the new
  4712. Fractal Related websites and Links, etc.....   :-)
  4713.  
  4714. P.N.L.
  4715. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  4716.  
  4717. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4718. Post Message:   fractint@lists.xmission.com
  4719. Get Commands:   majordomo@lists.xmission.com "help"
  4720. Administrator:  twegner@phoenix.net
  4721. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4722.  
  4723.  
  4724. -------------------------------------------------------------------------------
  4725.  
  4726. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  4727. Subject: Re: (fractint) What's up with the list?
  4728. Date: 13 Feb 1999 15:36:22 -0600
  4729.  
  4730. Paul Derbyshire wrote:
  4731. >
  4732. > Credit cards must stop being a necessity for electronic commerce.
  4733. > We need a direct-debit system, where if you have the money in a
  4734. > bank account, you can buy online.  And until that system is imposed,
  4735. > at the very least, it should all be free.
  4736.  
  4737. It's called a "Bank Debit Card", which is the only plastic that I
  4738. carry.  I got rid of all my credit cards a decade and a half ago.  Been
  4739. a lot happier since.   :-)
  4740.  
  4741. >
  4742. > It is not fair though that there are people who physically
  4743. > have the $35 and still can't get it!
  4744.  
  4745. Send the money, cashier's check or money order to me, and I'll buy you
  4746. what ever you can afford.   :-)   You'll have it delivered to you at my
  4747. expense (call it a gift).
  4748.  
  4749. P.N.L.
  4750. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  4751.  
  4752. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4753. Post Message:   fractint@lists.xmission.com
  4754. Get Commands:   majordomo@lists.xmission.com "help"
  4755. Administrator:  twegner@phoenix.net
  4756. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4757.  
  4758.  
  4759. -------------------------------------------------------------------------------
  4760.  
  4761. From: "Tim Wegner" <twegner@phoenix.net>
  4762. Subject: (fractint) The price of fractal software
  4763. Date: 13 Feb 1999 16:07:21 -0600
  4764.  
  4765. I was considering declaring the price of software off topic, but 
  4766. decided against it. However I don't see any reason for folks to get 
  4767. all upset about other people's opinions, so I do ask that we tone 
  4768. down the rhetoric. 
  4769.  
  4770. I'd like to come at this from another angle. Fractint is open source 
  4771. as well as free. I am disappointed these days at the number of new 
  4772. fractal programs that are not open source. I am even more 
  4773. concerned when I see non-open-source programs that make 
  4774. fractint-compatability their major feature, but do not share their 
  4775. source.  
  4776.  
  4777. Don't get me wrong, authors of non-open source programs have a 
  4778. perfect right to do what they want. As much as I might not like it, 
  4779. they even have the right to make their programs fractint-compatible. 
  4780. They don't have the right to re-use fractint's code for another fractal 
  4781. program, though it is unlikely anyone is. If I wanted to make my 
  4782. program behave like another, I would study the other code 
  4783. carefully, then right my own. This is probably legal. 
  4784.  
  4785. The question then is, should Fractint remain open source, or 
  4786. should we not release the source to version 20? Why should we 
  4787. write open source, free software, when others will look at our code, 
  4788. even ask us questions about specific lines of code, and incorporate 
  4789. our new features into their fractint-compatible, commercial, closed 
  4790. source program?
  4791.  
  4792. We are committed to open source because it makes our program a 
  4793. community project. Fractint could never have been written by the 
  4794. original authors alone. We have gotten code contributions from a 
  4795. many programmers around the world. This is a large part of what 
  4796. has made this a great project. The other reward is just seeing the 
  4797. pleasure and excitement of our community of users.
  4798.  
  4799. Tim
  4800.  
  4801.  
  4802.  
  4803.  
  4804. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4805. Post Message:   fractint@lists.xmission.com
  4806. Get Commands:   majordomo@lists.xmission.com "help"
  4807. Administrator:  twegner@phoenix.net
  4808. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4809.  
  4810.  
  4811. -------------------------------------------------------------------------------
  4812.  
  4813. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  4814. Subject: Re: (fractint) simple source code needed
  4815. Date: 13 Feb 1999 23:15:08 +0100
  4816.  
  4817. Paul wrote:
  4818.  
  4819. >The 1970s were the days for hackers. Those were the days when code grinders
  4820. >were code grinders, suits were suits, hackers never wore suits, and real
  4821. >men arranged NOPs and weird instructions in their idle loops and positioned
  4822. >data on drums in such a way as to make the CPU put out RF signals that
  4823. >played a tune on an AM radio sitting near the box!
  4824.  
  4825. Fun! I was born far too late :)
  4826.  
  4827. --
  4828.  
  4829. Dean-Christian Strik
  4830.    ICQ: 11760568
  4831.  dean2@bigfoot.com
  4832. cstrik.isg@hetnet.nl
  4833.  
  4834. Real programmers like vending machine popcorn. Coders pop it in the
  4835. microwave oven. Real programmers use the heat given off by the CPU. They can
  4836. tell what job is running just by listening to the rate of popping.
  4837.  
  4838.  
  4839.  
  4840. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4841. Post Message:   fractint@lists.xmission.com
  4842. Get Commands:   majordomo@lists.xmission.com "help"
  4843. Administrator:  twegner@phoenix.net
  4844. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4845.  
  4846.  
  4847. -------------------------------------------------------------------------------
  4848.  
  4849. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  4850. Subject: Posts up! (Was: Re: (fractint) What's up with the list?)
  4851. Date: 13 Feb 1999 23:19:41 +0100
  4852.  
  4853. Hey, we got our # of posts up!
  4854.  
  4855. Let's continue the war :)
  4856.  
  4857. --
  4858.  
  4859. Dean-Christian Strik
  4860.    ICQ: 11760568
  4861.  dean2@bigfoot.com
  4862. cstrik.isg@hetnet.nl
  4863.  
  4864. Real programmers like vending machine popcorn. Coders pop it in the
  4865. microwave oven. Real programmers use the heat given off by the CPU. They can
  4866. tell what job is running just by listening to the rate of popping.
  4867.  
  4868.  
  4869.  
  4870. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4871. Post Message:   fractint@lists.xmission.com
  4872. Get Commands:   majordomo@lists.xmission.com "help"
  4873. Administrator:  twegner@phoenix.net
  4874. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4875.  
  4876.  
  4877. -------------------------------------------------------------------------------
  4878.  
  4879. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  4880. Subject: Re: (fractint) What's up with the list?
  4881. Date: 13 Feb 1999 23:16:34 +0100
  4882.  
  4883. Again I got Ken's reply before your message. Which brings us back to the
  4884. thread subject :)
  4885.  
  4886. --
  4887.  
  4888. Dean-Christian Strik
  4889.    ICQ: 11760568
  4890.  dean2@bigfoot.com
  4891. cstrik.isg@hetnet.nl
  4892.  
  4893. Real programmers like vending machine popcorn. Coders pop it in the
  4894. microwave oven. Real programmers use the heat given off by the CPU. They can
  4895. tell what job is running just by listening to the rate of popping.
  4896.  
  4897. -----Original Message-----
  4898.  
  4899.  
  4900. >Ultra Fractal is timebombware. It should by all rights be free and open
  4901. >source. :P
  4902. >
  4903. >--
  4904. >   .*.  "Clouds are not spheres, mountains are not cones, coastlines are
  4905. not
  4906. >-()  <  circles, and bark is not smooth, nor does lightning travel in a
  4907. >   `*'  straight
  4908. e."    -------------------------------------------------
  4909. >        -- B. Mandelbrot  |http://surf.to/pgd.net
  4910. >_____________________ ____|________     Paul Derbyshire
  4911. pderbysh@usa.net
  4912. >Programmer & Humanist|ICQ: 10423848|
  4913. >
  4914. >--------------------------------------------------------------
  4915. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  4916. >Post Message:   fractint@lists.xmission.com
  4917. >Get Commands:   majordomo@lists.xmission.com "help"
  4918. >Administrator:  twegner@phoenix.net
  4919. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4920. >
  4921.  
  4922.  
  4923.  
  4924. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4925. Post Message:   fractint@lists.xmission.com
  4926. Get Commands:   majordomo@lists.xmission.com "help"
  4927. Administrator:  twegner@phoenix.net
  4928. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4929.  
  4930.  
  4931. -------------------------------------------------------------------------------
  4932.  
  4933. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  4934. Subject: Re: (fractint) What's up with the list?
  4935. Date: 13 Feb 1999 23:16:00 +0100
  4936.  
  4937. Frederik's Dutch, right? Can I pay in guilders then?
  4938.  
  4939. --
  4940.  
  4941. Dean-Christian Strik
  4942.    ICQ: 11760568
  4943.  dean2@bigfoot.com
  4944. cstrik.isg@hetnet.nl
  4945.  
  4946. Real programmers like vending machine popcorn. Coders pop it in the
  4947. microwave oven. Real programmers use the heat given off by the CPU. They can
  4948. tell what job is running just by listening to the rate of popping.
  4949.  
  4950. -----Original Message-----
  4951.  
  4952.  
  4953. >>
  4954. >> Ultra Fractal is timebombware. It should by all rights be free and open
  4955. >> source. :P
  4956. >
  4957. >Why?
  4958. >
  4959. >Just because the original authors of Fractint chose to make the code
  4960. >open and freely available doesn't mean that everyone who writes software
  4961. >should follow suit.  UF is an outstanding program and Frederik has done
  4962. >a fantastic job of developing it and incorporating the suggestions and
  4963. >comments of the beta testers.  That isn't to say that Fractint doesn't
  4964. >have its advandages over UF.  They are both outstanding tools to create
  4965. >images with.  IMO, it is worth twice the $35 shareware fee.  I think
  4966. >Frederik is well within his rights to make it shareware.  Even if it
  4967. >were freeware, I don't see that he should be obligated to share the
  4968. >source.
  4969. >
  4970. >Of course, YMMV.
  4971. >
  4972. >
  4973. >Ken...
  4974. >
  4975. >
  4976. >
  4977. >
  4978. >--------------------------------------------------------------
  4979. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  4980. >Post Message:   fractint@lists.xmission.com
  4981. >Get Commands:   majordomo@lists.xmission.com "help"
  4982. >Administrator:  twegner@phoenix.net
  4983. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4984. >
  4985.  
  4986.  
  4987.  
  4988. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4989. Post Message:   fractint@lists.xmission.com
  4990. Get Commands:   majordomo@lists.xmission.com "help"
  4991. Administrator:  twegner@phoenix.net
  4992. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4993.  
  4994.  
  4995. -------------------------------------------------------------------------------
  4996.  
  4997. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  4998. Subject: Re: (fractint) What's up with the list?
  4999. Date: 13 Feb 1999 23:21:12 +0100
  5000.  
  5001. I tend NOT to send money because I don't have a credit card and it's too
  5002. expensive for me (student) to send it to the States, from Holland. I like it
  5003. that Frederik lives in Holland :)
  5004.  
  5005. --
  5006.  
  5007. Dean-Christian Strik
  5008.    ICQ: 11760568
  5009.  dean2@bigfoot.com
  5010. cstrik.isg@hetnet.nl
  5011.  
  5012. Real programmers like vending machine popcorn. Coders pop it in the
  5013. microwave oven. Real programmers use the heat given off by the CPU. They can
  5014. tell what job is running just by listening to the rate of popping.
  5015.  
  5016. -----Original Message-----
  5017.  
  5018.  
  5019. >Paul,
  5020. >
  5021. > - Ultra Fractal is timebombware. It should by all rights be free and open
  5022. > - source. :P
  5023. >
  5024. >You and I have covered this in private e-mail before. For some reason you
  5025. >labor under the impression that you, simple by virtue of your existence,
  5026. >are *entitled* to help yourself to the work of everyone else, for free.
  5027. >
  5028. >You can pay for Ultra Fractal (and most other shareware!) by sending a
  5029. >check or money order to the author. How DARE you whine that it's "too much
  5030. >trouble" to mess with stamps and writing a check! Do you think the world is
  5031. >here to coddle you? Do you whine that your groceries must be delivered to
  5032. >your door, because it's too much trouble for you to go to the supermarket
  5033. >to pick them up?
  5034. >
  5035. >It's time you shed this infantile attitude that you can help yourself to
  5036. >everything in the world. Frederik took the opportunity to develop a fine
  5037. >piece of software. If he wants to charge for his labors, he is entitled to
  5038. >do so. Plain and simple. When you do the work, you can decide whether to
  5039. >give it away or sell it, but don't even THINK about presuming to dictate to
  5040. >someone else.
  5041. >
  5042. >I suspect once you get out of school and into the real world, you will
  5043. >understand the value of work. There are some things you really don't learn
  5044. >in school.
  5045. >
  5046. >Damien M. Jones   \\
  5047. >dmj@fractalus.com  \\  Fractalus Galleries & Info:
  5048. >                    \\  http://www.fractalus.com/
  5049. >
  5050. >Please do not post my e-mail address on a web site or
  5051. >in a newsgroup.  Thank you.
  5052. >
  5053. >--------------------------------------------------------------
  5054. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  5055. >Post Message:   fractint@lists.xmission.com
  5056. >Get Commands:   majordomo@lists.xmission.com "help"
  5057. >Administrator:  twegner@phoenix.net
  5058. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5059. >
  5060.  
  5061.  
  5062.  
  5063. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5064. Post Message:   fractint@lists.xmission.com
  5065. Get Commands:   majordomo@lists.xmission.com "help"
  5066. Administrator:  twegner@phoenix.net
  5067. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5068.  
  5069.  
  5070. -------------------------------------------------------------------------------
  5071.  
  5072. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  5073. Subject: Re: (fractint) Dean: We're here.
  5074. Date: 13 Feb 1999 23:21:33 +0100
  5075.  
  5076. Yahoo! ;)
  5077.  
  5078. -----Original Message-----
  5079.  
  5080.  
  5081. >Dean-Christian;
  5082. >
  5083. >See. We're still all here--and we're talking. :-))))))
  5084. >
  5085. >Bob
  5086. >
  5087. >--------------------------------------------------------------
  5088. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  5089. >Post Message:   fractint@lists.xmission.com
  5090. >Get Commands:   majordomo@lists.xmission.com "help"
  5091. >Administrator:  twegner@phoenix.net
  5092. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5093. >
  5094.  
  5095.  
  5096.  
  5097. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5098. Post Message:   fractint@lists.xmission.com
  5099. Get Commands:   majordomo@lists.xmission.com "help"
  5100. Administrator:  twegner@phoenix.net
  5101. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5102.  
  5103.  
  5104. -------------------------------------------------------------------------------
  5105.  
  5106. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  5107. Subject: Re: (fractint) What's up with the list?
  5108. Date: 13 Feb 1999 23:18:15 +0100
  5109.  
  5110. Time for me to join the UF mailing list, I guess.
  5111.  
  5112. --
  5113.  
  5114. Dean-Christian Strik
  5115.    ICQ: 11760568
  5116.  dean2@bigfoot.com
  5117. cstrik.isg@hetnet.nl
  5118.  
  5119. Real programmers like vending machine popcorn. Coders pop it in the
  5120. microwave oven. Real programmers use the heat given off by the CPU. They can
  5121. tell what job is running just by listening to the rate of popping.
  5122.  
  5123.  
  5124.  
  5125.  
  5126. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5127. Post Message:   fractint@lists.xmission.com
  5128. Get Commands:   majordomo@lists.xmission.com "help"
  5129. Administrator:  twegner@phoenix.net
  5130. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5131.  
  5132.  
  5133. -------------------------------------------------------------------------------
  5134.  
  5135. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  5136. Subject: Re: (fractint) Anyone use Red Hat Linux?
  5137. Date: 13 Feb 1999 23:23:12 +0100
  5138.  
  5139. I have it :)
  5140.  
  5141. Hey, I know my linux :)
  5142.  
  5143. Why not use RPMs? Cause I always get errors with RPMs. I hate it when an rpm
  5144. says I don't have /bin/sh. And ever read the WINE list/ng? (Not likely that
  5145. you want winapps to run under lnx, I think). You'll know.
  5146.  
  5147. --
  5148.  
  5149. Dean-Christian Strik
  5150.    ICQ: 11760568
  5151. dean2@bigfoot.com
  5152. cstrik.isg@hetnet.nl
  5153.  
  5154. Real programmers like vending machine popcorn. Coders pop it in the
  5155. microwave oven. Real programmers use the heat given off by the CPU. They can
  5156. tell what job is running just by listening to the rate of popping.
  5157.  
  5158.  
  5159. -----Original Message-----
  5160.  
  5161.  
  5162. >At 01:09 AM 2/13/99 +0100, you wrote:
  5163. >>My distribution of the xfractint source (not the official one!) contains
  5164. the
  5165. >>binary. However, the binary exits with the error that ncurses.so can't be
  5166. >>found.
  5167. >
  5168. >Well...get ncurses.so. It's a linux equivalent of a DLL. You know what to
  5169. >do about missing DLL problems right? :-)
  5170. >
  5171. >>PS. Never use RPMs. Not on non-RedHat systems, and not even on RedHat...
  5172. >
  5173. >Why?
  5174. >--
  5175. >   .*.  "Clouds are not spheres, mountains are not cones, coastlines are
  5176. not
  5177. >-()  <  circles, and bark is not smooth, nor does lightning travel in a
  5178. >   `*'  straight
  5179. e."    -------------------------------------------------
  5180. >        -- B. Mandelbrot  |http://surf.to/pgd.net
  5181. >_____________________ ____|________     Paul Derbyshire
  5182. pderbysh@usa.net
  5183. >Programmer & Humanist|ICQ: 10423848|
  5184. >
  5185. >--------------------------------------------------------------
  5186. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  5187. >Post Message:   fractint@lists.xmission.com
  5188. >Get Commands:   majordomo@lists.xmission.com "help"
  5189. >Administrator:  twegner@phoenix.net
  5190. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5191. >
  5192.  
  5193.  
  5194.  
  5195.  
  5196.  
  5197. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5198. Post Message:   fractint@lists.xmission.com
  5199. Get Commands:   majordomo@lists.xmission.com "help"
  5200. Administrator:  twegner@phoenix.net
  5201. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5202.  
  5203.  
  5204. -------------------------------------------------------------------------------
  5205.  
  5206. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  5207. Subject: Re: (fractint) The price of fractal software
  5208. Date: 13 Feb 1999 23:41:40 +0100
  5209.  
  5210. Tim Wegner, surprisingly, wrote:
  5211.  
  5212. [sorry to snip]
  5213.  
  5214. The question then is, should Fractint remain open source, or
  5215. should we not release the source to version 20? Why should we
  5216. write open source, free software, when others will look at our code,
  5217. even ask us questions about specific lines of code, and incorporate
  5218. our new features into their fractint-compatible, commercial, closed
  5219. source program?
  5220.  
  5221.  
  5222. YES WE SHOULD. I am stunned you ask this. Even if it'd be rhetorical.
  5223.  
  5224. [sorry to snip again]
  5225.  
  5226.  
  5227.  
  5228. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5229. Post Message:   fractint@lists.xmission.com
  5230. Get Commands:   majordomo@lists.xmission.com "help"
  5231. Administrator:  twegner@phoenix.net
  5232. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5233.  
  5234.  
  5235. -------------------------------------------------------------------------------
  5236.  
  5237. From: "Damien M. Jones" <dmj@fractalus.com>
  5238. Subject: (fractint) And now, for something completely different
  5239. Date: 13 Feb 1999 16:53:52 -0600
  5240.  
  5241. Rich               { ; Copyright 1998 Damien M. Jones
  5242.                      ; 28:24 in FractInt on a P-II 350 at 1600x1200
  5243.                      ;  1:47 in Ultra Fractal
  5244.   reset=1960 type=formula formulafile=dmj-tce.frm
  5245.   formulaname=dmj-Jul2-TC001 passes=2
  5246.   center-mag=0.225/-0.275/4.8482/1/-127.208
  5247.   params=-0.8375/0.15/-0.7625/0.05 float=y maxiter=255 inside=0
  5248.   outside=real symmetry=none
  5249.   colors=000<4>z000C0<4>zC00P0<4>zP00a0<4>za00n0<4>zn00z0<4>zz000C<4>z0C0C\
  5250.   C<4>zCC0PC<4>zPC0aC<4>zaC0nC<4>znC0zC<4>zzC00P<4>z0P0CP<4>zCP0PP<4>zPP0a\
  5251.   P<4>zaP0nP<4>znP0zP<4>zzP00a<4>z0a0Ca<4>zCa0Pa<4>zPa0aa<4>zaa0na<4>zna0z\
  5252.   a<4>zza00n<4>z0n0Cn<4>zCn0Pn<4>zPn0an<4>zan0nn<4>znn0zn<4>zzn00z<4>z0z0C\
  5253.   z<4>zCz0Pz<4>zPz0az<4>zaz0nz<4>znz0zz<4>zzz000<29>zzz000<6>000zzz
  5254.   }
  5255.  
  5256. dmj-Jul2-TC001 {
  5257. ;
  5258. ; This formula combines three Julia2 fractal layers
  5259. ; using a "Difference" merge mode. Each layer is
  5260. ; colored using the Distance Estimator algorithm
  5261. ; and a hand-picked gradient.
  5262. ;
  5263. ; This formula was designed to reproduce the
  5264. ; image "Rich", created with Ultra Fractal. Since
  5265. ; it doesn't use UF's spline interpolation on its
  5266. ; gradients, it is not an exact match.
  5267. ;
  5268. ; initialization:
  5269.   r = 0
  5270.   g = 0
  5271.   b = 0
  5272.   done = 0
  5273.   i = 0
  5274.  
  5275.   e1 = 0            ; distance estimates
  5276.   e2 = 0
  5277.   e3 = 0
  5278.   
  5279.   t = 1
  5280.   z = 0
  5281.   z1 = pixel                    ; pixel
  5282.   z2 = (pixel - (0.225,-0.275)) * ((0,1)^(4/3)) + (0.225,-0.275) ; 120 deg.
  5283.   z3 = (pixel - (0.225,-0.275)) * ((0,1)^(8/3)) + (0.225,-0.275) ; 240 deg.
  5284.   done1 = 0
  5285.   done2 = 0
  5286.   done3 = 0
  5287.   z = pixel, c = pixel
  5288.   
  5289.   :
  5290.  
  5291. ; iteration:
  5292.   z = z + 1            ; thwart periodicity checking
  5293.   IF (t == 0)            ; do Julia2 iteration
  5294.     t = 1
  5295.     IF (done1 == 0)
  5296.       z1 = sqr(z1) + p1
  5297.     ENDIF
  5298.     IF (done2 == 0)
  5299.       z2 = sqr(z2) + p1
  5300.     ENDIF
  5301.     IF (done3 == 0)
  5302.       z3 = sqr(z3) + p1
  5303.     ENDIF
  5304.   ELSE
  5305.     t = 0
  5306.     IF (done1 == 0)
  5307.       z1 = sqr(z1) + p2
  5308.     ENDIF
  5309.     IF (done2 == 0)
  5310.       z2 = sqr(z2) + p2
  5311.     ENDIF
  5312.     IF (done3 == 0)
  5313.       z3 = sqr(z3) + p2
  5314.     ENDIF
  5315.   ENDIF
  5316.  
  5317.   IF (|z1| < 1e20)
  5318.     e1 = 2*z1*e1+1        ; update distance estimate
  5319.   ELSE
  5320.     done1 = 1            ; done with this one
  5321.   ENDIF
  5322.   IF (|z2| < 1e20)
  5323.     e2 = 2*z2*e2+1        ; update distance estimate
  5324.   ELSE
  5325.     done2 = 1            ; done with this one
  5326.   ENDIF
  5327.   IF (|z3| < 1e20)
  5328.     e3 = 2*z3*e3+1        ; update distance estimate
  5329.   ELSE
  5330.     done3 = 1            ; done with this one
  5331.   ENDIF
  5332.   
  5333. ; bailout test:
  5334.   IF (done1+done2+done3 == 3 || i == maxit-2)    ; all three points are done
  5335.     done = 1
  5336.     
  5337.     ; point has bailed out, compute color
  5338.  
  5339.     ; final distances
  5340.     e1 = sqrt(2*log(cabs(z1)) * cabs(z1) / cabs(e1))
  5341.     e2 = sqrt(2*log(cabs(z2)) * cabs(z2) / cabs(e2))
  5342.     e3 = sqrt(2*log(cabs(z3)) * cabs(z3) / cabs(e3))
  5343.     
  5344.     ; transfer functions
  5345.     e1 = sqrt(e1*4)
  5346.     e2 = sqrt(e2*4)
  5347.     e3 = sqrt(e3*4)
  5348.     e1 = e1 - trunc(e1)
  5349.     e2 = e2 - trunc(e2)
  5350.     e3 = e3 - trunc(e3)
  5351.     
  5352.     ; gradients
  5353.     IF (e1 < 0.0225)        ; first part of gradient
  5354.       e1 = (e1+0.1975)/0.22
  5355.       r = 31 + (81-31)*e1
  5356.       g = 62 + (68-62)*e1
  5357.       b = 72 + (46-72)*e1
  5358.     ELSEIF (e1 < 0.4)        ; second part of gradient
  5359.       e1 = (e1-0.0225)/0.3775
  5360.       r = 81 + (235-81)*e1
  5361.       g = 68 + (232-68)*e1
  5362.       b = 46 + (220-46)*e1
  5363.     ELSEIF (e1 < 0.8025)    ; third part of gradient
  5364.       e1 = (e1-0.4)/0.4025
  5365.       r = 235 + (31-235)*e1
  5366.       g = 232 + (62-232)*e1
  5367.       b = 220 + (72-220)*e1
  5368.     ELSE            ; last part of gradient
  5369.       e1 = (e1-0.8025)/0.22
  5370.       r = 31 + (81-31)*e1
  5371.       g = 62 + (68-62)*e1
  5372.       b = 72 + (46-72)*e1
  5373.     ENDIF
  5374.     IF (done1 == 0)        ; point is inside, use black
  5375.       r = 0
  5376.       g = 0
  5377.       b = 0
  5378.     ENDIF
  5379.  
  5380.     IF (e2 < 0.0225)        ; first part of gradient
  5381.       e2 = (e2+0.1975)/0.22
  5382.       r1 = 31 + (81-31)*e2
  5383.       g1 = 62 + (68-62)*e2
  5384.       b1 = 72 + (46-72)*e2
  5385.     ELSEIF (e2 < 0.4)        ; second part of gradient
  5386.       e2 = (e2-0.0225)/0.3775
  5387.       r1 = 81 + (235-81)*e2
  5388.       g1 = 68 + (232-68)*e2
  5389.       b1 = 46 + (220-46)*e2
  5390.     ELSEIF (e2 < 0.8025)    ; third part of gradient
  5391.       e2 = (e2-0.4)/0.4025
  5392.       r1 = 235 + (31-235)*e2
  5393.       g1 = 232 + (62-232)*e2
  5394.       b1 = 220 + (72-220)*e2
  5395.     ELSE            ; last part of gradient
  5396.       e2 = (e2-0.8025)/0.22
  5397.       r1 = 31 + (81-31)*e2
  5398.       g1 = 62 + (68-62)*e2
  5399.       b1 = 72 + (46-72)*e2
  5400.     ENDIF
  5401.     IF (done2 == 0)        ; point is inside, use black
  5402.       r1 = 0
  5403.       g1 = 0
  5404.       b1 = 0
  5405.     ENDIF
  5406.     r = abs(r-r1)        ; Difference merge mode
  5407.     g = abs(g-g1)
  5408.     b = abs(b-b1)
  5409.     
  5410.     IF (e3 < 0.0225)        ; first part of gradient
  5411.       e3 = (e3+0.1975)/0.22
  5412.       r1 = 31 + (81-31)*e3
  5413.       g1 = 62 + (68-62)*e3
  5414.       b1 = 72 + (46-72)*e3
  5415.     ELSEIF (e3 < 0.4)        ; second part of gradient
  5416.       e3 = (e3-0.0225)/0.3775
  5417.       r1 = 81 + (235-81)*e3
  5418.       g1 = 68 + (232-68)*e3
  5419.       b1 = 46 + (220-46)*e3
  5420.     ELSEIF (e3 < 0.8025)    ; third part of gradient
  5421.       e3 = (e3-0.4)/0.4025
  5422.       r1 = 235 + (31-235)*e3
  5423.       g1 = 232 + (62-232)*e3
  5424.       b1 = 220 + (72-220)*e3
  5425.     ELSE            ; last part of gradient
  5426.       e3 = (e3-0.8025)/0.22
  5427.       r1 = 31 + (81-31)*e3
  5428.       g1 = 62 + (68-62)*e3
  5429.       b1 = 72 + (46-72)*e3
  5430.     ENDIF
  5431.     IF (done3 == 0)        ; point is inside, use black
  5432.       r1 = 0
  5433.       g1 = 0
  5434.       b1 = 0
  5435.     ENDIF
  5436.     r = abs(r-r1)        ; Difference merge mode
  5437.     g = abs(g-g1)
  5438.     b = abs(b-b1)
  5439.     
  5440.   ENDIF
  5441.   i = i + 1
  5442.  
  5443. ; color processing:
  5444. ;  
  5445. ; True Color Engine 1.0
  5446. ; Copyright 1999 Damien M. Jones
  5447. ; http://www.fractalus.com/
  5448. ;
  5449. ; This block of formula code provides simulated true color
  5450. ; in FractInt by dithering. Simply feed red, green, and blue
  5451. ; values into the variables r, g, and b, set done=1 when your
  5452. ; values are ready, and store the iteration count in i. To
  5453. ; view the results, use the associated true color palette,
  5454. ; use outside=real, and use passes=1 or passes=2; don't use
  5455. ; guessing.
  5456. ;
  5457. ; You can re-use this code in your own formulas, but please
  5458. ; give credit. Thanks!
  5459. ;
  5460.   IF (done > 0)
  5461.     ; 1. Clip to valid ranges
  5462.     IF (r > 255)        ; You can remove these lines
  5463.       r = 255            ; if you are absolutely sure
  5464.     ENDIF            ; your RGB values will never
  5465.     IF (g > 255)        ; be out of range. That will
  5466.       g = 255            ; make your formula run a bit
  5467.     ENDIF            ; faster.
  5468.     IF (b > 255)
  5469.       b = 255
  5470.     ENDIF
  5471.     IF (r < 0)
  5472.       r = 0
  5473.     ENDIF
  5474.     IF (g < 0)
  5475.       g = 0
  5476.     ENDIF
  5477.     IF (b < 0)
  5478.       b = 0
  5479.     ENDIF
  5480.  
  5481.     ; 2. Figure out which spot in the dither pattern to use
  5482.     ; The dither pattern is a 4x4 matrix; since there are
  5483.     ; only six shades of each color, in-between shades must
  5484.     ; be "mixed".
  5485.     xdither = real(scrnpix) - floor(real(scrnpix)*0.25)*4
  5486.     ydither = imag(scrnpix) - floor(imag(scrnpix)*0.25)*4
  5487.  
  5488.     ; 3. Calculate the dither threshold for each channel
  5489.     ; a. Determine quadrant in dither pattern
  5490.     IF (ydither > 1.5)        ; bottom half
  5491.       ydither = ydither - 2    ; move to top half
  5492.       IF (xdither < 1.5)    ; left half (lower left quadrant)
  5493.         rdither = 3
  5494.     gdither = 3
  5495.     bdither = 3
  5496.       ELSE            ; right half (lower right quadrant)
  5497.         xdither = xdither - 2    ; move to left half
  5498.         rdither = 1
  5499.     gdither = 1
  5500.     bdither = 1
  5501.       ENDIF
  5502.     ELSE            ; top half
  5503.       IF (xdither > 1.5)    ; right half (upper right quadrant)
  5504.         xdither = xdither - 2    ; move to left half
  5505.         rdither = 2
  5506.         gdither = 2
  5507.         bdither = 2
  5508.       ELSE            ; left half (upper left quadrant)
  5509.         rdither = 0
  5510.         gdither = 0
  5511.         bdither = 0
  5512.       ENDIF
  5513.     ENDIF
  5514.     ; b. Determine precise cell in quadrant
  5515.     IF (ydither > 0.5)        ; bottom half
  5516.       IF (xdither < 0.5)    ; left half (bottom left cell)
  5517.         rdither = rdither + 12
  5518.         gdither = gdither + 12
  5519.         bdither = bdither + 12
  5520.       ELSE            ; right half (bottom right cell)
  5521.         rdither = rdither + 4
  5522.         gdither = gdither + 4
  5523.         bdither = bdither + 4
  5524.       ENDIF
  5525.     ELSE            ; top half
  5526.       IF (xdither > 0.5)    ; right half (upper right cell)
  5527.         rdither = rdither + 8
  5528.         gdither = gdither + 8
  5529.         bdither = bdither + 8
  5530.       ENDIF
  5531.     ENDIF
  5532.  
  5533.     ; 4. Scale r, g, b with dither weight added
  5534.     r = (r*80/255 + rdither) * 0.0625
  5535.     g = (g*80/255 + rdither) * 0.0625
  5536.     b = (b*80/255 + rdither) * 0.0625
  5537.     
  5538.     ; 5. Compute final color and fudge z
  5539.     r = floor(r) + floor(g)*6 + floor(b)*36
  5540.     z = r - i - 7
  5541.   ENDIF
  5542.   
  5543. ; FractInt bailout:
  5544.   done == 0
  5545. }
  5546.  
  5547.  
  5548. Damien M. Jones   \\
  5549. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  5550.                     \\  http://www.fractalus.com/
  5551.  
  5552. Please do not post my e-mail address on a web site or
  5553. in a newsgroup.  Thank you.
  5554.  
  5555. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5556. Post Message:   fractint@lists.xmission.com
  5557. Get Commands:   majordomo@lists.xmission.com "help"
  5558. Administrator:  twegner@phoenix.net
  5559. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5560.  
  5561.  
  5562. -------------------------------------------------------------------------------
  5563.  
  5564. From: "Nature Leseul" <nleseul@zurich.crosswinds.net>
  5565. Subject: (fractint) In Which The Mad Lurker Actually Posts A Par
  5566. Date: 13 Dec 1999 19:13:03 -0600
  5567.  
  5568.   Well, I was playing with my frm file, and I came up with this formula. I
  5569. don't know if this same mathematical logic has done before; I don't know all
  5570. the frms floating around out there. :-P The parallelogram structure here is
  5571. kinda interesting.
  5572.  
  5573. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  5574. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  5575. !i!i!i!i!i!i!i!i
  5576.  
  5577.  
  5578. Tunnel             { ; The light at the end of the tunnel
  5579.                      ; Nature Leseul, 2-13-99
  5580.   reset=1960 type=formula formulafile=leseul.frm formulaname=Parallelogram
  5581.   passes=b center-mag=-1.77471/-2.7597e-005/13.33431/1.0001/-90/42.198
  5582.   maxiter=10000 colors=000zzz000<5>100100322<29>zzz<12>000<201>020
  5583.   }
  5584.  
  5585. frm:Parallelogram {
  5586.  ;Nature Leseul
  5587.  z=0, z1=0, z2=0, c=pixel:
  5588.  z1 = (real(z1)+imag(z2))
  5589.  z2 = (real(z2)+imag(z1))
  5590.  z = z1*z2 + c
  5591.  z1 = z1*z1 + c
  5592.  z2 = z2*z2 + c
  5593.  |z| < 4
  5594. }
  5595. ||===================== ||
  5596. ||   --v^v-[Nature Leseul]-v^v--    ||
  5597. ||  The weird guy in the corner ||
  5598. ||          Dreamy Smurf            ||
  5599. ||             Donatello!               ||
  5600. ||      "Some are vicious,          ||
  5601. ||         some are fools,           ||
  5602. ||        and others blind            ||
  5603. ||          to see in me,             ||
  5604. ||       one of their kind."          ||
  5605. ||  -Anatoly, Endgame (Chess)||
  5606. ||"Is this off-topic or what?"||
  5607. ||===================== ||
  5608.  
  5609.  
  5610.  
  5611. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5612. Post Message:   fractint@lists.xmission.com
  5613. Get Commands:   majordomo@lists.xmission.com "help"
  5614. Administrator:  twegner@phoenix.net
  5615. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5616.  
  5617.  
  5618. -------------------------------------------------------------------------------
  5619.  
  5620. From: Mark Christenson <mchris@hooked.net>
  5621. Subject: Re: (fractint) ... The Mad Lurker Actually Posts A Par
  5622. Date: 13 Feb 1999 18:04:37 -0800
  5623.  
  5624. At 07:13 PM 12/13/98 -0600, you wrote:
  5625. >  Well, I was playing with my frm file, and I came up with this formula. I
  5626. >don't know if this same mathematical logic has done before; 
  5627. ...
  5628. >frm:Parallelogram {
  5629. ...
  5630.  
  5631. Not that it changes the validity of your formula, but you're
  5632. not actually replacing imag(z2) with imag(z1), but rather 
  5633. with itself.  
  5634.  
  5635.  z1 = (real(z1)+imag(z2)) ; imag(z1) = imag(z2)
  5636.  z2 = (real(z2)+imag(z1)) ; imag(z2) = imag(z1) = imag(z2),  .: z2 = z2
  5637.  
  5638. To do what I think you intended, you need to introduce 
  5639. a temporary variable z1', and update z1 after calculating z2.
  5640.  
  5641.  z1' = real(z1)+imag(z2)
  5642.  z2 = real(z2)+imag(z1)
  5643.  z1 = z1'
  5644.  
  5645.  
  5646. Aloha, Bud
  5647.  
  5648.  
  5649. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5650. Post Message:   fractint@lists.xmission.com
  5651. Get Commands:   majordomo@lists.xmission.com "help"
  5652. Administrator:  twegner@phoenix.net
  5653. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5654.  
  5655.  
  5656. -------------------------------------------------------------------------------
  5657.  
  5658. From: "Leon Duych" <leon_d@email.msn.com>
  5659. Subject: (fractint) FIRST-TIME USER - help!!!
  5660. Date: 13 Feb 1999 20:33:07 -0800
  5661.  
  5662. First-time user requires simple answers to simple questions:
  5663.  
  5664.     1. What is best?
  5665.          - ONE Fractint directory WITHOUT subdirectories?
  5666.                         or
  5667.          - WITH subdirectories?
  5668.                  - What subdirectory structure would be best?
  5669.  
  5670.     2. What full-screen Win95/98 DOS box settings are appropriate?
  5671.  
  5672.     3. What AUTOEXEC.BAT / CONFIG.SYS changes are useful?
  5673.  
  5674.     4. What are SSTOOLS.INI Fractint screen saver settings?
  5675.         Where must SSTOOLS.INI reside?
  5676.  
  5677. All helpful hints are much appreciated.
  5678.  
  5679.                 Leon
  5680.         leon_d@msn.com
  5681.  
  5682.  
  5683.  
  5684.  
  5685.  
  5686. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5687. Post Message:   fractint@lists.xmission.com
  5688. Get Commands:   majordomo@lists.xmission.com "help"
  5689. Administrator:  twegner@phoenix.net
  5690. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5691.  
  5692.  
  5693. -------------------------------------------------------------------------------
  5694.  
  5695. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  5696. Subject: (fractint) Resource List
  5697. Date: 13 Feb 1999 22:52:58 -0600
  5698.  
  5699. The following is a list of resources for FractInt users and Discussion List members. (Last update -- November 12, 1998) 
  5700.  
  5701. Thanks to Noel Giffin, this list is also available online at:
  5702.     http://spanky.triumf.ca/www/fractint/preslar.html
  5703.  
  5704. *** New entries
  5705.  
  5706.  
  5707. FractInt
  5708.     At Spanky ù
  5709.         http://spanky.triumf.ca/www/fractint/fractint.html
  5710.     Mirror site ù
  5711.         http://fractal.mta.ca/fractint/fractint.html
  5712.     FractInt Documentation ù
  5713.         http://spanky.triumf.ca/www/fractint/findex.html
  5714.     FractInt semi-official wish list ù
  5715.         http://web.ukonline.co.uk/members/robin.b2/olig/fracwish.htm
  5716.  
  5717.  
  5718. Information, Tutorials and Explanations
  5719.     Anti-Aliasing Explained (Damien M. Jones) ù
  5720.         http://www.fractalus.com/misc/antialias.htm
  5721.     Basic FractInt Hints and Tips (Linda Allison) ù
  5722.         http://wizzle.simplenet.com/linda/basic/basic-information.htm
  5723.     Coloring Algorithms Explained (Damien M. Jones) ù
  5724.         http://www.fractalus.com/misc/implement.htm
  5725.     ColorMap tutorial (Linda Allison) ù
  5726.         http://www.geocities.com/Paris/5519/colors.html
  5727.         http://wizzle.simplenet.com/linda/colormaps/colormaps.htm
  5728. (mirror)
  5729.     Color Map Magic (Wizzle) ù
  5730.         http://wizzle.simplenet.com/fractals/wizmaps/wizmaps.htm
  5731.     Color Tricks (Linda Allison) ù
  5732.         http://wizzle.simplenet.com/linda/colortricks/colortricks.htm
  5733.     Formula tutorial (Bradley Beacham) ù    
  5734.         http://spanky.triumf.ca/www/fractint/frm-tut/frm-tutor.html
  5735.     Fractals Explained (Linda Allison) ù
  5736.         http://wizzle.simplenet.com/linda/define/fractals_defined.htm
  5737.     Fractal Information Page (Damien M. Jones) ù
  5738.         http://www.fractalus.com/misc/info.htm
  5739.     FractInt Tutorial (Bill Rossi) - 
  5740.          http://members.aol.com/billatny/fractopi.htm
  5741.     Guide to the Mandelbrot and Julia Sets (Paul Derbyshire) ù
  5742.         http://www3.sympatico.ca/bob.beland/manguide.html
  5743.     Help for FractInt Discussion List newcomers!! (Wizzle) ù
  5744.         http://wizzle.simplenet.com/fractals/hints/fractint_list_q&a.htm
  5745.     High Resolution tutorial (Linda Allison) ù
  5746.         http://www.geocities.com/Paris/5519/lesson4.html
  5747.     Hints on getting started (Wizzle) ù
  5748.         http://wizzle.simplenet.com/fractals/hints/tips-fractint.htm
  5749.     If...Else tutorial ù
  5750.         http://spanky.triumf.ca/www/fractint/If_else.html
  5751.     Par and Frm tutorial (Linda Allison) ù
  5752.         http://www.geocities.com/Paris/5519/lesson.html
  5753.         http://wizzle.simplenet.com/linda/pars_and_frms/lesson.html (mirror)
  5754.     ParToBat, Tips and Hints for Using (or how to have a life AND
  5755. generate a
  5756. zillion fractals a day ;) ) (Linda Allison) 
  5757.         http://www.geocities.com/Paris/5519/epic.html
  5758.     PHC and PTC Formula tutorial (Sylvie Gallet) ù
  5759.         http://spanky.triumf.ca/www/fractint/phc/phc-tutor.html
  5760.     PNG vs. JPEG discussed (Damien M. Jones) ù
  5761.         http://www.fractalus.com/misc/png-jpeg.htm
  5762.     Proportioning, Sizing, and Skewing tutorial (Linda Allison) ù
  5763.         http://wizzle.simplenet.com/linda/proportion/proportions.htm
  5764.     sci.fractals FAQ ù
  5765.         http://www.mta.ca/~mctaylor/sci.fractals-faq/
  5766.     Windows 95, How to run FractInt for DOS under ù
  5767.         http://fractal.mta.ca/fractint/fracwin95.html
  5768.     Zooming tutorial (Linda Allison) ù
  5769.         http://wizzle.simplenet.com/linda/zoom/zoom-lesson.html
  5770.  
  5771.  
  5772. FractInt Discussion List
  5773.     Fractal '98 Contest ù
  5774.         http://www.fractalus.com/contest98/
  5775.     FractInt Discussion List archive ù
  5776.         ftp://ftp.xmission.com/pub/lists/fractint/archive/
  5777.     1997 Contest (thumbnails of all the entries) ù
  5778.         http://www.fractalus.com/contest/
  5779.     The 1997 Contest Kit (Re-create the magic at home!!) ù
  5780.         http://home.san.rr.com/jayrhill/Contestk.zip
  5781.     Collection of Discussion List Pars & Formulas (Les St. Clair)
  5782.     (all the pars and frms since August 1997) ù
  5783.         http://ourworld.compuserve.com/homepages/Les_StClair/fml.htm
  5784.     The iFAQ (collected topics from the list) ù
  5785.         http://home.san.rr.com/jayrhill/iFAQ/iFAQ.html
  5786.     Copyrights Discussed (and discussed) ù
  5787.         http://www.geocities.com/CapeCanaveral/Lab/3825/copyright.zip
  5788.     ColorMaps collected and organized by Wizzle ù
  5789.         http://wizzle.simplenet.com/fractals/fractint_maps/newmaps.htm
  5790.     Dr. J's Fractal of the Night ù
  5791.         http://home.san.rr.com/jayrhill/FotN/FotNindx.html
  5792.     List of FractInt Mailing List members with ICQ numbers ù
  5793.         http://come.to/fractinticq
  5794.  
  5795.  
  5796. Additional Programs & Utilities
  5797.     AddGifs program (Paul Carlson) ù
  5798.         http://www.geocities.com/CapeCanaveral/Lab/3825/addgifs.zip
  5799.     FractInt Screensaver v1.70 (Thore Berntsen) ù
  5800.         http://home.sol.no/~thbernt/fintsave.htm
  5801.     Fractal Map Generator (Paulo Guagliumi) -
  5802.         http://members.tripod.com/softwork/map
  5803.     MakeMap utility (Ron Barnett) ù
  5804.         http://members.aol.com/RBarn0001/makemap.zip
  5805.     Orgfrm program (George Martin) ù
  5806.         http://spanky.triumf.ca/pub/fractals/programs/ibmpc/orgfrm.zip
  5807.     Partobat utility (version 3.4 for slower machines) (Michael
  5808. Peters) ù
  5809.         http://spanky.triumf.ca/pub/fractals/programs/IBMPC/PARTOB.ZIP
  5810.         http://ourworld.compuserve.com/homepages/JoWeber/jo_05.htm
  5811.     Partobat utility (version 3.5 for faster machines) (Michael
  5812. Peters) ù
  5813.         http://ourworld.compuserve.com/homepages/JoWeber/jo_05.htm
  5814.     XMAP and MMAP utilities (Jim Prickett) ù
  5815.         http://www.geocities.com/SiliconValley/Way/9943
  5816.  
  5817.  
  5818. Infinite Fractal Loop
  5819.     Home Page ù
  5820.         http://www.fractalus.com/ifl/
  5821.     Graphical List ù
  5822.         http://www.fractalus.com/ifl/list.htm
  5823.  
  5824.  
  5825. Particularly Helpful Links Pages
  5826.     Wizzle's Graphlinks ù
  5827.         http://wizzle.simplenet.com/fractals/hints/graphlinks.htm
  5828.  
  5829.  
  5830. Fractal merchandise (posters, mouse mats, t-shirts, etc.)
  5831.     Lifesmith ù
  5832.         http://www.lifesmith.com/
  5833.     Refractal Design Inc. (fractal jewelry) ù
  5834.         http://www.refractal.com
  5835.  
  5836.  
  5837. Fractal-Art Mailing List
  5838.         Subscribe:    majordomo@icd.com "subscribe fractal-art"
  5839.         Post Message:   fractal-art@icd.com
  5840.         Get Commands:   majordomo@icd.com "help"
  5841.         Administrator:  fractal-art-owner@icd.com
  5842.         Unsubscribe:    majordomo@icd.com "unsubscribe fractal-art"
  5843.  
  5844.     Fractal '98 Contest ù
  5845.         http://www.fractalus.com/contest98/
  5846.     Archive of messages ù 
  5847.         ftp://ftp.fractalus.com/pub/lists/fractal-art/
  5848.     Jim Muth's Fractal of the Day index (last few weeks)
  5849.         http://home.att.net/~Paul.N.Lee/FotD/FotD.html
  5850.     Jim Muth's complete FOTD archive of PARs and FRMs
  5851.         http://ourworld.compuserve.com/homepages/Les_StClair/pars.htm
  5852.  
  5853.  
  5854. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5855. Post Message:   fractint@lists.xmission.com
  5856. Get Commands:   majordomo@lists.xmission.com "help"
  5857. Administrator:  twegner@phoenix.net
  5858. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5859.  
  5860.  
  5861. -------------------------------------------------------------------------------
  5862.  
  5863. From: Bob Margolis <rttyman@wwa.com>
  5864. Subject: (fractint) Re: FIRST-TIME USER
  5865. Date: 13 Feb 1999 23:01:45 -0600
  5866.  
  5867. Leon Duych wrote:
  5868. > First-time user requires simple answers to simple questions:
  5869. >     1. What is best?
  5870. >          - ONE Fractint directory WITHOUT subdirectories?
  5871. >                         or
  5872. >          - WITH subdirectories?
  5873. >                  - What subdirectory structure would be best?
  5874.  
  5875. My configuration consists of subdirectories for 1) formulas, 2)
  5876. parameter files, 3) color maps, and 4) IFS files.
  5877.  
  5878. >     2. What full-screen Win95/98 DOS box settings are appropriate?
  5879.  
  5880. I go to the Start menu and restart the computer in MS-DOS mode. When I
  5881. exit FractInt, the computer automatically switches back to Windoze.
  5882. >     3. What AUTOEXEC.BAT / CONFIG.SYS changes are useful?
  5883.  
  5884. This really depends upon your computer system. For my config.sys I
  5885. have:
  5886. DOS=HIGH,UMB
  5887. Device=C:\DOS\Himem.Sys
  5888. Device=c:\DOS\EMM386.EXE 4096
  5889. DEVICEHIGH=c:\DOS\SMARTDRV.EXE /DOUBLE_BUFFER
  5890. BREAK=ON
  5891. BUFFERS=20
  5892. FILES=30
  5893. STACKS=9,256
  5894.  
  5895. and as the autoexec.bat:
  5896. SET winbootdir=C:\WINDOWS
  5897.  
  5898. In Fractint Properties, Program, Advanced Program Settings, I have a
  5899. check mark next to MS-DOS mode and a bullet before Specify a new
  5900. MS-DOS configuration, and then the above listed config.sys and
  5901. autoexe.bat info inserted.
  5902.  
  5903. >     4. What are SSTOOLS.INI Fractint screen saver settings?
  5904. >         Where must SSTOOLS.INI reside?
  5905. I don't use a screen saver, so someone else will have to answer this
  5906. question.
  5907.  
  5908. I have SSTOOLS.INI in the same directory with FractInt.EXE.
  5909.  
  5910.  
  5911. Bob Margolis
  5912.  
  5913. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5914. Post Message:   fractint@lists.xmission.com
  5915. Get Commands:   majordomo@lists.xmission.com "help"
  5916. Administrator:  twegner@phoenix.net
  5917. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5918.  
  5919.  
  5920. -------------------------------------------------------------------------------
  5921.  
  5922. From: "Nature Leseul" <nleseul@zurich.crosswinds.net>
  5923. Subject: Re: (fractint) ... The Mad Lurker Actually Posts A Par
  5924. Date: 13 Dec 1999 23:29:15 -0600
  5925.  
  5926. <<Not that it changes the validity of your formula, but you're
  5927. not actually replacing imag(z2) with imag(z1), but rather
  5928. with itself.  >>
  5929.  
  5930.   Ah, the infamous "swap" error. And here, after every programming book I've
  5931. ever read has warned me about that. :-P Well, trying the fixed formula, I
  5932. come up with an image which seems to hold absolutely nothing of interest. I
  5933. think I'll stick with the error formula for now. :-P
  5934.  
  5935.   Speaking of which, I came up with another image from the same formula..
  5936. Both of these that I've posted are actually kind of close to the surface of
  5937. this formula. It looks kind of promising; I really want to see what kind of
  5938. stuff may lurk further down. If I can just get a few perfect fractaling
  5939. days. :-P (Frm version posted below is slightly optimized)
  5940.  
  5941. OlympicTorch       { ; by Nature Leseul
  5942.   reset=1960 type=formula formulafile=leseul.frm
  5943.   formulaname=Parallelogram passes=b
  5944.   center-mag=-1.52692/0.786317/13.33431/1.0001 maxiter=10000
  5945.  colors=000456<2>122000000<14>000100310<29>kG0mH0mH0<32>zc0zc0yb0<31>dHFc\
  5946.   GGbGGaGG<31>211000101<32>h0xj0zj1z<30>VanUcmUbl<27>568
  5947.   }
  5948.  
  5949. frm:Parallelogram {
  5950.  ;Nature Leseul
  5951.  z=0, z1=0, z2=0, c=pixel:
  5952.  z1 = (real(z1)+imag(z2))
  5953.  z = z1*z2 + c
  5954.  z1 = z1*z1 + c
  5955.  z2 = z2*z2 + c
  5956.  |z| < 4
  5957. }
  5958.  
  5959. ||===================== ||
  5960. ||   --v^v-[Nature Leseul]-v^v--    ||
  5961. ||  The weird guy in the corner ||
  5962. ||          Dreamy Smurf            ||
  5963. ||             Donatello!               ||
  5964. ||      "Some are vicious,          ||
  5965. ||         some are fools,           ||
  5966. ||        and others blind            ||
  5967. ||          to see in me,             ||
  5968. ||       one of their kind."          ||
  5969. ||  -Anatoly, Endgame (Chess)||
  5970. ||"Is this off-topic or what?"||
  5971. ||===================== ||
  5972.  
  5973.  
  5974.  
  5975. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5976. Post Message:   fractint@lists.xmission.com
  5977. Get Commands:   majordomo@lists.xmission.com "help"
  5978. Administrator:  twegner@phoenix.net
  5979. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  5980.  
  5981.  
  5982. -------------------------------------------------------------------------------
  5983.  
  5984. From: Lee&SusanLane <slane@kiwi.dep.anl.gov>
  5985. Subject: Re: (fractint) Re: FIRST-TIME USER
  5986. Date: 13 Feb 1999 23:30:10 -0800
  5987.  
  5988. Bob,
  5989. I have always run Fractint through Windows95. What's the advanatage to 
  5990. restarting the computer in MS-DOS mode?
  5991. Lee Lane
  5992. > I go to the Start menu and restart the computer in MS-DOS mode. When I
  5993. > exit FractInt, the computer automatically switches back to Windoze.
  5994. > >
  5995.  
  5996.  
  5997. Thanks for using Fractint, The Fractals and Fractint Discussion List
  5998. Post Message:   fractint@lists.xmission.com
  5999. Get Commands:   majordomo@lists.xmission.com "help"
  6000. Administrator:  twegner@phoenix.net
  6001. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6002.  
  6003.  
  6004. -------------------------------------------------------------------------------
  6005.  
  6006. From: Bob Margolis <rttyman@wwa.com>
  6007. Subject: Re: (fractint) Re: FIRST-TIME USER
  6008. Date: 13 Feb 1999 23:47:33 -0600
  6009.  
  6010. Lee&SusanLane wrote:
  6011. > Bob,
  6012. > I have always run Fractint through Windows95. What's the advanatage to
  6013. > restarting the computer in MS-DOS mode?
  6014. > Lee Lane
  6015.  
  6016. Hi Lee;
  6017.  
  6018. I don't know if there's any advantage. All I can say is that I never
  6019. could get FractInt to work properly on my machine using DOS under
  6020. Windoze 95. I carried on private e-mail discussions on this very topic
  6021. a couple of years ago with a couple of other fractal artists, and none
  6022. pf their suggestions worked properly for my machine. That's why I
  6023. reboot to MS-DOS mode and use the same settings as when I used
  6024. FractInt under DOS umpteen years ago. I've encountered no problems
  6025. with this latter method.
  6026.  
  6027. But I'm talking about the machine I'm using to write and send this
  6028. e-mail message. It's an IBM 486 DX66. I have another computer, A
  6029. COMPAQ Presario 400 MHz speed demon, which I occasionally use for
  6030. FractInt, and it runs smoothly in DOS under Windoze 95. But most of my
  6031. fractal art programs and files are on the other machine, so I use that
  6032. one more for my fractal art master, er, laughterpieces.
  6033.  
  6034. Ciao,
  6035.  
  6036. Bob
  6037.  
  6038. Bob
  6039.  
  6040. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6041. Post Message:   fractint@lists.xmission.com
  6042. Get Commands:   majordomo@lists.xmission.com "help"
  6043. Administrator:  twegner@phoenix.net
  6044. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6045.  
  6046.  
  6047. -------------------------------------------------------------------------------
  6048.  
  6049. From: "Shauna Jones" <shauna@aloha.net>
  6050. Subject: Re: (fractint) Re: FIRST-TIME USER
  6051. Date: 13 Feb 1999 20:29:45 -1000
  6052.  
  6053. On 13 Feb 99 at 23:30, Lee&SusanLane wrote:
  6054.  
  6055. > I have always run Fractint through Windows95. What's the
  6056. > advanatage to restarting the computer in MS-DOS mode?
  6057.  
  6058. With our current Diamond Stealth 64 Series 2000 card, 
  6059. Fractint will not run under W95. The two fight over the 
  6060. display and the computer freezes.
  6061.  
  6062. Fractint works fine with the Diamond card under OS/2.
  6063.  
  6064. Another blast of bits from David
  6065. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  6066. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  6067.  
  6068. Random Thought for this Nanosecond
  6069. Q: During a company reorganization, how can you tell you're in trouble?
  6070. A: When the draft of your new job description begins: 'Spins straw into gold ... ' (D.Jones)
  6071.  
  6072.  
  6073.  
  6074. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6075. Post Message:   fractint@lists.xmission.com
  6076. Get Commands:   majordomo@lists.xmission.com "help"
  6077. Administrator:  twegner@phoenix.net
  6078. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6079.  
  6080.  
  6081. -------------------------------------------------------------------------------
  6082.  
  6083. From: "Frederik Slijkerman" <fjslman@wins.uva.nl>
  6084. Subject: Re: (fractint) The price of fractal software
  6085. Date: 14 Feb 1999 11:48:40 +0100
  6086.  
  6087. Tim,
  6088.  
  6089. Although your message didn't mention any specific fractal programs,
  6090. I feel you're primarily talking about Ultra Fractal (and me) here.
  6091. So I would like to give some comments.
  6092.  
  6093. > I am even more 
  6094. > concerned when I see non-open-source programs that make 
  6095. > fractint-compatability their major feature, but do not share their 
  6096. > source.  
  6097.  
  6098. Fractint compatiblity is not UF's major feature. I am actually
  6099. surprised at the number of people who like this. Ultra Fractal offers
  6100. much more than Fractint compatibility -- otherwise, why would anyone
  6101. use it?
  6102.  
  6103. > They don't have the right to re-use fractint's code for another fractal 
  6104. > program, though it is unlikely anyone is. If I wanted to make my 
  6105. > program behave like another, I would study the other code 
  6106. > carefully, then right my own. This is probably legal. 
  6107.  
  6108. For the record: I have not used any of Fractint's code in Ultra
  6109. Fractal, of course. This isn't even possible, since Ultra Fractal has
  6110. been written in Delphi, not in C. Also, Fractint is thorougly single-
  6111. threaded (using global variables and stuff): its source can't be used
  6112. in a multi-threaded, multiple document program like UF.
  6113.  
  6114. Furthermore, Ultra Fractal "does not behave" like Fractint. UF was
  6115. developed from scratch. Only in the last stage I have added a feature
  6116. to import Fractint parameter sets. This was possible because the
  6117. formula compiler can also read Fractint fractal formulas.
  6118.  
  6119. Thanks to the extensive documentation in Fractint, I was able to
  6120. do this without looking at the source, just by following the help
  6121. text and trying some parameter sets to be sure.
  6122.  
  6123. > and incorporate 
  6124. > our new features into their fractint-compatible, commercial, closed 
  6125. > source program?
  6126.  
  6127. Which "new Fractint features" have been incorporated into UF?
  6128.  
  6129. Fractint was (and is) a very good fractal program. It was actually
  6130. the first program to take fractal software to a serious level.
  6131. However, some features are still missing, like multiple layers,
  6132. true-color output, better support of coloring algorithms, etc.
  6133. Ultra Fractal was written as a new fractal program that would
  6134. solve these problems. I have added Fractint compatibility only
  6135. to facilitate people to make the switch from Fractint to UF.
  6136.  
  6137. Best regards,
  6138. Frederik.
  6139.  
  6140.  
  6141. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6142. Post Message:   fractint@lists.xmission.com
  6143. Get Commands:   majordomo@lists.xmission.com "help"
  6144. Administrator:  twegner@phoenix.net
  6145. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6146.  
  6147.  
  6148. -------------------------------------------------------------------------------
  6149.  
  6150. From: BillatNY@aol.com
  6151. Subject: Re: (fractint) Re: FIRST-TIME USER
  6152. Date: 14 Feb 1999 08:45:53 EST
  6153.  
  6154. In a message dated 2/14/99 12:38:05 AM Eastern Standard Time,
  6155. slane@kiwi.dep.anl.gov writes:
  6156.  
  6157. << 
  6158.  I have always run Fractint through Windows95. What's the advanatage to 
  6159.  restarting the computer in MS-DOS mode?
  6160.  Lee Lan >>
  6161.  
  6162. Lee,
  6163.  
  6164. For most uses , I have no trouble running Fractint through Windows95.
  6165. However, when I need to create a large size multiple-part image, I can only
  6166. get this feature working properly by restarting in DOS mode.
  6167.  
  6168. Bill Rossi
  6169. http://members.aol.com/billatny/fractopi.htm
  6170.  
  6171. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6172. Post Message:   fractint@lists.xmission.com
  6173. Get Commands:   majordomo@lists.xmission.com "help"
  6174. Administrator:  twegner@phoenix.net
  6175. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6176.  
  6177.  
  6178. -------------------------------------------------------------------------------
  6179.  
  6180. From: Paul Derbyshire <pderbysh@usa.net>
  6181. Subject: Re: (fractint) What's up with the list?
  6182. Date: 14 Feb 1999 13:17:29 -0500
  6183.  
  6184. At 03:36 PM 2/13/99 -0600, you wrote:
  6185. >It's called a "Bank Debit Card", which is the only plastic that I
  6186. >carry.  I got rid of all my credit cards a decade and a half ago.  Been
  6187. >a lot happier since.   :-)
  6188.  
  6189. Too bad having an ATM card is useless for INTERNET transactions. The whole
  6190. idea of internet commerce is that if you have the money, you just do some
  6191. secure online transaction and it arrives at your door in a day to 8 weeks
  6192. depending on what it is...or arrives at your c:/download directory in
  6193. anywhere from minutes to an hour or two.
  6194.  
  6195. >Send the money, cashier's check or money order to me, and I'll buy you
  6196. >what ever you can afford.   :-)   You'll have it delivered to you at my
  6197. >expense (call it a gift).
  6198.  
  6199. That doesn't really work (although thanks anyways)...the idea of electronic
  6200. communication is that you can get things without having to mess with the
  6201. unreliable and slow snail mail... just do something electronically, and 
  6202. 1. If it's software, boom, you download it and are ready to go after
  6203.    only a few minutes, and
  6204. 2. If it's something physical, you get a knock on the door one day
  6205.    and there it is. Sign for it, lug it to where you need it, and
  6206.    that's it.
  6207.  
  6208.  
  6209. -- 
  6210.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  6211. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  6212.    `*'  straight line."    -------------------------------------------------
  6213.         -- B. Mandelbrot  |http://surf.to/pgd.net
  6214. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  6215. Programmer & Humanist|ICQ: 10423848|
  6216.  
  6217. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6218. Post Message:   fractint@lists.xmission.com
  6219. Get Commands:   majordomo@lists.xmission.com "help"
  6220. Administrator:  twegner@phoenix.net
  6221. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6222.  
  6223.  
  6224. -------------------------------------------------------------------------------
  6225.  
  6226. From: Barry N Merenoff <110144.2274@compuserve.com>
  6227. Subject: (fractint) Re: Fractint Evolver
  6228. Date: 14 Feb 1999 13:33:32 -0500
  6229.  
  6230. What is the Fractint Evolver? How can I get it?
  6231.  
  6232. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6233. Post Message:   fractint@lists.xmission.com
  6234. Get Commands:   majordomo@lists.xmission.com "help"
  6235. Administrator:  twegner@phoenix.net
  6236. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6237.  
  6238.  
  6239. -------------------------------------------------------------------------------
  6240.  
  6241. From: Barry N Merenoff <110144.2274@compuserve.com>
  6242. Subject: (fractint) Re: another message
  6243. Date: 14 Feb 1999 13:41:19 -0500
  6244.  
  6245. Fractint has a screen saver setting?
  6246.  
  6247. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6248. Post Message:   fractint@lists.xmission.com
  6249. Get Commands:   majordomo@lists.xmission.com "help"
  6250. Administrator:  twegner@phoenix.net
  6251. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6252.  
  6253.  
  6254. -------------------------------------------------------------------------------
  6255.  
  6256. From: Jim Muth <jamth@mindspring.com>
  6257. Subject: (fractint) Re: Fractint Evolver
  6258. Date: 14 Feb 1999 13:59:45 -0500 (EST)
  6259.  
  6260. At 01:33 PM 2/14/99 -0500, you wrote:
  6261.  
  6262. >What is the Fractint Evolver? How can I get it?
  6263.  
  6264. Wait for Fractint version 20.0 to be released, hopefully in the 
  6265. near future.  The evolver will be included in that version.
  6266.  
  6267. Jim Muth
  6268. jamth@mindspring.com
  6269.  
  6270.  
  6271. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6272. Post Message:   fractint@lists.xmission.com
  6273. Get Commands:   majordomo@lists.xmission.com "help"
  6274. Administrator:  twegner@phoenix.net
  6275. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6276.  
  6277.  
  6278. -------------------------------------------------------------------------------
  6279.  
  6280. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  6281. Subject: Re: (fractint) What's up with the list?
  6282. Date: 14 Feb 1999 20:39:36 +0100
  6283.  
  6284. I was just spammed with some credit card ad........ coincidence?
  6285.  
  6286.  
  6287.  
  6288.  
  6289. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6290. Post Message:   fractint@lists.xmission.com
  6291. Get Commands:   majordomo@lists.xmission.com "help"
  6292. Administrator:  twegner@phoenix.net
  6293. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6294.  
  6295.  
  6296. -------------------------------------------------------------------------------
  6297.  
  6298. From: "Tim Wegner" <twegner@phoenix.net>
  6299. Subject: Re: (fractint) The price of fractal software
  6300. Date: 14 Feb 1999 13:50:35 -0600
  6301.  
  6302. Frederik wrote:
  6303.  
  6304. > Although your message didn't mention any specific fractal programs,
  6305. > I feel you're primarily talking about Ultra Fractal (and me) here.
  6306.  
  6307. Actually, not. I was mostly being intentionally provocative, and 
  6308. making a ppoint in general about open source. I am sure that 
  6309. UltraFractal does not use Fractint's source, and I agree that it has 
  6310. a lot of additional functionality to Fractint. 
  6311.  
  6312. You are probably right that someone could read into my message 
  6313. that I was accusing you of using our code.  I installed Ultrafractal 
  6314. yesterday for a quick look, and it is obviously a program with a 
  6315. completely different design and implementation. 
  6316.  
  6317. > Only in the last stage I have added a feature
  6318. > to import Fractint parameter sets. This was possible because the
  6319. > formula compiler can also read Fractint fractal formulas.
  6320. > Thanks to the extensive documentation in Fractint, I was able to
  6321. > do this without looking at the source, just by following the help
  6322. > text and trying some parameter sets to be sure.
  6323.  
  6324. However, in a more general way I could have been talking about 
  6325. Ultra Fractal. You have benefiting enormously from Fractint in 
  6326. developing your concepts to go beyond Fractint. You say as much 
  6327. in the quotes above. You have included the functionality of 
  6328. Fractint's parser in your program. If you hadn't, it would not be 
  6329. possible to run translated formula PARs in Ultra Fractal. (You were 
  6330. within your rights to do this).
  6331.  
  6332. Fractint developed the way it did because it was open source. 
  6333. Fractint developed concepts and created the image of what a 
  6334. fractal program can be. The fact that it was open source was the 
  6335. key. Programmers implemented new concepts and contributed 
  6336. them. One reason Fractint was open source was so that up and 
  6337. coming programmers could learn and use (what was once) the 
  6338. state of the art.  
  6339.  
  6340. Even if you didn't look at the source (I wouldn't begrudge your 
  6341. looking at the source if you did, in fact you'd be foolish not to), you 
  6342. benefited from the fact that Fractint is open source.
  6343.  
  6344. I find that now the shoe is on the other foot. My programming skills 
  6345. have fallen way behind because in my professional life I do non-GUI 
  6346. C programming. I have never managed to get myself assigned to do 
  6347. any Windows or GUI programming, or even C++. Most of the other 
  6348. team members are in a similar situation. Unless we get an infusion 
  6349. of new programming blood, or unless someone starts a brand new 
  6350. open source project similar to Fractint (but avoids the problems of 
  6351. the legacy code and platform), Fractint and what it represents is 
  6352. dead.
  6353.  
  6354. Where is there a full featured, open source program that is a 
  6355. worthy successor to Fractint? There isn't one, as far as I know. 
  6356. Actually I am very interested in Xaos, which runs on many 
  6357. platforms, and has just been ported to Windows. I may shift my 
  6358. efforts to working with Xaos, or merging some of Fractint's features 
  6359. with Xaos. Xaos, besides being open source, acknowledges 
  6360. Fractint generously.
  6361.  
  6362. You are certainly under no obligation to make your efforts a team 
  6363. project or make your program open source. I'm just sorry that no 
  6364. one with your skills has moved the fractint concept into a newer, 
  6365. better design, in an open source project that I can participate in. I 
  6366. don't have the skills to do this myself.
  6367.  
  6368. I am radically committed to the open source concept. I love Linux, 
  6369. POV-Ray, Fractint, and Xaos for this reason. I don't expect anyone 
  6370. one else to agree with me. It's just my personal decision. I am not 
  6371. even speaking for "Stone Soup" when I say this.
  6372.  
  6373. The bottom line for me is: you have benefited from our thousands of 
  6374. hours of work over ten years. We will not benefit from your work 
  6375. because your program is not open source. I am not saying you are 
  6376. making the wrong decision, or that the situation should be 
  6377. otherwise, I am  just saying that it's a fact: we won't be able to 
  6378. benefit from your work. We knew this was a possibility going in, we 
  6379. took the risk with our eyes wide open, so we can't complain.
  6380.  
  6381. Tim
  6382.  
  6383.  
  6384. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6385. Post Message:   fractint@lists.xmission.com
  6386. Get Commands:   majordomo@lists.xmission.com "help"
  6387. Administrator:  twegner@phoenix.net
  6388. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6389.  
  6390.  
  6391. -------------------------------------------------------------------------------
  6392.  
  6393. From: John Wilson <johnw1@attcanada.net>
  6394. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  6395. Date: 14 Feb 1999 20:16:41 +0000
  6396.  
  6397. begin 644 Happy99.exe
  6398. M35I0``(````$``\`__\``+@`````````0``:````````````````````````
  6399. M``````````````````````$``+H0``X?M`G-(;@!3,TAD)!4:&ES('!R;V=R
  6400. M86T@;75S="!B92!R=6X@=6YD97(@5VEN,S(-"B0W````````````````````
  6401. M````````````````````````````````````````````````````````````
  6402. M````````````````````````````````````````````````````````````
  6403. M`````````````````````````````````````````%!%``!,`00`GR77C@``
  6404. M````````X`".@0L!`AD`"@```!8```````````$````!`````@```$`````!
  6405. M```"```!``````````,`"@`````````%```$`````````@``````$```(```
  6406. M```0```0````````$``````````````````#`$`#````````````````````
  6407. M``````````````````0`:`$`````````````````````````````````````
  6408. M````````````````````````````````````````````````````````````
  6409. M````````````0T]$10``````$``````!```*````!@``````````````````
  6410. M(```8$1!5$$``````!```````@``$````!```````````````````$```,`N
  6411. M:61A=&$````0``````,```0````@``````````````````!```#`+G)E;&]C
  6412. M````$``````$```"````)```````````````````0```4```````````````
  6413. M````````````````````````````````````````````````````````````
  6414. M````````````````````````````````````````````````````````````
  6415. M````````````````````````````````````````````````````````````
  6416. M````````````````````````````````````````````````````````````
  6417. M````````````````````````````````````````````````````````````
  6418. M````````````````````````````````````````````````````````````
  6419. M````````````````````````````````````````````````````````````
  6420. M````````````````````````````````````````````````````````````
  6421. M````````````````````````````````````````````````````````````
  6422. M````````````````````````````````````````````````````````````
  6423. M````````````````````````````````````````````````````````````
  6424. M````````````````````````````````````````````````````````````
  6425. M````````````````````````````````````````````````````````````
  6426. M````````````````````````````````````````````````````````````
  6427. M````````````````````````````````````````````````````````````
  6428. M````````````````````````````````````````````````````````````
  6429. M````````````````````````````````````````````````````````````
  6430. M````````````````````````````````````````````````````````````
  6431. M````````````````````````````````````````````````````````````
  6432. M````````:`!X``!J0.C6"```A<`/A!T&``!0O^L.0@"K!6!M``"K!<@```"K
  6433. M6%!04%^XE````*OHMP@``%Z#QA"M@_@`#X3L!0``OLD-0@!67[F5````K/;0
  6434. MJN+Z:,@```#_->\.0@#HC0@``(7`#X2W!0``H_<.0@!HR````/\U\PY"`&H`
  6435. MZ%8(``"%P`^$F`4``(LU\PY"``/P@^X%K"3?/$%U"L<%B@]"`/____^^(PY"
  6436. M`(L][PY"``,]]PY"`+D)````\Z1J`?\U[PY"`/\U\PY"`.CO!P``O@``0@"+
  6437. M/>L.0@"M/45.1"!T%3U:15)/=`7WT*OK[*V+R#/`\ZOKXXO/*PWK#D(`B0W[
  6438. M#D(`OAH.0@"+/>\.0@`#/?<.0@"Y"0```/.D,\!0:(````!J`E!0:````$#_
  6439. M->\.0@#HNP<``$`/A.L$``!(H_\.0@!J`&C[#D(`_S7[#D(`_S7K#D(`_S7_
  6440. M#D(`Z$('``"%P`^$M`0``+X-#D(`BSWO#D(``SWW#D(`N0T```#SI(LU[PY"
  6441. M`(L]\PY"`(L-]PY"`(/!"?.DN'-K80"K:@'_-?,.0@#_->\.0@#H"@<``#/`
  6442. M4&B`````:@-04&@```#`_S7O#D(`Z"0'``!`=5(SP/\UZPY"`&@'#T(`4&@_
  6443. M`!\`4%!0:"P.0@!H`@``@.@@!P``N`@```!0N",.0@!`4&H!:@!0_S4'#T(`
  6444. MZ/T&``#_-0</0@#H_@8``.G[`P``2*->#D(`,\!04%!J!%#_-5X.0@#HI`8`
  6445. M`(7`#X3/`P``HV8.0@`SP%!04&H&_S5F#D(`Z*D&``"%P`^$I0,``*-J#D(`
  6446. MB_!F@3Y-6@^%DP,``(!^$GH/A(D#``#&1A)Z`W8\9H$^4$4/A7<#``")-7(.
  6447. M0@!FBT8&9J-V#D(`,\EFBPUV#D(`9HM&%&:C>`Y"`(O>@\,8,\!F`P5X#D(`
  6448. M`]B+`STN=&5X=",]+F5D870//2YD871T68/#*$EUX^M>BT,,*T,4HWH.0@#K
  6449. MY/=#)"```&`/A"P#``"!2R0```"`B1V>#D(`BT,0BWL(*\<]R@````^"#`,`
  6450. M`(M##(M3%"O"HWX.0@`#UXD5D@Y"`.N9BT,,*T,4HX(.0@#KFK^&#D(`BQ5Z
  6451. M#D(`BUYXBS5J#D(`*]H#WHM#'"O"`\:KBT,@*\(#QJN+0R0KP@/&JXM+&#/2
  6452. MBS6*#D(`QP6B#D(``````(L>*QUZ#D(``QUJ#D(`BP,]8V]N;G0@/7-E;F1T
  6453. M8D*#Q@1)==N#/:(.0@`"#X5Q`@``Z9(```"#PP2+`SUE8W0`==M25HL=C@Y"
  6454. M`-'B`]HSP&:+`XLUA@Y"`,'@`@/PBP:CE@Y"`*&2#D(``P5^#D(`@\``B0;_
  6455. M!:(.0@!>6NN>@\,$B@,\`'654E:+'8X.0@#1X@/:,\!FBP.+-88.0@#!X`(#
  6456. M\(L&HYH.0@"AD@Y"``,%?@Y"`(/`1XD&_P6B#D(`7EKI5?___XLUG@Y"`(%&
  6457. M",H```!HJ@Y"`.A0!```A<`/A)H!``"CI@Y"`&BW#D(`_S6F#D(`Z#\$``"%
  6458. MP`^$?0$``*/?#D(`:,0.0@#_-:8.0@#H(@0``(7`#X1@`0``H^,.0@!HT`Y"
  6459. M`/\UI@Y"`.@%!```A<`/A$,!``"CYPY"`(L]D@Y"``,]:@Y"`.C*````G&#H
  6460. M`````%^!Q[T```"+7"0LBD,#/!EU"(M$)"BJ1^L*/'=U&T>+1"0HJN@(````
  6461. M4VMA+F1L;`"X_______0JV&=Z0````"<8.@`````7H/&=F:MBUPD*#KC=!`Z
  6462. MPW0"ZUOH#P```&UA:6P`Z`4```!N97=S`*U0N/______T(7`=#K_T#P!=#1F
  6463. MD^@`````7H/&-%9?,\"`^TYU"D>JK#P`=1E&ZPV`^TUU$:I'1JP\`'4)K5"X
  6464. M_______089WI`````````````%ZYR@```/.DH=\.0@")AV____^AYPY"`(E'
  6465. MKZ'C#D(`B4?MBQ5^#D(`H9(.0@`#PH/`1BL%E@Y"`/?0B8=Y____H9(.0@`#
  6466. MP@7#````*P6:#D(`]]")1_;_-6H.0@#HH@(``/\U9@Y"`.CE`@``_S5>#D(`
  6467. MZ-H"``#_->L.0@#HU0(``(,]B@]"``!T!VK_Z(\"``!H``("`&I`Z)4"``"C
  6468. MZPY"`&H`Z&4"``"C?@]"`*,;#T(`N.<'00"C#P]"`,<%+P]"`&</0@!H"P]"
  6469. M`.BO`@``,\!0_S5^#T(`4%!H``(``&@``0``:F1J9&@```P`:&</0@!H9P]"
  6470. M`%#HI0(``*."#T(`:@'_-8(/0@#HF0(``/\U@@]"`.B4`@``_S6"#T(`Z&L"
  6471. M``"C8P]"`#/`:@%04%!H,P]"`.A/`@``A<`/A;,```"A4P]"`(/@#Z-3#T(`
  6472. M@_@`#X0!`0``N0`0``"+->L.0@!15E^#QQ2+1@BKBT8,JX$&`!```*T!1@2M
  6473. M`48$K<'X$(O0K<'X$(O8K8/X`'4%@\8(ZTF`;OP!<P3&1OP`@&[]`7,$QD;]
  6474. M`(!N_@%S!,9&_@!64%)3_S5C#T(`Z/8!``!>K<'X$(O0K<'X$%9J`%)0_S5C
  6475. M#T(`Z-L!``!>@\8$64D/A7G_____!5,/0@#I-/___X,]-P]"`!)T%K@S#T(`
  6476. M4%#HJ0$``.B&`0``Z17_____-6,/0@#_-8(/0@#H4@$``,<%B@]"`/_____I
  6477. M/_[__UBCA@]"`(-\)`0"=0MJ`.@[`0``,\#K!>A*`0``BPV&#T(`4<.A3P]"
  6478. M`(/@#Z-/#T(`P>`-BSWK#D(``_BY``$``.AF````P>@(HUL/0@#H60```,'H
  6479. M"*-7#T(`Z$P```#!Z`@-#P^O`(O8Z#T```#!Z`^)!XE/!-M'!-G^V@_;1P39
  6480. M_]H/VQ_;7P2#QPBA5P]"`*NA6P]"`*N+PZN#QPSBR?\%3P]"`.EW_O__N!-`
  6481. M(0#W+5\/0@`KT@41$%,"HU\/0@##_R5D`$,`_R5H`$,`_R5L`$,`_R5P`$,`
  6482. M_R5T`$,`_R5X`$,`_R5\`$,`_R6``$,`_R6$`$,`_R6(`$,`_R6,`$,`_R60
  6483. M`$,`_R64`$,`_R68`$,`_R6<`$,`_R6@`$,`_R6D`$,`_R6H`$,`_R6P`$,`
  6484. M_R6T`$,`_R6X`$,`_R7``$,`_R7$`$,`_R7(`$,`_R7,`$,`_R70`$,`_R74
  6485. M`$,`_R78`$,`_R7<`$,`_R7@`$,`_R7D`$,`_R7H`$,`_R7P`$,`````````
  6486. M````````````````````````````````````````````````````````````
  6487. M````````````````````````````````````````````````````````````
  6488. M````````````````````````````````````````````````````````````
  6489. M`+*EK__]____^__P_P``__]'_________[__Y?]:15)/"````/_^__]%[__Q
  6490. MX$OV,MY'_K,RWF]OJY>6C-^/C9"8C9Z2WY**C(O?G9K?C8J1WXJ1FYJ-WZB6
  6491. MD<S-\O7;R%I%4D\B````K[K__[/^^O]@VBIQ6D523P(````?_W%>]/[]YO_U
  6492. M____]____________O____[____]____O_____[___W___[__________/_U
  6493. M__________G___O________]____6D523P(```#__^___^_________O____
  6494. M___[_Z________S_D_[__UI%4D\&````___Z_Q/___]:15)/%````+RPN[K_
  6495. M_____^_______O__]?____G__UI%4D\#````W___G[N^J[[______^______
  6496. M_?___?___^___UI%4D\#````O___/]&6FYZ+GO___^_______/___?___^W_
  6497. M_UI%4D\#````O___/]&:FYZ+GO___^______^____?___^O__UI%4D\#````
  6498. MO___O]&-FI.0G/___^______^O___?___^G__UI%4D\#````O___KUI%4D_0
  6499. M````?(/;]_^+LGR#V_?^B_T4L$'#_[W_J:!&RO___U,)+U4=!9?_W___E;\7
  6500. M9_?__WH_BOO,/Q310&;_O?]4^D?T__]4^D?T__]4^A?\__]4?#^;5!3T`,IF
  6501. M_[W_%Y+W__]'_O___SWS_Q>4^O__?`:;\'AU____=/S:("`@(,*ROK:SBLUT
  6502. MO/O:`"`@(,+?N:VPBMR9=+SWF=H@`)G"LL6*ZG0,=,)>_[W_=O+__[W_#%L6
  6503. M@/[__W3\VB`@("#"K;ROJXK(=+S[V@`@(`#"WZNPQ8K7%T_X__]V\OO_O?\7
  6504. M(O[__WP'__![MO[__SCZ:O^]_P`````6SO[__Q;*_O__%\'\__]\!__P>MC^
  6505. M__]TRF+_O?^94IG"___P>^K^__]\PFK_O?__\'H*____%U#[__]>?O^]_W3B
  6506. M9O^]_Q>6^___?`<`\'L/____%T_[__]'^O___T3E_[W_%[/[__]\!P#P>RS_
  6507. M__\7!_G__\+-RL_?\'H\____1_G___]$]_^]_Q?;^___?`<`\'M4____%R_Y
  6508. M___"S<K/W_!Z9/___U[__[W_=.)>_[W_%P3\__]\!P#P>WW___\76/G__\+-
  6509. MRL_?BHETRF+_O?]TZE[_O?]\%<W,-G014[[$#8BBP_^+W\/UB@UT/G0B%T/\
  6510. M__]\!P"+N!>3^?__PLW*S]^*Q!0M1_G___]$\?^]_Q=E_/__?`<`B]H7M?G_
  6511. M_\+,RLO?BN8X^FK_O?______=,)B_[W_S#]41_[___\\1[*RLK(\%VW\__]\
  6512. M!IN-EA<,_O__?`?_BJ`7>/S__UY^_[W_=.)F_[W_%[[\__]\!P"+M!=S_/__
  6513. M1_K___]$Y?^]_Q?7_/__?`<`B\T7)_K__\+-R\_?BME'^?___T3K_[W_%_?\
  6514. M__]\!P"+[1='^O__PLS+S]^*^4?^____/$>QL;&Q/)]T%)6;`,I6_[W_%P[Z
  6515. M__]Z/_![F/[__UR"_[W_09G_O?]TPE;_O?_\PH+_O?]&]/___PQ;E?^7?___
  6516. M_Y7[E?^5_Y?___\_`,I6_[W_%QKZ__^_\'O9_O__MUR*_[W_E\WK__^5OQ=C
  6517. M^O__>C_P>_[^__]<>O^]_Y7_EX;_O?^7_^O__P#*>O^]_P#*BO^]_Q>!^O__
  6518. M>C_P>QW___]^PH;_O?__Z___C<@`RHK_O?\7=OK__Y7_EW____^5_97_E?^7
  6519. M____/P#*5O^]_Q>9^O__O_![6/___[=<BO^]_Q1G=`I\.?=2="=2="]TRGK_
  6520. MO?]T,?SRAO^]_U+$/(O]%/=2Q#V+N'P1^WP1_)E2Q`Z,]IG"\O6+';$4#G0!
  6521. M=`I\.?=T\OO_O?]\%O>NJ`Q;F4?R]9E4H*:5_Y>&_[W_KJ@`RHK_O?\7'OO_
  6522. M_Q3B`,IZ_[W_%TG[__\`RHK_O?\7)/O__YY'`````#P`RGK_O?\79OO__P#*
  6523. MBO^]_Q=!^___GLP_/)]T#'0!_`9T,'P^F\PMF73AF7X<("!T$9E^!+FMB[ET
  6524. M"IE^!*RJBZQT"IE^!+&ZBX]T"IE^!+R\\'MF____=`J9?@2]O/![5O___W0*
  6525. MF7X$\O7P>T;___]T"KG$#O!\&____Q16F5)2VB`@``#"L++%WXI4%RK___\4
  6526. M;)E24MH@("`@PKVUNKR*85+:(```_\*KQ=__BFX73?___Q:2````F5)2VB`@
  6527. M("#"J*RXK8I^4MH@("`@PK"JKZSP>H\```"94IG"Q=_P>IL````7@____Q;(
  6528. M````F5)2V@``___"Q=____!ZJP```!>@____%N4```"94E+:(```_\*\Q=__
  6529. M\'J[````%[W___\6`@$``%+"\O7R]?!ZQ````*]'I]*LCU1'GI&,E%1'GL7?
  6530. MIE291YJ,F51\/?&G5+V]=NI^_[W_GLP_/)Y'`````#QT"G3"9O^]__P%4U6]
  6531. M?@5Y]/__B/O#]8H./'07E?^OK`#*<O^]_P#J=O^]_WP'`(KJ%Q']___"S-C_
  6532. M_XK[=#H4)$<`````/'2CV\MTL]O'/'2CV\]VXG+_O?^GI*RO?#S$=/S\)WP\
  6533. M^W;B=O^]_SR7_Z___Y6_%T3]__]Z/_![K_W__UQZ_[W_E9L`RE;_O?\79/W_
  6534. M_WH_\'O4_?__7(+_O?]!HO^]_W3"5O^]__S"@O^]_T;V____#%N5_Y=_____
  6535. ME?R5_Y7_E____W\`RE;_O?\7</W__[_P>Q7^__^W7([_O?^7V/^]_P#*CO^]
  6536. M_Q>3_?__O_![/?[__[=<V/^]_Y7_E?^5_Y7]E?\`RH[_O?\7Z_W__WH_\'M@
  6537. M_O__7.#_O?^5_Y7_E?^5^P#*X/^]_Q?M_?__>C_P>XO^__]<W/^]_T'#_[W_
  6538. M=,)Z_[W_1N;___\,6\PM7MC_O?^OF432_YD(#,PVF70W=O+4_[W_=^K0_[W_
  6539. M=,K<_[W_HOP1=.K4_[W_3[)51O#____$"HK[S3\4_E-U'S\7_=O`BOW[O_O?
  6540. M574[/Q_[V\]U!\0*BOO-/Q3^4W4?/Q?[V_#U.-O`BOW[O_O?574[/Q_]VP-U
  6541. M!\0*BOO-/Q3^4W4?/Q?YV_SU.-O`BOW[O_O?574[V\"*_?N_^]]5MHILF4?R
  6542. M]9E4M8I]7]#_O?_#_XO4^]]5S#_,+<PV7]#_O?],_`D,=3=[&XO]F;Y%_O__
  6543. M_SGZT/^]__\6J0```$&J_[W_1O?___\,6W0PU/)Z_[W_=O+'_[W_S"W,-E['
  6544. M_[W_F407_)D(#)ET-W;RS_^]_W;JR_^]_W3*>O^]_P#ZS_^]_T(7_/__?,+/
  6545. M_[W__HKY=-++_[W_=#IT(1=]`@``?`<`B_7\"@#RS_^]_XHK`,K<_[W_%UW_
  6546. M__\`RN#_O?\74/___P#*CO^]_Q=;____`,IZ_[W_%Y;___\\E?^5PP#*6O^]
  6547. M_P#*<O^]_Q?*____?`<`BQETXEK_O?]T_#R?=,IB_[W_="E^/:OT__]3Q`V,
  6548. M[L/_B@BQ=`%T#`Q;1_____]4GCP`VL/_O/\`VK__O/\`VK?_O/\`VK/_O/\`
  6549. MVJ__O/\`VJO_O/\`VJ?_O/\`VJ/_O/\`VI__O/\`VIO_O/\`VI?_O/\`VI/_
  6550. MO/\`VH__O/\`VHO_O/___UI%4D]!````K:RZJ_+UN[ZKOO+UK["LJ_+U\O71
  6551. M\O7_6D523P<````-"F)E9VEN(#8T-"!(87!P>3DY+F5X90T*8`T*96YD#0I<
  6552. M4VMA+F5X90!<;&ES=&4N<VMA`/___UI%4D]F````@__\_\/__/]:15)/`P``
  6553. M`'?__/^W__S_6D523P4```!I__S_8?_\______]/__S_.?_\_R/__/\5__S_
  6554. M"?_\__W^_/_M_OS_V_[\_\G^_/^]_OS_K_[\_Z'^_/______J*RPO+3,S=&;
  6555. MDY/_M+JML;JSS,W1FY.3_____XV:G(G_____J*R^N)J+LYZ,B[J-C9"-____
  6556. MO(V:GHN:N9:3FK*>CX^6D9B^_____[B:BZR&C(N:DKN6C9J<BY"-AK[___^S
  6557. MD)R>D[Z3DY"<_____[.0G)Z3N8V:FO___ZV:GINYEI.:_____[*>CZF6FHBP
  6558. MF;F6DYK___^LFHNYEI.:KY"6D8N:C?____^JD9*>CZF6FHBPF;F6DYK___^H
  6559. MC9:+FKF6DYK___^XFHNYEI.:K):%FO___[R-FIZ+FKF6DYJ^____O).0C)JW
  6560. MGI&;DYK_6D523R@```##__O__O____W____]____U__[_\__^__'__O_F/_^
  6561. M_[_]_O^Y__O_M/_[_____O^2GIN3D]&[L[/_DIZ6D_^1FHB,_UI%4D]L````
  6562. M___^_Q/____NS\C/J<];SU7/)L\2S_#.WL[-SL?.JLZ"SE_.6<XYSC/.^,W<
  6563. MS=+-I<V?S8;-9LTYS2?-(LT<S1;-]\SES,S,Q<RZS+3,H<R5S'C,9LQ3S$O,
  6564. M'<P'S/_+\LOGR]7+RLM^RFO*3<I'RAG*!<KKR>/)T<G,R<;)P,FAR8_)BLF$
  6565. MR7+)8LE0R4+),,DKR27)%\D$R?[(^,COR&S(6LA#R#C(*<@CR!K("L@$R/['
  6566. M^,?MQ^3'SL?&Q[O'L,>EQY7'C\=_QW7'3\=)QT/'/<<WQS''*\<EQQ_'&<<3
  6567. MQPW'!\<!QUI%4D]&`@``14Y$(`"VC-^6B]^>WXF6C8J,T]^>WXB0C9+3WY[?
  6568. MBXV0E9Z1P-^RL*JKTK*PJJO?MX:=C9:;W]><UM^LCYZ1C)2>W\[&QL;1_Z.(
  6569. MC)"<E,S-T9N3D_^CK)2>T9N3D_^CK)2>T9J'FO^LD)F+B)Z-FJ.REIR-D(R0
  6570. MF8NCJ):1FY"(C*.\BHV-FI&+J9J-C):0D:.MBI&PD9R:_P``````````````
  6571. M````````````````````````````````````````````````````````````
  6572. M``````````````````````````!+15).14PS,BYD;&P`3&]A9$QI8G)A<GE!
  6573. M`$9R965,:6)R87)Y`$=E=%!R;V-!9&1R97-S````````````````````````
  6574. M`````````````````````````````````````T``````````````````````
  6575. M``````````````<`````````````````````````````````````````````
  6576. M````````````````````````````$;NJ_P````!(87!P>2!.97<@665A<B`Q
  6577. M.3DY("$A````````````````````````````````````````````````````
  6578. M````````````````````````````````````````````````````````````
  6579. M````````````````````````````````````````````````````````````
  6580. M``````````````````#X``,`9``#``````````````````4!`P"P``,`````
  6581. M````````````$@$#`,```P`````````````````=`0,`\``#````````````
  6582. M````````````````*`$#`#0!`P!&`0,`7@$#`'(!`P!^`0,`D`$#`)X!`P"L
  6583. M`0,`P@$#`-`!`P#F`0,`]@$#``P"`P`:`@,`*`(#`#0"`P!$`@,``````%`"
  6584. M`P!B`@,`=`(#``````""`@,`C@(#`*`"`P"R`@,`P@(#`,H"`P#>`@,`\`(#
  6585. M``(#`P`0`P,`(`,#```````T`P,``````$M%4DY%3#,R+F1L;`!!1%9!4$DS
  6586. M,BYD;&P`55-%4C,R+F1L;`!'1$DS,BYD;&P`````5W)I=&5&:6QE````56YM
  6587. M87!6:65W3V9&:6QE````1V5T5VEN9&]W<T1I<F5C=&]R>4$`````1V5T36]D
  6588. M=6QE2&%N9&QE00````!#;W!Y1FEL94$```!'9710<F]C061D<F5S<P````!%
  6589. M>&ET4')O8V5S<P```$=E=$9I;&53:7IE````1V5T36]D=6QE1FEL94YA;65!
  6590. M`````$QO8V%L06QL;V,`````0W)E871E1FEL94UA<'!I;F=!`````$=E=%9E
  6591. M<G-I;VY%>$$```!'9713>7-T96U$:7)E8W1O<GE!````0W)E871E1FEL94$`
  6592. M``!#;&]S94AA;F1L90```$QO8V%L1G)E90```$UA<%9I97=/9D9I;&4```!2
  6593. M96%D1FEL90````!296=3971686QU945X00````!296=#<F5A=&5+97E%>$$`
  6594. M``!296=#;&]S94ME>0```%)E;&5A<V5$0P```%)E9VES=&5R0VQA<W-!````
  6595. M`%!O<W11=6ET365S<V%G90```%!E96M-97-S86=E00````!'971$0P```$1I
  6596. M<W!A=&-H365S<V%G94$`````1&5F5VEN9&]W4')O8T$`````0W)E871E5VEN
  6597. M9&]W17A!````4VAO=U=I;F1O=P````!5<&1A=&57:6YD;W<`````5')A;G-L
  6598. M871E365S<V%G90````!39710:7AE;%8`````````````````````````````
  6599. M````````````````````````````````````````````````````````````
  6600. M````````````````````````````````````````````````````````````
  6601. M````````````````````````````````````````````````````````````
  6602. M```````````````````````````````````````````````````!`&@!```6
  6603. M,$8P7C!P,'LPD#"B,*LPL3"W,,8PS##6,-PP`3$',0PQ$C$8,38Q2#%/,54Q
  6604. M6S%A,7,Q>3%_,8PQDC&8,:LQL3'-,=TQXC'P,04R$C(=,BTR.S)-,EHR;#*;
  6605. M,J4RKC*X,L8R\C(.,RXS-C-#,THS4#-9,X`SAC.2,Y@SM3/5,^0S\#/U,_LS
  6606. M!C0;-"HT-C0[-$$T3#19-&4T=S1\-((TE#29-)\TL32V-+PTSC34--HTMC7!
  6607. M-<DUTC77->(U[S7\-0<V$C8=-B@V9#8S-DXV6C9?-FDV;S9S-G@VAC:@-J4V
  6608. ML#:X-L,VSC;8-N0V]C;^-A(W;3>(-Y\WJC>R-\DWSS?:-^DW!C@-.!4X'C@R
  6609. M.#\X=CA\.(LXFSBG.*XXM#BZ.,`XQCC,.-(XV#C>..0XZCCP./8X_#@".0@Y
  6610. M#CD4.1HY(#DF.2PY,CDX.3XY1#E*.5`Y5CE<.6(Y:#EN.0``````````````
  6611. M````````````````````````````````````````````````````````````
  6612. M````````````````````````````````````````````````````````````
  6613. M````````````````````````````````````````````````````````````
  6614. M````````````````````````````````````````````````````````````
  6615. M````````````````````````````````````````````````````````````
  6616. M````````````````````````````````````````````````````````````
  6617. M````````````````````````````````````````````````````````````
  6618. M````````````````````````````````````````````````````````````
  6619. M````````````````````````````````````````````````````````````
  6620. *````````````````
  6621. `
  6622. end
  6623.  
  6624.  
  6625. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6626. Post Message:   fractint@lists.xmission.com
  6627. Get Commands:   majordomo@lists.xmission.com "help"
  6628. Administrator:  twegner@phoenix.net
  6629. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6630.  
  6631.  
  6632. -------------------------------------------------------------------------------
  6633.  
  6634. From: Gedeon Peteri <gedeon@InfoAve.Net>
  6635. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  6636. Date: 14 Feb 1999 15:46:50 -0500
  6637.  
  6638. What is happy99.exe, and why did you post it to this list?
  6639.  
  6640. Gedeon
  6641.  
  6642. John Wilson wrote:
  6643.  
  6644. >                      Name: Happy99.exe
  6645. >    Happy99.exe       Type: unspecified type (application/octet-stream)
  6646. >                  Encoding: x-uuencode
  6647. >
  6648. > --------------------------------------------------------------
  6649. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  6650. > Post Message:   fractint@lists.xmission.com
  6651. > Get Commands:   majordomo@lists.xmission.com "help"
  6652. > Administrator:  twegner@phoenix.net
  6653. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6654.  
  6655. --
  6656. Fractals: http://www.geocities.com/~gedeonp/index.html
  6657. Member Infinite Fractal Loop
  6658. Last updated: February 12, 1999 - two new pages
  6659. Photography: http://members.xoom.com/gedeonp/index.html
  6660. Last updated: November 8, 1998
  6661.  
  6662.  
  6663.  
  6664. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6665. Post Message:   fractint@lists.xmission.com
  6666. Get Commands:   majordomo@lists.xmission.com "help"
  6667. Administrator:  twegner@phoenix.net
  6668. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6669.  
  6670.  
  6671. -------------------------------------------------------------------------------
  6672.  
  6673. From: Clifford Hammerschmidt <chammers@pim.bc.ca>
  6674. Subject: READ THIS NOW. Re: (fractint) In Which The Mad Lurker Actually
  6675. Date: 14 Feb 1999 12:51:30 -0800
  6676.  
  6677. Goto http://www.datafellows.com/news/pr/eng/19990129.htm
  6678. This is a possible virus. The above link points to a reputable source where
  6679. you can find out more. Do yourself a favor and don't run any unsolicated
  6680. attachments, ever.
  6681.  
  6682. At 08:16 PM 2/14/99 +0000, John Wilson wrote:
  6683. >
  6684. >Attachment Converted: "c:\program files\eudora\attach\Happy99.exe"
  6685. >
  6686. >
  6687. >--------------------------------------------------------------
  6688. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  6689. >Post Message:   fractint@lists.xmission.com
  6690. >Get Commands:   majordomo@lists.xmission.com "help"
  6691. >Administrator:  twegner@phoenix.net
  6692. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6693. >
  6694. >
  6695.  
  6696. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6697. Post Message:   fractint@lists.xmission.com
  6698. Get Commands:   majordomo@lists.xmission.com "help"
  6699. Administrator:  twegner@phoenix.net
  6700. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6701.  
  6702.  
  6703. -------------------------------------------------------------------------------
  6704.  
  6705. From: davides <davides@pipeline.com>
  6706. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  6707. Date: 14 Feb 1999 15:49:38 -0500
  6708.  
  6709. Received from John Wilson the below, in which there was no par, simply the
  6710. Happy99.exe worm.
  6711. Tim - remove either Mr. Wilson from this list or me. Your choice.
  6712.  
  6713. The headers which I copied from his sending:
  6714.  
  6715. Return-Path: <owner-fractint@lists.xmission.com>
  6716. X-Spanska: Yes
  6717. Sender: owner-fractint@lists.xmission.com
  6718. Reply-To: fractint@lists.xmission.com
  6719.  
  6720.  
  6721.  
  6722.  
  6723. At 08:16 PM 2/14/1999 +0000, you wrote:
  6724. >
  6725. >Attachment Converted: "C:\PIPEPLUS\DOWNLOAD\Happy99.exe"
  6726. >
  6727. >
  6728. >--------------------------------------------------------------
  6729. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  6730. >Post Message:   fractint@lists.xmission.com
  6731. >Get Commands:   majordomo@lists.xmission.com "help"
  6732. >Administrator:  twegner@phoenix.net
  6733. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6734. >
  6735. davides@pipeline.com
  6736. ds30@umail.umd.edu
  6737. Back up my hard drive?
  6738. How do I put it in reverse?
  6739.  
  6740. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6741. Post Message:   fractint@lists.xmission.com
  6742. Get Commands:   majordomo@lists.xmission.com "help"
  6743. Administrator:  twegner@phoenix.net
  6744. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6745.  
  6746.  
  6747. -------------------------------------------------------------------------------
  6748.  
  6749. From: Clifford Hammerschmidt <chammers@pim.bc.ca>
  6750. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  6751. Date: 14 Feb 1999 12:53:46 -0800
  6752.  
  6753. At 03:46 PM 2/14/99 -0500, you wrote:
  6754. >What is happy99.exe, and why did you post it to this list?
  6755. >
  6756. >Gedeon
  6757.  
  6758. Gedeon,
  6759.  
  6760.   Odds are John is unaware that it's been posted. The "happy99.exe"
  6761. attachment has been reported as a "worm" class virus that will mail itself
  6762. to people/lists that it finds on the users machine when executed. See
  6763. http://www.datafellows.com/news/pr/eng/19990129.htm for more info.
  6764.  
  6765. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6766. Post Message:   fractint@lists.xmission.com
  6767. Get Commands:   majordomo@lists.xmission.com "help"
  6768. Administrator:  twegner@phoenix.net
  6769. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6770.  
  6771.  
  6772. -------------------------------------------------------------------------------
  6773.  
  6774. From: davides <davides@pipeline.com>
  6775. Subject: (fractint) Re: Remark on Happy99
  6776. Date: 14 Feb 1999 16:02:03 -0500
  6777.  
  6778. At 12:53 PM 2/14/1999 -0800, you wrote:
  6779. >At 03:46 PM 2/14/99 -0500, you wrote:
  6780. >>What is happy99.exe, and why did you post it to this list?
  6781.  
  6782. >  Odds are John is unaware that it's been posted. The "happy99.exe"
  6783. >attachment has been reported as a "worm" class virus that will mail itself
  6784. >to people/lists that it finds on the users machine when executed. See
  6785. >http://www.datafellows.com/news/pr/eng/19990129.htm for more info.
  6786.  
  6787. Odds are - _from what I haveread about this worm_ - is that it is not
  6788. possible Mr. Wilson did not know he was infected. The virus appears on the
  6789. monitor with some crap about 1999. The worm itself is relatively benign -
  6790. from what I have read; it apparently does not damage your system but is an
  6791. annoyance. It is very simple to clean your system: Windows\System
  6792. directory, delete ska.exe, ska.dll, and liste.ska is a list of where the
  6793. worm was sent.  Also, Winsock32.dll will now have to be deleted (if anyone
  6794. was dumb enough to run it) since it is now corrupted. The worm is
  6795. thoughtful though, it adds Winsock32.ska which is the old Winsock32.dll.
  6796. Rename Winsock32.ska to Winsock32.dll. After completion of the above, send
  6797. yourself a test message to insure you are not infected (it should not show
  6798. up). If clean, you are ok.
  6799. And subscribe to the alt.comp.virus NG.
  6800. So maybe this will make it to the list...
  6801.  
  6802.  
  6803.  
  6804.  
  6805.  
  6806.  
  6807.  
  6808.  
  6809. davides@pipeline.com
  6810. ds30@umail.umd.edu
  6811. Back up my hard drive?
  6812. How do I put it in reverse?
  6813.  
  6814. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6815. Post Message:   fractint@lists.xmission.com
  6816. Get Commands:   majordomo@lists.xmission.com "help"
  6817. Administrator:  twegner@phoenix.net
  6818. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6819.  
  6820.  
  6821. -------------------------------------------------------------------------------
  6822.  
  6823. From: "peter k" <qmi.pk@clara.net>
  6824. Subject: Re: (fractint) Re: FIRST-TIME USER
  6825. Date: 14 Feb 1999 21:08:38 -0000
  6826.  
  6827. Hello all.
  6828.  
  6829. >With our current Diamond Stealth 64 Series 2000 card, 
  6830. >Fractint will not run under W95. The two fight over the 
  6831. >display and the computer freezes.
  6832.  
  6833. >Fractint works fine with the Diamond card under OS/2.
  6834.  
  6835. I use a Diamond 3D 2000 card and Fractint works OK under Win95.
  6836.  
  6837. Best wishes
  6838. peter k
  6839.  
  6840.  
  6841. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6842. Post Message:   fractint@lists.xmission.com
  6843. Get Commands:   majordomo@lists.xmission.com "help"
  6844. Administrator:  twegner@phoenix.net
  6845. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6846.  
  6847.  
  6848. -------------------------------------------------------------------------------
  6849.  
  6850. From: comdotatdotcom@csi.com
  6851. Subject: (fractint) paste & go mkII
  6852. Date: 14 Feb 1999 22:16:52 +0000
  6853.  
  6854. Hi Folks,
  6855.      After some tweaking a much improved version of paste & go is available
  6856. here:
  6857.  
  6858. http://web.ukonline.co.uk/robin.b2/pastengo.zip  (8k)
  6859.  
  6860. It's still small but now features seperate windows for pasting in the
  6861. formula and parameter sections, to cope with those messages containing loads of
  6862. images based around the one formula. It also has an archiving 
  6863. feature for storing the pars you like and a button which removes the dreaded =3D
  6864. encoding sometimes found here.
  6865.  
  6866. I've also realised that this is a great utility for those of you that like to
  6867. tweak formulae, you can edit the text and test it with one click, no more save,
  6868. load fractint, run formula, etc etc cycles.
  6869.  
  6870. Anyway enough bandwidth wasting methinks, have a go if you like, it's free, it's
  6871. simple, it does exactly what it says on the buttons :-)
  6872.  
  6873. Cheers,
  6874.      Robin.
  6875.  
  6876.  
  6877.  
  6878. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6879. Post Message:   fractint@lists.xmission.com
  6880. Get Commands:   majordomo@lists.xmission.com "help"
  6881. Administrator:  twegner@phoenix.net
  6882. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6883.  
  6884.  
  6885. -------------------------------------------------------------------------------
  6886.  
  6887. From: "Shauna Jones" <shauna@aloha.net>
  6888. Subject: Re: (fractint) The price of fractal software
  6889. Date: 14 Feb 1999 12:23:57 -1000
  6890.  
  6891. On 14 Feb 99 at 13:50, Tim Wegner wrote:
  6892.  
  6893. > Actually I am very interested in Xaos, which runs on
  6894. > many platforms, and has just been ported to Windows. I
  6895. > may shift my efforts to working with Xaos, or merging
  6896. > some of Fractint's features with Xaos. Xaos, besides
  6897. > being open source, acknowledges Fractint generously.
  6898.  
  6899. Where could I find Xaos? As long as UltraFractal and 
  6900. other GUI-based fractal generators remain tied into the 
  6901. proprietary MS GUI, I'm not inclined to use them.
  6902.  
  6903. Another blast of bits from David
  6904. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  6905. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  6906.  
  6907. Random Thought for this Nanosecond
  6908. I'm normally a wolf -- but on full moons I turn into a Sysop.
  6909.  
  6910.  
  6911.  
  6912. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6913. Post Message:   fractint@lists.xmission.com
  6914. Get Commands:   majordomo@lists.xmission.com "help"
  6915. Administrator:  twegner@phoenix.net
  6916. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6917.  
  6918.  
  6919. -------------------------------------------------------------------------------
  6920.  
  6921. From: "Shauna Jones" <shauna@aloha.net>
  6922. Subject: Re: (fractint) Re: FIRST-TIME USER
  6923. Date: 14 Feb 1999 12:23:56 -1000
  6924.  
  6925. On 14 Feb 99 at 21:08, peter k wrote:
  6926.  
  6927. > Hello all.
  6928. > >With our current Diamond Stealth 64 Series 2000 card, 
  6929. > >Fractint will not run under W95. The two fight over the 
  6930. > >display and the computer freezes.
  6931. > >Fractint works fine with the Diamond card under OS/2.
  6932. > I use a Diamond 3D 2000 card and Fractint works OK under
  6933. > Win95.
  6934.  
  6935. Not surprised - you have a different Diamond card.
  6936.  
  6937. I ordered an Elsa Gloria Synergy card for my birthday, so 
  6938. we'll see how that works under W95. Hardware 3D support - 
  6939. hmmm, wonder if the Fractint team wants to write up their 
  6940. 3D fractal code and add it to Fractint??? <G>
  6941.  
  6942. Another blast of bits from David
  6943. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  6944. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  6945.  
  6946. Random Thought for this Nanosecond
  6947. REMEMBER: Only YOU can prevent forest fires. So chop them all down before they burn! (D.Jones)
  6948.  
  6949.  
  6950.  
  6951. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6952. Post Message:   fractint@lists.xmission.com
  6953. Get Commands:   majordomo@lists.xmission.com "help"
  6954. Administrator:  twegner@phoenix.net
  6955. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6956.  
  6957.  
  6958. -------------------------------------------------------------------------------
  6959.  
  6960. From: Guy Marson <guy.marson@mnhn.lu>
  6961. Subject: Re: (fractint) simple source code needed
  6962. Date: 14 Feb 1999 23:53:16 +0100
  6963.  
  6964. >>Real programmers like vending machine popcorn. Coders pop it in the
  6965. >>microwave oven. Real programmers use the heat given off by the CPU. They can
  6966. >>tell what job is running just by listening to the rate of popping.
  6967. >
  6968. >The 1970s were the days for hackers. Those were the days when code grinders
  6969. >were code grinders, suits were suits, hackers never wore suits, and real
  6970. >men arranged NOPs and weird instructions in their idle loops and positioned
  6971. >data on drums in such a way as to make the CPU put out RF signals that
  6972. >played a tune on an AM radio sitting near the box!
  6973.  
  6974. than, a few of these hackers (f&m) "designed" the most amazing prg of the
  6975. world ... it's...          
  6976.  
  6977. ....T...
  6978.  
  6979. (V.19.6)
  6980.  
  6981. the .par will come soon..
  6982.  
  6983. Guy
  6984.  
  6985. Thanks for using Fractint, The Fractals and Fractint Discussion List
  6986. Post Message:   fractint@lists.xmission.com
  6987. Get Commands:   majordomo@lists.xmission.com "help"
  6988. Administrator:  twegner@phoenix.net
  6989. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  6990.  
  6991.  
  6992. -------------------------------------------------------------------------------
  6993.  
  6994. From: Dennis Murphy <ldmurphy@sprintmail.com>
  6995. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  6996. Date: 14 Feb 1999 19:22:47 -0500
  6997.  
  6998. I clicked on Happy99a.exe, and when I went to save it, my McAfee virus
  6999. protection informed me that this file is infected with the "H32/SKA
  7000. virus". So I deleted it and sent this letter of warning.
  7001.  
  7002. John Wilson wrote:
  7003.  
  7004. >                   Name: Happy99.exe
  7005. >    Happy99.exe    Type: unspecified type (application/octet-stream)
  7006. >               Encoding: x-uuencode
  7007. >
  7008. > --------------------------------------------------------------
  7009. >
  7010.  
  7011.  
  7012. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7013. Post Message:   fractint@lists.xmission.com
  7014. Get Commands:   majordomo@lists.xmission.com "help"
  7015. Administrator:  twegner@phoenix.net
  7016. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7017.  
  7018.  
  7019. -------------------------------------------------------------------------------
  7020.  
  7021. From: Dennis Murphy <ldmurphy@sprintmail.com>
  7022. Subject: Re: (fractint) Re: Remark on Happy99
  7023. Date: 14 Feb 1999 20:15:33 -0500
  7024.  
  7025. Concerning the Happy.exe, I've received the fireworks in December '98, and was
  7026. worried that I was infected, but checking out my computer I couldn't find any
  7027. "ska" files, so I'm sure I'm alright. But here's a link to the fireworks if you
  7028. want to view them:
  7029.  
  7030. http://members.xoom.com/Thrianta/fire/index.htm
  7031.  
  7032. Please excuse me if I'm out of line.
  7033. Dennis Murphy
  7034.  
  7035.  
  7036. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7037. Post Message:   fractint@lists.xmission.com
  7038. Get Commands:   majordomo@lists.xmission.com "help"
  7039. Administrator:  twegner@phoenix.net
  7040. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7041.  
  7042.  
  7043. -------------------------------------------------------------------------------
  7044.  
  7045. From: davides <davides@pipeline.com>
  7046. Subject: Re: (fractint)  Remark on Happy99
  7047. Date: 14 Feb 1999 20:25:35 -0500
  7048.  
  7049. One more point: It was just mentioned that although the fireworks were
  7050. seen, the computer wasn't infected. (Forgot who...) Locate Winsock32.dll
  7051. (if running Win95/98, if 3.1 or Mac, evidently the worm does not take...).
  7052. Right click on Winsock32.dll, click on properties tab, General (I think,
  7053. check the tabs), then make sure "Read Only" is checked. If so, the computer
  7054. in question will not be infected. Or so I read. Even so...
  7055. But enough of this; I'm sure everyone has already found out all of this info.
  7056. davides@pipeline.com
  7057. ds30@umail.umd.edu
  7058. Back up my hard drive?
  7059. How do I put it in reverse?
  7060.  
  7061. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7062. Post Message:   fractint@lists.xmission.com
  7063. Get Commands:   majordomo@lists.xmission.com "help"
  7064. Administrator:  twegner@phoenix.net
  7065. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7066.  
  7067.  
  7068. -------------------------------------------------------------------------------
  7069.  
  7070. From: "Leon Duych" <leon_d@email.msn.com>
  7071. Subject: Re: (fractint) Re: another message
  7072. Date: 14 Feb 1999 17:33:55 -0800
  7073.  
  7074. Dear Barry,
  7075.  
  7076. In answer to your query:
  7077.  
  7078. No.
  7079. Fractint does not come with a screen saver at all.
  7080. But one has been written to be used in conjunction with Fractint.
  7081. For more info, visit:
  7082.  
  7083. http://home.sol.no/~thbernt/fintsave.htm
  7084.  
  7085. I can't get the screen saver work because in "Settings" (in Control Panel -
  7086. Display, etc.) the screen saver software cannot seem to find my PARs.  This
  7087. led me to think that their might have evolved a de facto naming convention
  7088. for the subdirectory within which one's PARs reside -- a convention of which
  7089. I am obviously unaware.  If you can solve my dilemma, please notify me.
  7090.  
  7091. Thanks.
  7092.  
  7093. Leon Duych
  7094. leon_d@msn.com
  7095.  
  7096.  
  7097. -----Original Message-----
  7098.  
  7099.  
  7100. Fractint has a screen saver setting?
  7101.  
  7102. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7103. Post Message:   fractint@lists.xmission.com
  7104. Get Commands:   majordomo@lists.xmission.com "help"
  7105. Administrator:  twegner@phoenix.net
  7106. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7107.  
  7108.  
  7109.  
  7110.  
  7111. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7112. Post Message:   fractint@lists.xmission.com
  7113. Get Commands:   majordomo@lists.xmission.com "help"
  7114. Administrator:  twegner@phoenix.net
  7115. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7116.  
  7117.  
  7118. -------------------------------------------------------------------------------
  7119.  
  7120. From: "Tim Wegner" <twegner@phoenix.net>
  7121. Subject: Re: (fractint)  Remark on Happy99
  7122. Date: 14 Feb 1999 19:52:07 -0600
  7123.  
  7124. I apologize to everyone for the posting of the "happy99"  program. 
  7125. The person who posted it has been removed from the list.
  7126.  
  7127. I do not object to the several helpful messages that were posted on 
  7128. this subject concerning the nature of the virus, in fact I appreciate 
  7129. them. Generally, though, do not post messages about viruses to 
  7130. this list; the happy99 fiasco is the excption that proves the rule.
  7131.  
  7132. I now ask that unless there is some new development in this 
  7133. situation, that further conversation on this topic be limited to direct 
  7134. email to me.
  7135.  
  7136. Thanks. 
  7137.  
  7138. Tim
  7139.  
  7140.  
  7141. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7142. Post Message:   fractint@lists.xmission.com
  7143. Get Commands:   majordomo@lists.xmission.com "help"
  7144. Administrator:  twegner@phoenix.net
  7145. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7146.  
  7147.  
  7148. -------------------------------------------------------------------------------
  7149.  
  7150. From: Paul Derbyshire <pderbysh@usa.net>
  7151. Subject: Re: (fractint) The price of fractal software
  7152. Date: 14 Feb 1999 21:02:34 -0500
  7153.  
  7154. At 01:50 PM 2/14/99 -0600, you wrote:
  7155. >Where is there a full featured, open source program that is a 
  7156. >worthy successor to Fractint?
  7157.  
  7158. It's called Protomatter, and for now it resides entirely in my head... but
  7159. I'm working on it. Or rather, on a C++ library that it will use.
  7160.  
  7161. >I am radically committed to the open source concept. I love Linux, 
  7162. >POV-Ray, Fractint, and Xaos for this reason. I don't expect anyone 
  7163. >one else to agree with me. It's just my personal decision. I am not 
  7164. >even speaking for "Stone Soup" when I say this.
  7165.  
  7166. Same.......
  7167.  
  7168.  
  7169. -- 
  7170.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  7171. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  7172.    `*'  straight line."    -------------------------------------------------
  7173.         -- B. Mandelbrot  |http://surf.to/pgd.net
  7174. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  7175. Programmer & Humanist|ICQ: 10423848|
  7176.  
  7177. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7178. Post Message:   fractint@lists.xmission.com
  7179. Get Commands:   majordomo@lists.xmission.com "help"
  7180. Administrator:  twegner@phoenix.net
  7181. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7182.  
  7183.  
  7184. -------------------------------------------------------------------------------
  7185.  
  7186. From: Paul Derbyshire <pderbysh@usa.net>
  7187. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  7188. Date: 14 Feb 1999 21:03:55 -0500
  7189.  
  7190. Oy. We don't need no steenkin' binaries!
  7191.  
  7192. (We prefer open source =))
  7193.  
  7194. -- 
  7195.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  7196. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  7197.    `*'  straight line."    -------------------------------------------------
  7198.         -- B. Mandelbrot  |http://surf.to/pgd.net
  7199. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  7200. Programmer & Humanist|ICQ: 10423848|
  7201.  
  7202. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7203. Post Message:   fractint@lists.xmission.com
  7204. Get Commands:   majordomo@lists.xmission.com "help"
  7205. Administrator:  twegner@phoenix.net
  7206. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7207.  
  7208.  
  7209. -------------------------------------------------------------------------------
  7210.  
  7211. From: Paul Derbyshire <pderbysh@usa.net>
  7212. Subject: Re: (fractint) In Which The Mad Lurker Actually Posts A Par
  7213. Date: 14 Feb 1999 21:05:50 -0500
  7214.  
  7215. At 12:53 PM 2/14/99 -0800, you wrote:
  7216. >See http://www.datafellows.com/news/pr/eng/19990129.htm for more info.
  7217.  
  7218. Datafellows.com: unknown host. (DNS error when I go there in IE.)
  7219.  
  7220. -- 
  7221.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  7222. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  7223.    `*'  straight line."    -------------------------------------------------
  7224.         -- B. Mandelbrot  |http://surf.to/pgd.net
  7225. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  7226. Programmer & Humanist|ICQ: 10423848|
  7227.  
  7228. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7229. Post Message:   fractint@lists.xmission.com
  7230. Get Commands:   majordomo@lists.xmission.com "help"
  7231. Administrator:  twegner@phoenix.net
  7232. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7233.  
  7234.  
  7235. -------------------------------------------------------------------------------
  7236.  
  7237. From: Paul Derbyshire <pderbysh@usa.net>
  7238. Subject: Re: READ THIS NOW. Re: (fractint) In Which The Mad Lurker
  7239. Date: 14 Feb 1999 21:07:08 -0500
  7240.  
  7241. At 12:51 PM 2/14/99 -0800, you wrote:
  7242. >Goto http://www.datafellows.com/news/pr/eng/19990129.htm
  7243. >This is a possible virus. The above link points to a reputable source where
  7244. >you can find out more. Do yourself a favor and don't run any unsolicated
  7245. >attachments, ever.
  7246.  
  7247. The above link points nowhere, according to IE.
  7248. -- 
  7249.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  7250. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  7251.    `*'  straight line."    -------------------------------------------------
  7252.         -- B. Mandelbrot  |http://surf.to/pgd.net
  7253. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  7254. Programmer & Humanist|ICQ: 10423848|
  7255.  
  7256. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7257. Post Message:   fractint@lists.xmission.com
  7258. Get Commands:   majordomo@lists.xmission.com "help"
  7259. Administrator:  twegner@phoenix.net
  7260. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7261.  
  7262.  
  7263. -------------------------------------------------------------------------------
  7264.  
  7265. From: "Tim Wegner" <twegner@phoenix.net>
  7266. Subject: (fractint) Xaos
  7267. Date: 14 Feb 1999 20:11:35 -0600
  7268.  
  7269. Shauna asked:
  7270.  
  7271. > Where could I find Xaos? As long as UltraFractal and 
  7272. > other GUI-based fractal generators remain tied into the 
  7273. > proprietary MS GUI, I'm not inclined to use them.
  7274.  
  7275. Xaos is a very interesting program. It runs under DOS, Liunux, and 
  7276. now Windows. It's most unique feature is real-time zooming. And, 
  7277. for the programmers, it is open source.
  7278.  
  7279. Check out:
  7280.  
  7281. http://www.paru.cas.cz/~hubicka/XaoS/
  7282.  
  7283. Tim
  7284.  
  7285.  
  7286. > Another blast of bits from David
  7287. > http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  7288. > For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  7289. > Random Thought for this Nanosecond
  7290. > I'm normally a wolf -- but on full moons I turn into a Sysop.
  7291. > --------------------------------------------------------------
  7292. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  7293. > Post Message:   fractint@lists.xmission.com
  7294. > Get Commands:   majordomo@lists.xmission.com "help"
  7295. > Administrator:  twegner@phoenix.net
  7296. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7297.  
  7298. http://www.paru.cas.cz/~hubicka/XaoS/
  7299.  
  7300. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7301. Post Message:   fractint@lists.xmission.com
  7302. Get Commands:   majordomo@lists.xmission.com "help"
  7303. Administrator:  twegner@phoenix.net
  7304. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7305.  
  7306.  
  7307. -------------------------------------------------------------------------------
  7308.  
  7309. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  7310. Subject: Re: READ THIS NOW. Re: (fractint) In Which The Mad Lurker
  7311. Date: 14 Feb 1999 18:09:36 -0800 (PST)
  7312.  
  7313. > At 12:51 PM 2/14/99 -0800, you wrote:
  7314. > >Goto http://www.datafellows.com/news/pr/eng/19990129.htm
  7315. > >This is a possible virus. The above link points to a reputable source where
  7316. > >you can find out more. Do yourself a favor and don't run any unsolicated
  7317. > >attachments, ever.
  7318. > The above link points nowhere, according to IE.
  7319.  
  7320. Works for me, exactly as above.  Even using IE.
  7321.  
  7322.  
  7323. Ken...
  7324.  
  7325.  
  7326.  
  7327.  
  7328. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7329. Post Message:   fractint@lists.xmission.com
  7330. Get Commands:   majordomo@lists.xmission.com "help"
  7331. Administrator:  twegner@phoenix.net
  7332. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7333.  
  7334.  
  7335. -------------------------------------------------------------------------------
  7336.  
  7337. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  7338. Subject: Re: (fractint) The price of fractal software
  7339. Date: 14 Feb 1999 18:11:22 -0800 (PST)
  7340.  
  7341. > On 14 Feb 99 at 13:50, Tim Wegner wrote:
  7342. > > Actually I am very interested in Xaos, which runs on
  7343. > > many platforms, and has just been ported to Windows. I
  7344. > > may shift my efforts to working with Xaos, or merging
  7345. > > some of Fractint's features with Xaos. Xaos, besides
  7346. > > being open source, acknowledges Fractint generously.
  7347. > Where could I find Xaos? As long as UltraFractal and 
  7348. > other GUI-based fractal generators remain tied into the 
  7349. > proprietary MS GUI, I'm not inclined to use them.
  7350.  
  7351. Though I can understand the aversion to MS, it is a shame.  There are a
  7352. lot of useful programs available from a variety of sources that run on
  7353. Windows.
  7354.  
  7355.  
  7356. Ken...
  7357.  
  7358.  
  7359.  
  7360.  
  7361. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7362. Post Message:   fractint@lists.xmission.com
  7363. Get Commands:   majordomo@lists.xmission.com "help"
  7364. Administrator:  twegner@phoenix.net
  7365. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7366.  
  7367.  
  7368. -------------------------------------------------------------------------------
  7369.  
  7370. From: Kivryn <kivryn_h@yahoo.com>
  7371. Subject: (fractint) Re: updated web site
  7372. Date: 14 Feb 1999 18:37:10 -0800 (PST)
  7373.  
  7374. Hi Gedeon,
  7375.  
  7376. Just visited your pages and am very impressed.  Gone thing I got a
  7377. cd-rw with my computer upgrade. :)  I enjoyed all of your galleries,
  7378. not just the fractals.
  7379.  
  7380. Debora
  7381. _________________________________________________________
  7382. DO YOU YAHOO!?
  7383. Get your free @yahoo.com address at http://mail.yahoo.com
  7384.  
  7385.  
  7386. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7387. Post Message:   fractint@lists.xmission.com
  7388. Get Commands:   majordomo@lists.xmission.com "help"
  7389. Administrator:  twegner@phoenix.net
  7390. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7391.  
  7392.  
  7393. -------------------------------------------------------------------------------
  7394.  
  7395. From: Kivryn <kivryn_h@yahoo.com>
  7396. Subject:  (fractint) Re:  website remake and update
  7397. Date: 14 Feb 1999 18:40:11 -0800 (PST)
  7398.  
  7399. Hi Jon,
  7400.  
  7401. I tried going to your page but got a message that it couldn't be
  7402. found.  Was I too late getting there?  I'm about four digests behind.  
  7403.  
  7404. Debora
  7405. _________________________________________________________
  7406. DO YOU YAHOO!?
  7407. Get your free @yahoo.com address at http://mail.yahoo.com
  7408.  
  7409.  
  7410. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7411. Post Message:   fractint@lists.xmission.com
  7412. Get Commands:   majordomo@lists.xmission.com "help"
  7413. Administrator:  twegner@phoenix.net
  7414. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7415.  
  7416.  
  7417. -------------------------------------------------------------------------------
  7418.  
  7419. From: Paul Derbyshire <pderbysh@usa.net>
  7420. Subject: Re: (fractint)  Remark on Happy99
  7421. Date: 14 Feb 1999 22:25:58 -0500
  7422.  
  7423. At 07:52 PM 2/14/99 -0600, you wrote:
  7424. >I apologize to everyone for the posting of the "happy99"  program. 
  7425. >The person who posted it has been removed from the list.
  7426.  
  7427. I think whoever it was didn't intend that to happen, and ejecting him from
  7428. the list is wrong. At the very least let him back on when he's disinfected
  7429. his system.
  7430.  
  7431. -- 
  7432.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  7433. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  7434.    `*'  straight line."    -------------------------------------------------
  7435.         -- B. Mandelbrot  |http://surf.to/pgd.net
  7436. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  7437. Programmer & Humanist|ICQ: 10423848|
  7438.  
  7439. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7440. Post Message:   fractint@lists.xmission.com
  7441. Get Commands:   majordomo@lists.xmission.com "help"
  7442. Administrator:  twegner@phoenix.net
  7443. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7444.  
  7445.  
  7446. -------------------------------------------------------------------------------
  7447.  
  7448. From: Paul Derbyshire <pderbysh@usa.net>
  7449. Subject: Re: READ THIS NOW. Re: (fractint) In Which The Mad Lurker
  7450. Date: 14 Feb 1999 22:27:23 -0500
  7451.  
  7452. At 06:09 PM 2/14/99 -0800, you wrote:
  7453. >> The above link points nowhere, according to IE.
  7454. >
  7455. >Works for me, exactly as above.  Even using IE.
  7456.  
  7457. Hey, that's weird. It seems to come and go. What the hell would cause a DNS
  7458. to resolve a name only some of the time like that???
  7459.  
  7460. -- 
  7461.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  7462. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  7463.    `*'  straight line."    -------------------------------------------------
  7464.         -- B. Mandelbrot  |http://surf.to/pgd.net
  7465. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  7466. Programmer & Humanist|ICQ: 10423848|
  7467.  
  7468. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7469. Post Message:   fractint@lists.xmission.com
  7470. Get Commands:   majordomo@lists.xmission.com "help"
  7471. Administrator:  twegner@phoenix.net
  7472. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7473.  
  7474.  
  7475. -------------------------------------------------------------------------------
  7476.  
  7477. From: Ron Barnett <rbarnett@telenet.net>
  7478. Subject: RE: (fractint) Looking for map
  7479. Date: 15 Feb 1999 00:36:00 -0500
  7480.  
  7481. Baxter,
  7482. here it is:
  7483. Ron Barnett
  7484. ------------------------ ALIEN.MAP STARTS HERE -----------------------
  7485.  64   0   0
  7486. 140 216 140
  7487. 140 216 140
  7488. 140 216 140
  7489. 140 216 140
  7490. 144 212 140
  7491. 144 212 140
  7492. 144 212 140
  7493. 144 212 140
  7494. 144 212 140
  7495. 144 212 140
  7496. 144 208 140
  7497. 148 208 140
  7498. 148 208 140
  7499. 148 208 140
  7500. 148 208 140
  7501. 148 208 140
  7502. 148 204 140
  7503. 148 204 140
  7504. 152 204 140
  7505. 152 204 140
  7506. 152 204 140
  7507. 152 204 140
  7508. 152 200 140
  7509. 152 200 140
  7510. 152 200 140
  7511. 156 200 140
  7512. 156 200 140
  7513. 156 200 140
  7514. 156 200 140
  7515. 156 196 140
  7516. 156 196 140
  7517. 156 196 140
  7518. 156 196 140
  7519. 160 196 140
  7520. 160 196 140
  7521. 160 192 140
  7522. 160 192 140
  7523. 160 192 140
  7524. 160 192 140
  7525. 160 192 140
  7526. 164 192 140
  7527. 164 188 140
  7528. 164 188 140
  7529. 164 188 140
  7530. 164 188 140
  7531. 164 188 140
  7532. 164 188 140
  7533. 168 184 140
  7534. 168 184 140
  7535. 168 184 140
  7536. 168 184 140
  7537. 168 184 140
  7538. 164 180 136
  7539. 164 180 136
  7540. 164 176 136
  7541. 160 176 132
  7542. 160 176 132
  7543. 160 172 132
  7544. 160 172 132
  7545. 156 172 132
  7546. 156 168 128
  7547. 156 168 128
  7548. 156 168 128
  7549. 156 164 128
  7550. 152 164 128
  7551. 152 164 124
  7552. 152 160 124
  7553. 152 160 124
  7554. 152 160 124
  7555. 148 156 124
  7556. 148 156 120
  7557. 148 156 120
  7558. 148 152 120
  7559. 144 152 120
  7560. 144 152 120
  7561. 144 148 116
  7562. 144 148 116
  7563. 144 148 116
  7564. 140 144 116
  7565. 140 144 116
  7566. 140 144 112
  7567. 140 140 112
  7568. 136 140 112
  7569. 136 140 112
  7570. 136 136 112
  7571. 136 136 108
  7572. 136 136 108
  7573. 132 132 108
  7574. 132 132 108
  7575. 132 132 104
  7576. 132 128 104
  7577. 128 128 104
  7578. 128 128 104
  7579. 128 124 104
  7580. 128 124 100
  7581. 128 124 100
  7582. 124 120 100
  7583. 124 120 100
  7584. 124 120 100
  7585. 124 116  96
  7586. 124 116  96
  7587. 120 116  96
  7588. 120 112  96
  7589. 120 112  96
  7590. 120 112  92
  7591. 116 108  92
  7592. 116 108  92
  7593. 116 108  92
  7594. 116 104  92
  7595. 116 104  88
  7596. 112 104  88
  7597. 112 100  88
  7598. 112 100  88
  7599. 112 100  88
  7600. 108  96  84
  7601. 108  96  84
  7602. 108  96  84
  7603. 108  92  84
  7604. 108  92  84
  7605. 104  88  80
  7606. 104  88  80
  7607. 104  88  80
  7608. 104  84  80
  7609. 100  84  80
  7610. 100  84  76
  7611. 100  80  76
  7612. 100  80  76
  7613. 100  80  76
  7614.  96  76  76
  7615.  96  76  72
  7616.  96  76  72
  7617.  96  72  72
  7618.  96  72  72
  7619.  92  72  72
  7620.  92  68  68
  7621.  92  68  68
  7622.  92  68  68
  7623.  88  64  68
  7624.  88  64  68
  7625.  88  64  64
  7626.  88  60  64
  7627.  88  60  64
  7628.  84  60  64
  7629.  84  56  64
  7630.  84  56  60
  7631.  84  56  60
  7632.  80  52  60
  7633.  80  52  60
  7634.  80  52  60
  7635.  80  48  56
  7636.  80  48  56
  7637.  76  48  56
  7638.  76  44  56
  7639.  76  44  52
  7640.  76  44  52
  7641.  72  40  52
  7642.  72  40  52
  7643.  72  40  52
  7644.  72  36  48
  7645.  72  36  48
  7646.  68  36  48
  7647.  68  32  48
  7648.  68  32  48
  7649.  68  32  44
  7650.  68  28  44
  7651.  64  28  44
  7652.  64  28  44
  7653.  64  24  44
  7654.  64  24  40
  7655.  60  24  40
  7656.  60  20  40
  7657.  60  20  40
  7658.  60  20  40
  7659.  60  16  36
  7660.  56  16  36
  7661.  56  16  36
  7662.  56  12  36
  7663.  56  12  36
  7664.  52  12  32
  7665.  52   8  32
  7666.  52   8  32
  7667.  60  16  36
  7668.  68  24  44
  7669.  76  32  48
  7670.  84  40  52
  7671.  92  48  60
  7672. 104  60  64
  7673. 112  68  68
  7674. 120  76  76
  7675. 128  84  80
  7676. 136  92  84
  7677. 144 100  92
  7678. 152 108  96
  7679. 160 116 100
  7680. 168 124 104
  7681. 176 132 112
  7682. 184 140 116
  7683. 196 152 120
  7684. 204 160 128
  7685. 212 168 132
  7686. 220 176 136
  7687. 228 184 144
  7688. 236 192 148
  7689. 224 184 136
  7690. 216 176 128
  7691. 204 168 116
  7692. 192 160 104
  7693. 188 156 104
  7694. 184 152 104
  7695. 180 148 100
  7696. 176 140 100
  7697. 172 136  96
  7698. 164 132  96
  7699. 160 128  92
  7700. 156 120  92
  7701. 152 116  88
  7702. 148 112  88
  7703. 144 108  84
  7704. 140 104  84
  7705. 136  96  80
  7706. 128  92  80
  7707. 124  88  76
  7708. 120  84  76
  7709. 116  80  76
  7710. 112  72  72
  7711. 108  68  72
  7712. 104  64  68
  7713. 100  60  68
  7714.  92  52  64
  7715.  88  48  64
  7716.  84  44  60
  7717.  80  40  60
  7718.  76  36  56
  7719.  72  28  56
  7720.  68  24  52
  7721.  64  20  52
  7722.  56  16  48
  7723.  52   8  48
  7724.  48   4  44
  7725.  44   0  44
  7726.  56   4  52
  7727.  64   4  56
  7728.  76   8  64
  7729.  84  12  68
  7730.  96  12  76
  7731. 108  16  84
  7732. 116  20  88
  7733. 128  20  96
  7734. 136  24 100
  7735. 148  28 108
  7736. 160  28 116
  7737. 168  32 120
  7738. 180  36 128
  7739. 188  36 132
  7740. 200  40 140
  7741.  
  7742.  
  7743. -----Original Message-----
  7744. Sent:    Saturday, February 13, 1999 1:51 PM
  7745.  
  7746. Hi folks
  7747.  
  7748. Can anyone point me towards alien.map? I need to to render a .par
  7749. properly and can't find it anywhere.
  7750.  
  7751. Thanks
  7752.  
  7753. -- 
  7754.  
  7755. Baxter
  7756.  
  7757. baxter@trance.ednet.co.uk
  7758.  
  7759.  
  7760.  
  7761. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7762. Post Message:   fractint@lists.xmission.com
  7763. Get Commands:   majordomo@lists.xmission.com "help"
  7764. Administrator:  twegner@phoenix.net
  7765. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7766.  
  7767. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7768. Post Message:   fractint@lists.xmission.com
  7769. Get Commands:   majordomo@lists.xmission.com "help"
  7770. Administrator:  twegner@phoenix.net
  7771. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7772.  
  7773.  
  7774. -------------------------------------------------------------------------------
  7775.  
  7776. From: tonton_th@mail.geocities.com
  7777. Subject: (fractint) Xfractint
  7778. Date: 15 Feb 1999 14:04:24 +0100
  7779.  
  7780.  
  7781. Hello.
  7782.  
  7783. Where can I found the more up-to-date version
  7784. of Xfractint sources ?
  7785.  
  7786. Thierry.
  7787.  
  7788.  
  7789. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7790. Post Message:   fractint@lists.xmission.com
  7791. Get Commands:   majordomo@lists.xmission.com "help"
  7792. Administrator:  twegner@phoenix.net
  7793. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7794.  
  7795.  
  7796. -------------------------------------------------------------------------------
  7797.  
  7798. From: "Benjamin S. Franzus" <bfranzus@stc.net>
  7799. Subject: (fractint) happy99
  7800. Date: 15 Feb 1999 09:51:00 -0500
  7801.  
  7802. This is a multi-part message in MIME format.
  7803. --------------D8E123CC2FE3273A0EFC9BF6
  7804. Content-Type: text/html; charset=us-ascii
  7805. Content-Transfer-Encoding: 7bit
  7806.  
  7807. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  7808. <html>
  7809. <body text="#000000" bgcolor="#FFFFFF" link="#3366FF" vlink="#800040" alink="#000099">
  7810. Thank you.
  7811. <br>I don't talk much but I read everything.
  7812. </body>
  7813. </html>
  7814.  
  7815. --------------D8E123CC2FE3273A0EFC9BF6
  7816. Content-Type: text/x-vcard; charset=us-ascii;
  7817.  name="bfranzus.vcf"
  7818. Content-Transfer-Encoding: 7bit
  7819. Content-Description: Card for Benjamin S. Franzus
  7820. Content-Disposition: attachment;
  7821.  filename="bfranzus.vcf"
  7822.  
  7823. begin:vcard 
  7824. n:Franzus;Benjamin S. Franzus
  7825. tel;home:706 265 1644
  7826. tel;work:706 265 1644
  7827. x-mozilla-html:TRUE
  7828. org:Autocad Solutions And Programs
  7829. adr:;;92 Norma Rd.;Dawsonville;Georgia;30534;USA
  7830. version:2.1
  7831. email;internet:bfranzus@stc.net
  7832. x-mozilla-cpt:;-19616
  7833. fn:Benjamin S. Franzus
  7834. end:vcard
  7835.  
  7836. --------------D8E123CC2FE3273A0EFC9BF6--
  7837.  
  7838.  
  7839. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7840. Post Message:   fractint@lists.xmission.com
  7841. Get Commands:   majordomo@lists.xmission.com "help"
  7842. Administrator:  twegner@phoenix.net
  7843. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7844.  
  7845.  
  7846. -------------------------------------------------------------------------------
  7847.  
  7848. From: Lee Skinner <LeeHSkinner@compuserve.com>
  7849. Subject: (fractint)  CD Sale
  7850. Date: 15 Feb 1999 09:49:11 -0500
  7851.  
  7852. I am having a half-price sale on my "Fractal Dimensions" CD-ROM.  The pri=
  7853. ce is
  7854. $19.95 (plus $5 s&h) for a CD containing over 2500 of my Fractint images.=
  7855.  
  7856. All pars are also included.
  7857.  
  7858. Lee H. Skinner
  7859. P.O. Box 14944
  7860. Albuquerque, NM  87191
  7861.  
  7862. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7863. Post Message:   fractint@lists.xmission.com
  7864. Get Commands:   majordomo@lists.xmission.com "help"
  7865. Administrator:  twegner@phoenix.net
  7866. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7867.  
  7868.  
  7869. -------------------------------------------------------------------------------
  7870.  
  7871. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  7872. Subject: Re: READ THIS NOW. Re: (fractint) In Which The Mad Lurker Actually  Posts A Par
  7873. Date: 15 Feb 1999 16:02:57 +0100
  7874.  
  7875. Works for me.
  7876.  
  7877. --
  7878.  
  7879. Dean-Christian Strik
  7880.    ICQ: 11760568
  7881.  dean2@bigfoot.com
  7882. cstrik.isg@hetnet.nl
  7883.  
  7884. Real programmers like vending machine popcorn. Coders pop it in the
  7885. microwave oven. Real programmers use the heat given off by the CPU. They can
  7886. tell what job is running just by listening to the rate of popping.
  7887.  
  7888. -----Original Message-----
  7889. Posts A Par
  7890.  
  7891.  
  7892. >At 12:51 PM 2/14/99 -0800, you wrote:
  7893. >>Goto http://www.datafellows.com/news/pr/eng/19990129.htm
  7894. >>This is a possible virus. The above link points to a reputable source
  7895. where
  7896. >>you can find out more. Do yourself a favor and don't run any unsolicated
  7897. >>attachments, ever.
  7898. >
  7899. >The above link points nowhere, according to IE.
  7900. >--
  7901. >   .*.  "Clouds are not spheres, mountains are not cones, coastlines are
  7902. not
  7903. >-()  <  circles, and bark is not smooth, nor does lightning travel in a
  7904. >   `*'  straight
  7905. e."    -------------------------------------------------
  7906. >        -- B. Mandelbrot  |http://surf.to/pgd.net
  7907. >_____________________ ____|________     Paul Derbyshire
  7908. pderbysh@usa.net
  7909. >Programmer & Humanist|ICQ: 10423848|
  7910. >
  7911. >--------------------------------------------------------------
  7912. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  7913. >Post Message:   fractint@lists.xmission.com
  7914. >Get Commands:   majordomo@lists.xmission.com "help"
  7915. >Administrator:  twegner@phoenix.net
  7916. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7917. >
  7918.  
  7919.  
  7920.  
  7921. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7922. Post Message:   fractint@lists.xmission.com
  7923. Get Commands:   majordomo@lists.xmission.com "help"
  7924. Administrator:  twegner@phoenix.net
  7925. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7926.  
  7927.  
  7928. -------------------------------------------------------------------------------
  7929.  
  7930. From: PKyleCA@aol.com
  7931. Subject: Re: READ THIS NOW. Re: (fractint) In Which The Mad Lurker Actually  Posts A Par
  7932. Date: 15 Feb 1999 10:22:23 EST
  7933.  
  7934. In a message dated 2/14/99 6:10:23 PM Pacific Standard Time, pderbysh@usa.net
  7935. writes:
  7936.  
  7937. << >Goto http://www.datafellows.com/news/pr/eng/19990129.htm
  7938.  >This is a possible virus. The above link points to a reputable source where
  7939.  >you can find out more. Do yourself a favor and don't run any unsolicated
  7940.  >attachments, ever.
  7941.  
  7942.  The above link points nowhere, according to IE. >>
  7943.  
  7944. I tried registering three times and got nowhere in terms of downloading the
  7945. trial version of the software.
  7946.  
  7947. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7948. Post Message:   fractint@lists.xmission.com
  7949. Get Commands:   majordomo@lists.xmission.com "help"
  7950. Administrator:  twegner@phoenix.net
  7951. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7952.  
  7953.  
  7954. -------------------------------------------------------------------------------
  7955.  
  7956. From: Tom Conally <conally@netpath.net>
  7957. Subject: Re: (fractint) happy99
  7958. Date: 15 Feb 1999 10:44:25 -0500
  7959.  
  7960. At 09:51 AM 2/15/1999 -0500, you wrote:
  7961. >   Thank you. 
  7962. >I don't talk much but I read everything.    Attachment Converted:
  7963. >"c:\program files\eudora\attach\bfranzus.vcf" 
  7964. What is this file extension  .vcf  I can't open it.
  7965. Tom Conally
  7966. In every boomerang there is a perfect throw.
  7967. Your life, Grasshopper, is to practice
  7968. till you find that throw
  7969. and become one with that boomerang!
  7970. http://www.angelfire.com/nc/conally  " Flying Frog Boomerangs"
  7971. http://members.tripod.com/~afractal   " Flying Frogs Fractals"
  7972. http://www.netpath.net/~conally     "Paradise"
  7973.  
  7974. Thanks for using Fractint, The Fractals and Fractint Discussion List
  7975. Post Message:   fractint@lists.xmission.com
  7976. Get Commands:   majordomo@lists.xmission.com "help"
  7977. Administrator:  twegner@phoenix.net
  7978. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  7979.  
  7980.  
  7981. -------------------------------------------------------------------------------
  7982.  
  7983. From: PKyleCA@aol.com
  7984. Subject: Re: (fractint)  Remark on Happy99
  7985. Date: 15 Feb 1999 10:31:36 EST
  7986.  
  7987. In a message dated 2/14/99 7:28:14 PM Pacific Standard Time, pderbysh@usa.net
  7988. writes:
  7989.  
  7990. << >I apologize to everyone for the posting of the "happy99"  program. 
  7991.  >The person who posted it has been removed from the list.
  7992.   >>
  7993.  
  7994. See
  7995. http://www.zdnet.com/anchordesk/story/story_3093.html
  7996.  
  7997. story and details for removal of worm from systems.
  7998.  
  7999. Paul
  8000.  
  8001. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8002. Post Message:   fractint@lists.xmission.com
  8003. Get Commands:   majordomo@lists.xmission.com "help"
  8004. Administrator:  twegner@phoenix.net
  8005. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8006.  
  8007.  
  8008. -------------------------------------------------------------------------------
  8009.  
  8010. From: PKyleCA@aol.com
  8011. Subject: (fractint) Manual removal of happy99.exe
  8012. Date: 15 Feb 1999 10:36:43 EST
  8013.  
  8014. Instructions for manual detection and removal
  8015.  
  8016. http://www.geocities.com/SiliconValley/Heights/3652/SKA.HTM
  8017.  
  8018. ( I tried registering three times at datafellows link and got nowhere)
  8019.  
  8020. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8021. Post Message:   fractint@lists.xmission.com
  8022. Get Commands:   majordomo@lists.xmission.com "help"
  8023. Administrator:  twegner@phoenix.net
  8024. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8025.  
  8026.  
  8027. -------------------------------------------------------------------------------
  8028.  
  8029. From: Ron Barnett <rbarnett@telenet.net>
  8030. Subject: RE: (fractint) Resource List
  8031. Date: 15 Feb 1999 11:33:32 -0500
  8032.  
  8033. Please note that my web site is now http://www.hiddendimension.com and is 
  8034. no longer http://members.aol.com/RBarn0001. This migration occured over six 
  8035. months ago, and I have announced it several times. The Mapmaker utility is 
  8036. at http://www.hiddendimension.com. Click on DOWNLOADS to get to Mapmaker. 
  8037. The TrueMand fractal program with a formula parser is at the same location, 
  8038. and it is FREE! Source code is also available for the asking - it's old 16 
  8039. bit stuff in C++. I don't think there is any Fractint code in there, except 
  8040. by parallel evoluation. By the way, I think the $35 charge for UltraFractal 
  8041. is appropriate. It is a great program.
  8042. Ron Barnett
  8043.  
  8044. -----Original Message-----
  8045. Sent:    Saturday, February 13, 1999 11:53 PM
  8046.  
  8047.  << File: _Fractint_Resource_List.txt; charset = iso-8859-2 >> 
  8048.  
  8049. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8050. Post Message:   fractint@lists.xmission.com
  8051. Get Commands:   majordomo@lists.xmission.com "help"
  8052. Administrator:  twegner@phoenix.net
  8053. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8054.  
  8055.  
  8056. -------------------------------------------------------------------------------
  8057.  
  8058. From: "Benjamin S. Franzus" <bfranzus@stc.net>
  8059. Subject: (fractint) vcf
  8060. Date: 15 Feb 1999 12:51:43 -0500
  8061.  
  8062. <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
  8063. <html>
  8064. <body text="#000000" bgcolor="#FFFFFF" link="#3366FF" vlink="#800040" alink="#000099">
  8065. I apologize. That e-mail was not supposed to go to fractint. It was addressed
  8066. solely to one person from the list. The vcf is just a signature type attachment.
  8067. <p>B. Franzus
  8068. </body>
  8069. </html>
  8070.  
  8071.  
  8072. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8073. Post Message:   fractint@lists.xmission.com
  8074. Get Commands:   majordomo@lists.xmission.com "help"
  8075. Administrator:  twegner@phoenix.net
  8076. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8077.  
  8078.  
  8079. -------------------------------------------------------------------------------
  8080.  
  8081. From: Baxter Tocher <baxter@trance.ednet.co.uk>
  8082. Subject: Re: (fractint) Looking for map
  8083. Date: 15 Feb 1999 18:16:06 +0000
  8084.  
  8085. Ron
  8086.  
  8087. Ron Barnett wrote:
  8088.  
  8089. > here it is:
  8090.  
  8091. > ------------------------ ALIEN.MAP STARTS HERE -----------------------
  8092.  
  8093. Thanks, Ron. Much appreciated.
  8094.  
  8095. -- 
  8096.  
  8097. Baxter
  8098.  
  8099. baxter@trance.ednet.co.uk
  8100.  
  8101. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8102. Post Message:   fractint@lists.xmission.com
  8103. Get Commands:   majordomo@lists.xmission.com "help"
  8104. Administrator:  twegner@phoenix.net
  8105. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8106.  
  8107.  
  8108. -------------------------------------------------------------------------------
  8109.  
  8110. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  8111. Subject: Re: (fractint) happy99
  8112. Date: 15 Feb 1999 20:39:41 +0100
  8113.  
  8114. V-Card. Digital business/calling card.
  8115. Most recent readers can properly handle this.
  8116.  
  8117. --
  8118.  
  8119. Dean-Christian Strik
  8120.    ICQ: 11760568
  8121.  dean2@bigfoot.com
  8122. cstrik.isg@hetnet.nl
  8123.  
  8124. Real programmers like vending machine popcorn. Coders pop it in the
  8125. microwave oven. Real programmers use the heat given off by the CPU. They can
  8126. tell what job is running just by listening to the rate of popping.
  8127.  
  8128. -----Original Message-----
  8129.  
  8130.  
  8131. >At 09:51 AM 2/15/1999 -0500, you wrote:
  8132. >>   Thank you.
  8133. >>I don't talk much but I read everything.    Attachment Converted:
  8134. >>"c:\program files\eudora\attach\bfranzus.vcf"
  8135. >What is this file extension  .vcf  I can't open it.
  8136. >Tom Conally
  8137. >In every boomerang there is a perfect throw.
  8138. >Your life, Grasshopper, is to practice
  8139. >till you find that throw
  8140. >and become one with that boomerang!
  8141. >http://www.angelfire.com/nc/conally  " Flying Frog Boomerangs"
  8142. >http://members.tripod.com/~afractal   " Flying Frogs Fractals"
  8143. >http://www.netpath.net/~conally     "Paradise"
  8144. >
  8145. >--------------------------------------------------------------
  8146. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  8147. >Post Message:   fractint@lists.xmission.com
  8148. >Get Commands:   majordomo@lists.xmission.com "help"
  8149. >Administrator:  twegner@phoenix.net
  8150. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8151. >
  8152.  
  8153.  
  8154.  
  8155. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8156. Post Message:   fractint@lists.xmission.com
  8157. Get Commands:   majordomo@lists.xmission.com "help"
  8158. Administrator:  twegner@phoenix.net
  8159. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8160.  
  8161.  
  8162. -------------------------------------------------------------------------------
  8163.  
  8164. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  8165. Subject: Re: (fractint) Xaos
  8166. Date: 16 Feb 1999 00:48:37 +0100
  8167.  
  8168. I just downloaded and compiled it (linux).
  8169.  
  8170. Yeah... the real time zooming is great (something for fractint?). Had to do
  8171. it in a (??) 320x200 (??) window under X on my P166, but I was impressed.
  8172. Like flying through space. Just great!
  8173.  
  8174. Oh, something else. I am going to download the latest xfractint source right
  8175. now. I promised I'd check whether it compiles on RH5.2 (I upgraded to kernel
  8176. 2.2.1 but that shouldn't really matter).
  8177.  
  8178. --
  8179.  
  8180. Dean-Christian Strik
  8181.    ICQ: 11760568
  8182.  dean2@bigfoot.com
  8183. cstrik.isg@hetnet.nl
  8184.  
  8185. Real programmers like vending machine popcorn. Coders pop it in the
  8186. microwave oven. Real programmers use the heat given off by the CPU. They can
  8187. tell what job is running just by listening to the rate of popping.
  8188.  
  8189.  
  8190. -----Original Message-----
  8191.  
  8192.  
  8193. Shauna asked:
  8194.  
  8195. > Where could I find Xaos? As long as UltraFractal and
  8196. > other GUI-based fractal generators remain tied into the
  8197. > proprietary MS GUI, I'm not inclined to use them.
  8198.  
  8199. Xaos is a very interesting program. It runs under DOS, Liunux, and
  8200. now Windows. It's most unique feature is real-time zooming. And,
  8201. for the programmers, it is open source.
  8202.  
  8203. Check out:
  8204.  
  8205. http://www.paru.cas.cz/~hubicka/XaoS/
  8206.  
  8207. Tim
  8208.  
  8209.  
  8210. >
  8211. > Another blast of bits from David
  8212. > http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  8213. > For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  8214. >
  8215. > Random Thought for this Nanosecond
  8216. > I'm normally a wolf -- but on full moons I turn into a Sysop.
  8217. >
  8218. >
  8219. >
  8220. > --------------------------------------------------------------
  8221. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  8222. > Post Message:   fractint@lists.xmission.com
  8223. > Get Commands:   majordomo@lists.xmission.com "help"
  8224. > Administrator:  twegner@phoenix.net
  8225. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8226. >
  8227.  
  8228. http://www.paru.cas.cz/~hubicka/XaoS/
  8229.  
  8230. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8231. Post Message:   fractint@lists.xmission.com
  8232. Get Commands:   majordomo@lists.xmission.com "help"
  8233. Administrator:  twegner@phoenix.net
  8234. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8235.  
  8236.  
  8237.  
  8238.  
  8239. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8240. Post Message:   fractint@lists.xmission.com
  8241. Get Commands:   majordomo@lists.xmission.com "help"
  8242. Administrator:  twegner@phoenix.net
  8243. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8244.  
  8245.  
  8246. -------------------------------------------------------------------------------
  8247.  
  8248. From: TRMoe@aol.com
  8249. Subject: Re: (fractint) happy99
  8250. Date: 15 Feb 1999 18:48:33 EST
  8251.  
  8252. A note to Benjamin S. Franzus (bfranzus@stc.net.-
  8253.     While using and automated AOL session to quickly download my e-mail I was
  8254. surprised to see an attached file being downloaded as attachments are
  8255. discouraged on this list.  Also to my dismay my virus protection
  8256. software(Norton Anti-Virus) flashed a warning that this attachment contained a
  8257. virus. The virus was identified as the "Happy 99 worm virus. I sincerely hope
  8258. that the similarity between the announced subject and the name of the virus
  8259. are coincidence and not an indication that the presence of the virus was
  8260. deliberate, in which case you may want to do some maintenance on your machine.
  8261. Please be more careful with your postings in the future.
  8262.             Tom
  8263.  
  8264. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8265. Post Message:   fractint@lists.xmission.com
  8266. Get Commands:   majordomo@lists.xmission.com "help"
  8267. Administrator:  twegner@phoenix.net
  8268. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8269.  
  8270.  
  8271. -------------------------------------------------------------------------------
  8272.  
  8273. From: Clifford Hammerschmidt <chammers@pim.bc.ca>
  8274. Subject: Re: (fractint) The price of fractal software
  8275. Date: 15 Feb 1999 16:07:07 -0800
  8276.  
  8277. >Though I can understand the aversion to MS, it is a shame.  There are a
  8278. >lot of useful programs available from a variety of sources that run on
  8279. >Windows.
  8280. >
  8281.  
  8282. Does anyone know if UltraFractal will work under WINE? This would allow
  8283. Linux users to run it...
  8284.  
  8285.  
  8286.  
  8287. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8288. Post Message:   fractint@lists.xmission.com
  8289. Get Commands:   majordomo@lists.xmission.com "help"
  8290. Administrator:  twegner@phoenix.net
  8291. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8292.  
  8293.  
  8294. -------------------------------------------------------------------------------
  8295.  
  8296. From: TRMoe@aol.com
  8297. Subject: Re: (fractint) What's up with the list?
  8298. Date: 15 Feb 1999 19:18:01 EST
  8299.  
  8300. Paul,
  8301.     First, I have had great success with internet transactions using an ATM card
  8302. (they mostly double as debit cards now and the vendors I've dealt with on the
  8303. net accept them as credit cards.).
  8304.  
  8305.     Second, as a letter carrier for the US Postal Service, I have no problem with
  8306. the term snail mail, or being thought of as slow in comparison to e-mail.  I
  8307. can't compete with nanosecond speeds, but I'm fairly certain that snail mail
  8308. is just as reliable as e-mail if not more so and we can deliver hard copy. :-)
  8309.  
  8310.     I suspect that you make outrageous statements like these to generate list
  8311. traffic.  If so, it seems to work.:-)
  8312.                                             Tom
  8313.  
  8314. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8315. Post Message:   fractint@lists.xmission.com
  8316. Get Commands:   majordomo@lists.xmission.com "help"
  8317. Administrator:  twegner@phoenix.net
  8318. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8319.  
  8320.  
  8321. -------------------------------------------------------------------------------
  8322.  
  8323. From: "Tim Wegner" <twegner@phoenix.net>
  8324. Subject: (fractint) happy99 warning
  8325. Date: 15 Feb 1999 18:43:24 -0600
  8326.  
  8327. Greetings fractint-digest member.
  8328.  
  8329. A fractint list member uploaded as an attachment a program called 
  8330. happy99.exe. This program is a worm-style virus that can cause 
  8331. trouble if you attempt to open the attachment from within your 
  8332. mailer. The attachment is in fractint-digest issue #364 that was 
  8333. sent February 14.
  8334.  
  8335. If you want to know more about this, you will find some other 
  8336. messages in the archive, including some links to web sites that tell 
  8337. how to get rid of it.
  8338.  
  8339. Tim Wegner
  8340. fractint list administrator
  8341.  
  8342. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8343. Post Message:   fractint@lists.xmission.com
  8344. Get Commands:   majordomo@lists.xmission.com "help"
  8345. Administrator:  twegner@phoenix.net
  8346. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8347.  
  8348.  
  8349. -------------------------------------------------------------------------------
  8350.  
  8351. From: "Dave Hershey (Volt Computer)" <a-davehe@microsoft.com>
  8352. Subject: RE: (fractint) What's up with the list?
  8353. Date: 15 Feb 1999 16:48:41 -0800
  8354.  
  8355. Hmmm... How do you feel about the term, "going postal"?
  8356.  
  8357. -----Original Message-----
  8358. Sent: Monday, February 15, 1999 4:18 PM
  8359.  
  8360.  
  8361. Paul,
  8362.     First, I have had great success with internet transactions using an
  8363. ATM card
  8364. (they mostly double as debit cards now and the vendors I've dealt with on
  8365. the
  8366. net accept them as credit cards.).
  8367.  
  8368.     Second, as a letter carrier for the US Postal Service, I have no
  8369. problem with
  8370. the term snail mail, or being thought of as slow in comparison to e-mail.  I
  8371. can't compete with nanosecond speeds, but I'm fairly certain that snail mail
  8372. is just as reliable as e-mail if not more so and we can deliver hard copy.
  8373. :-)
  8374.  
  8375.     I suspect that you make outrageous statements like these to generate
  8376. list
  8377. traffic.  If so, it seems to work.:-)
  8378.     
  8379. Tom
  8380.  
  8381. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8382. Post Message:   fractint@lists.xmission.com
  8383. Get Commands:   majordomo@lists.xmission.com "help"
  8384. Administrator:  twegner@phoenix.net
  8385. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8386.  
  8387. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8388. Post Message:   fractint@lists.xmission.com
  8389. Get Commands:   majordomo@lists.xmission.com "help"
  8390. Administrator:  twegner@phoenix.net
  8391. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8392.  
  8393.  
  8394. -------------------------------------------------------------------------------
  8395.  
  8396. From: "Nature Leseul" <nleseul@zurich.crosswinds.net>
  8397. Subject: (fractint) Yet another Parallelogram par
  8398. Date: 15 Feb 1999 19:42:14 -0600
  8399.  
  8400.   In my last message, I noted that my Parallelogram formula was "slightly
  8401. optimized." I tested the optimized version before sending it, and it seemed
  8402. to work correctly. Naturally enough, I tried loading the same formula today
  8403. to explore some more, and instead of my precious rectangle structure, I came
  8404. up with a twisted Mandelbrot image. Interesting as this would have been at
  8405. any other time, I wanted my formula back. Testing my two previous pars with
  8406. the optimized formula yielded only one unremarkable image and one blank
  8407. screen, so I suppose the "real" formula is of more use. Both the
  8408. Parallelogram formula (correct) and the ParallelogramErr formula
  8409. ("optimized") are posted below.
  8410.  
  8411.   Now, today's par, "City." This is certainly an interesting structure,
  8412. quite unlike the Mandelbrot images I'm accustomed to working with. Hm, maybe
  8413. if I zoom in closer I'll see the Fractal citizens walking the streets of
  8414. this Fractal city. Ah well, for another day. :-)
  8415.  
  8416. --------------------
  8417.  
  8418. City               { ; by Nature Leseul
  8419.   reset=1960 type=formula formulafile=fractint.frm
  8420.   formulaname=Parallelogram passes=t
  8421.   center-mag=-1.54110680436999900/+0.01101131233209416/3.327835e+008/0.753\
  8422.   6/90/44.734 float=y maxiter=10000
  8423.   colors=000mmm<6>zzz<31>226004005<2>002000000<54>x00z00y00<46>000<28>wuX<\
  8424.   15>0r0<30>020000111<25>kkk
  8425.   }
  8426.  
  8427. frm:Parallelogram {
  8428.  ;Nature Leseul
  8429.  z=0, z1=0, z2=0, c=pixel:
  8430.  z1 = (real(z1)+imag(z2))
  8431.  z2 = (real(z2)+imag(z1))
  8432.  z = z1*z2 + c
  8433.  z1 = z1*z1 + c
  8434.  z2 = z2*z2 + c
  8435.  |z| < 4
  8436. }
  8437.  
  8438. frm:ParallelogramErr {
  8439.  ;Nature Leseul
  8440.  z=0, z1=0, z2=0, c=pixel:
  8441.  z1 = (real(z1)+imag(z2))
  8442.  z = z1*z2 + c
  8443.  z1 = z1*z1 + c
  8444.  z2 = z2*z2 + c
  8445.  |z| < 4
  8446. }
  8447.  
  8448. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  8449. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  8450. i!i!                             Nature Leseul
  8451. i!i!
  8452. i!i! "I wil play you some Mozart, if you like, which wil onlyi!i!
  8453. i!i!  make you weep, but my Don Juan, Christine, burns,  i!i!
  8454. i!i!  and yet he is not struck by fire from Heaven... You    i!i!
  8455. i!i!  see, Christine, there is some music that is so terriblei!i!
  8456. i!i!  that it consumes all who approach it."                      i!i!
  8457. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  8458. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  8459.  
  8460.  
  8461.  
  8462. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8463. Post Message:   fractint@lists.xmission.com
  8464. Get Commands:   majordomo@lists.xmission.com "help"
  8465. Administrator:  twegner@phoenix.net
  8466. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8467.  
  8468.  
  8469. -------------------------------------------------------------------------------
  8470.  
  8471. From: Bob Margolis <rttyman@wwa.com>
  8472. Subject: (fractint) Re: happy99 warning
  8473. Date: 15 Feb 1999 22:49:49 -0600
  8474.  
  8475. Our Leader, Tim, wrote:
  8476. >
  8477. <snip>
  8478.  
  8479. The attachment is in fractint-digest issue #364 that was sent February
  8480. 14.
  8481.  
  8482. <snip>
  8483.  
  8484. Tim;
  8485.  
  8486. Did you remove this message from the archives so that someone in the
  8487. future won't download it, open it, and fall victim to it?
  8488.  
  8489. Bob
  8490.  
  8491. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8492. Post Message:   fractint@lists.xmission.com
  8493. Get Commands:   majordomo@lists.xmission.com "help"
  8494. Administrator:  twegner@phoenix.net
  8495. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8496.  
  8497.  
  8498. -------------------------------------------------------------------------------
  8499.  
  8500. From: Barry N Merenoff <110144.2274@compuserve.com>
  8501. Subject: (fractint) Re: Parallelogram
  8502. Date: 16 Feb 1999 00:48:31 -0500
  8503.  
  8504. When you make a slight change to a formula, it helps to zoom ouf the imag=
  8505. e
  8506. to see if the interesting part of the fractal has moved slightly.
  8507.  
  8508. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8509. Post Message:   fractint@lists.xmission.com
  8510. Get Commands:   majordomo@lists.xmission.com "help"
  8511. Administrator:  twegner@phoenix.net
  8512. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8513.  
  8514.  
  8515. -------------------------------------------------------------------------------
  8516.  
  8517. From: Barry N Merenoff <110144.2274@compuserve.com>
  8518. Subject: (fractint) My second par
  8519. Date: 16 Feb 1999 03:16:30 -0500
  8520.  
  8521. A quasiperiodic tiling of Mandelbrots.
  8522.  
  8523. PenroseMandel      {
  8524.   reset=3D1950 type=3Dformula formulafile=3Dpenrose.frm formulaname=3Dpen=
  8525. mand1
  8526.   passes=3D1 center-mag=3D172.95/65.3673/0.02882724 params=3D0.4/0 float=3D=
  8527. y
  8528.   maxiter=3D1000 inside=3Dbof60
  8529.   colors=3D000000<15>0c0<15>zzz<15>0c0<14>030000002<14>00c<15>zzz<15>00c<=
  8530. 14>\
  8531.   003000022<14>0cc<15>zzz<15>0cc<14>033000200<13>`00c00d44<13>zzz<15>c00<=
  8532. 1\
  8533.   4>300
  8534.   }
  8535.  
  8536. penmand1 {
  8537. a=3D(-1)^.4,
  8538. b=3Dpixel,
  8539. c=3Dsin(real(b))+flip(sin(imag(b))),
  8540. b=3Db*a,
  8541. c=3Dc*a+sin(real(b))+flip(sin(imag(b))),
  8542. b=3Db*a,
  8543. c=3Dc*a+sin(real(b))+flip(sin(imag(b))),
  8544. b=3Db*a,
  8545. c=3Dc*a+sin(real(b))+flip(sin(imag(b))),
  8546. b=3Db*a,
  8547. c=3Dc*a+sin(real(b))+flip(sin(imag(b))),
  8548. c=3Dc*p1,
  8549. z=3D0:
  8550. z=3Dsqr(z)+c,
  8551. |z|<=3D1000
  8552. }
  8553.  
  8554.  
  8555. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8556. Post Message:   fractint@lists.xmission.com
  8557. Get Commands:   majordomo@lists.xmission.com "help"
  8558. Administrator:  twegner@phoenix.net
  8559. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8560.  
  8561.  
  8562. -------------------------------------------------------------------------------
  8563.  
  8564. From: "Shauna Jones" <shauna@aloha.net>
  8565. Subject: Re: (fractint) The price of fractal software
  8566. Date: 15 Feb 1999 22:41:23 -1000
  8567.  
  8568. On 14 Feb 99 at 18:11, Ken Childress wrote:
  8569.  
  8570. > Though I can understand the aversion to MS, it is a
  8571. > shame.  There are a lot of useful programs available
  8572. > from a variety of sources that run on Windows.
  8573.  
  8574. I know that - I run a few of them around here (several 
  8575. versions fo WordPerfect, several versions of CorelDraw 
  8576. and CorelPhotoPaint, etc). I even have TrueMand 
  8577. here - does some very nice images, but sometimes 
  8578. likes to leave blank lines when minimized. But I run OS/2 
  8579. and W95 on the same box, and OS/2 runs faster and more 
  8580. smoothly.
  8581.  
  8582. I suppose someday I'll have to download the Fractint 
  8583. source and see about compiling it to an OS/2 native. 
  8584. (Yes, I've futzed with the OS/2 version of WinFract - DOS 
  8585. Fractint beats it hands down.) Of course, I'm no 
  8586. programmer, so I'd probably just mess it all up ... <G>
  8587.  
  8588. Anyway, unless some experts are interested in producing a 
  8589. native OS/2 version of DOS Fractint, I suspect this is 
  8590. sufficiently offtopic to make it worth dumping my part of 
  8591. the discussion.
  8592.  
  8593. Another blast of bits from David
  8594. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  8595. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  8596.  
  8597. Random Thought for this Nanosecond
  8598. Anagramming, n. - Making sense out of scrambled information. Programming, n, - See Anagramming. (D.Jones)
  8599.  
  8600.  
  8601.  
  8602. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8603. Post Message:   fractint@lists.xmission.com
  8604. Get Commands:   majordomo@lists.xmission.com "help"
  8605. Administrator:  twegner@phoenix.net
  8606. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8607.  
  8608.  
  8609. -------------------------------------------------------------------------------
  8610.  
  8611. From: "Shauna Jones" <shauna@aloha.net>
  8612. Subject: Re: (fractint) Xaos
  8613. Date: 16 Feb 1999 00:36:01 -1000
  8614.  
  8615. Thanks - downloading the OS/2 version right now.
  8616.  
  8617. On 14 Feb 99 at 20:11, Tim Wegner wrote:
  8618.  
  8619. > Shauna asked:
  8620. > > Where could I find Xaos? As long as UltraFractal and 
  8621. > > other GUI-based fractal generators remain tied into the 
  8622. > > proprietary MS GUI, I'm not inclined to use them.
  8623. > Xaos is a very interesting program. It runs under DOS,
  8624. > Liunux, and now Windows. It's most unique feature is
  8625. > real-time zooming. And, for the programmers, it is open
  8626. > source.
  8627. > Check out:
  8628. > http://www.paru.cas.cz/~hubicka/XaoS/
  8629.  
  8630. Another blast of bits from David
  8631. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  8632. For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  8633.  
  8634. Random Thought for this Nanosecond
  8635. The only way you'll *find* the place you want in society is to *make* the place you want in society. (D.Jones)
  8636.  
  8637.  
  8638.  
  8639. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8640. Post Message:   fractint@lists.xmission.com
  8641. Get Commands:   majordomo@lists.xmission.com "help"
  8642. Administrator:  twegner@phoenix.net
  8643. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8644.  
  8645.  
  8646. -------------------------------------------------------------------------------
  8647.  
  8648. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  8649. Subject: Re: (fractint) The price of fractal software
  8650. Date: 16 Feb 1999 12:09:29 +0100
  8651.  
  8652. I have tried that with an older version (?) of UF and an old version of WINE
  8653. (!). Unsuccessful. But there may be a good chance. TieraZon for instance
  8654. runs great under my wine.
  8655.  
  8656. I'll try to run UF. Unfortunately I'll have to dl the binaries (I have the
  8657. 990214 source, but not enough HD space to compile...) and try it again.
  8658.  
  8659. --
  8660.  
  8661. Dean-Christian Strik
  8662.    ICQ: 11760568
  8663.  dean2@bigfoot.com
  8664. cstrik.isg@hetnet.nl
  8665.  
  8666. Real programmers like vending machine popcorn. Coders pop it in the
  8667. microwave oven. Real programmers use the heat given off by the CPU. They can
  8668. tell what job is running just by listening to the rate of popping.
  8669.  
  8670.  
  8671. -----Original Message-----
  8672.  
  8673.  
  8674. >>Though I can understand the aversion to MS, it is a shame.  There are a
  8675. >>lot of useful programs available from a variety of sources that run on
  8676. >>Windows.
  8677. >>
  8678. >
  8679. >Does anyone know if UltraFractal will work under WINE? This would allow
  8680. >Linux users to run it...
  8681. >
  8682. >
  8683. >
  8684. >--------------------------------------------------------------
  8685. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  8686. >Post Message:   fractint@lists.xmission.com
  8687. >Get Commands:   majordomo@lists.xmission.com "help"
  8688. >Administrator:  twegner@phoenix.net
  8689. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8690. >
  8691.  
  8692.  
  8693.  
  8694. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8695. Post Message:   fractint@lists.xmission.com
  8696. Get Commands:   majordomo@lists.xmission.com "help"
  8697. Administrator:  twegner@phoenix.net
  8698. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8699.  
  8700.  
  8701. -------------------------------------------------------------------------------
  8702.  
  8703. From: Paul Derbyshire <pderbysh@usa.net>
  8704. Subject: Re: (fractint) happy99
  8705. Date: 16 Feb 1999 06:46:32 -0500
  8706.  
  8707. At 09:51 AM 2/15/99 -0500, you wrote:
  8708. >   Thank you. 
  8709. >I don't talk much but I read everything.    Attachment Converted:
  8710. >"c:\WINDOWS\DESKTOP\Temporary Stuff\Attachments\bfranzus1.vcf" 
  8711.  
  8712. AAAA! More attachments!
  8713.  
  8714. -- 
  8715.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  8716. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  8717.    `*'  straight line."    -------------------------------------------------
  8718.         -- B. Mandelbrot  |http://surf.to/pgd.net
  8719. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  8720. Programmer & Humanist|ICQ: 10423848|
  8721.  
  8722. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8723. Post Message:   fractint@lists.xmission.com
  8724. Get Commands:   majordomo@lists.xmission.com "help"
  8725. Administrator:  twegner@phoenix.net
  8726. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8727.  
  8728.  
  8729. -------------------------------------------------------------------------------
  8730.  
  8731. From: Tom Conally <conally@netpath.net>
  8732. Subject: (fractint) first par post
  8733. Date: 16 Feb 1999 10:05:48 -0500
  8734.  
  8735. OK guys I have been on the list for sometime and haven't contributed a par.
  8736. Here is my first posted  Fractint par
  8737. I'll let you guys that understand the formulas do the formula manipulation
  8738. for now.
  8739.  
  8740. headdress.par
  8741. headdress          { ; Tom Conally 1999
  8742.   reset=1960 type=manlam(fn||fn) function=sin/sqr passes=t
  8743.   center-mag=+3.09702876164433700/-0.00000000030908016/4.164104e+007
  8744.   params=0/0/10 float=y maxiter=1000 fillcolor=111
  8745.   colors=000JwV<3>6sFZwj<5>v_oSsj<6>44nVvg<6>RQNZxf<5>vfGVzj<5>_wf`vebfZjM\
  8746.   Ms19Yxg<6>ugNjDWWol<3>a4xX__Z8OZvh<4>uaWNlmFYp6JtVve<4>VaCUX6Wse<6>i06Gg\
  8747.   q0PxLp`BeQ0VFWze<6>ht6Ook<2>0IqTvi<2>LidOud<2>1dK_tj<2>p_mSsf<5>ADEXod<2\
  8748.   >dJMUwe<5>Oa6ZcpbGvTue<6>DL1VvjVqkZriVll<2>WYn<2>8jk<3>BdI<5>W4P<2>Q4iN5\
  8749.   qMAq<5>Efs55n<5>uOt<4>lVikXfiYdg_ageahk`ir_<6>W7j<2>uLe<2>79T<6>oAYI9kim\
  8750.   _X9L<4>BSK`cXbZUVrk<4>SBuPoe<3>04KZzi<5>xzaTkh<2>K3bTuk<6>FLuSzfPybMxZ
  8751.   }
  8752.  
  8753.  
  8754. Tom Conally
  8755. In every boomerang there is a perfect throw.
  8756. Your life, Grasshopper, is to practice
  8757. till you find that throw
  8758. and become one with that boomerang!
  8759. http://www.angelfire.com/nc/conally  " Flying Frog Boomerangs"
  8760. http://members.tripod.com/~afractal   " Flying Frogs Fractals"
  8761. http://www.netpath.net/~conally     "Paradise"
  8762.  
  8763. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8764. Post Message:   fractint@lists.xmission.com
  8765. Get Commands:   majordomo@lists.xmission.com "help"
  8766. Administrator:  twegner@phoenix.net
  8767. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8768.  
  8769.  
  8770. -------------------------------------------------------------------------------
  8771.  
  8772. From: Gedeon Peteri <gedeon@InfoAve.Net>
  8773. Subject: Re: (fractint) Re: updated web site
  8774. Date: 16 Feb 1999 10:22:26 -0500
  8775.  
  8776. Debora,
  8777.  
  8778. Many thanks for your kind comments.
  8779.  
  8780. Gedeon
  8781.  
  8782. Kivryn wrote:
  8783.  
  8784. > Hi Gedeon,
  8785. >
  8786. > Just visited your pages and am very impressed.  Gone thing I got a
  8787. > cd-rw with my computer upgrade. :)  I enjoyed all of your galleries,
  8788. > not just the fractals.
  8789. >
  8790. > Debora
  8791. > _________________________________________________________
  8792. > DO YOU YAHOO!?
  8793. > Get your free @yahoo.com address at http://mail.yahoo.com
  8794. >
  8795. > --------------------------------------------------------------
  8796. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  8797. > Post Message:   fractint@lists.xmission.com
  8798. > Get Commands:   majordomo@lists.xmission.com "help"
  8799. > Administrator:  twegner@phoenix.net
  8800. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8801.  
  8802. --
  8803. Fractals: http://www.geocities.com/~gedeonp/index.html
  8804. Member Infinite Fractal Loop
  8805. Last updated: February 12, 1999 - two new pages
  8806. Photography: http://members.xoom.com/gedeonp/index.html
  8807. Last updated: November 8, 1998
  8808.  
  8809.  
  8810.  
  8811. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8812. Post Message:   fractint@lists.xmission.com
  8813. Get Commands:   majordomo@lists.xmission.com "help"
  8814. Administrator:  twegner@phoenix.net
  8815. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8816.  
  8817.  
  8818. -------------------------------------------------------------------------------
  8819.  
  8820. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  8821. Subject: Re: Xfractint compilation [Re: (fractint) Xaos]
  8822. Date: 16 Feb 1999 16:52:12 +0100
  8823.  
  8824. I have compiled xfractint.... unsuccessfully.
  8825.  
  8826. I haven't really been debugging it yet, but this is what I get.
  8827.  
  8828. I compiled with gcc 2.7.(latest), RH5.2, kernel 2.2.1. Turned on -O3
  8829. optimization btw. No other options changed.
  8830.  
  8831. general.c:12: bstring.h not found.
  8832.  
  8833. --
  8834.  
  8835. Dean-Christian Strik
  8836.    ICQ: 11760568
  8837. dean2@bigfoot.com
  8838. cstrik.isg@hetnet.nl
  8839.  
  8840. Real programmers like vending machine popcorn. Coders pop it in the
  8841. microwave oven. Real programmers use the heat given off by the CPU. They can
  8842. tell what job is running just by listening to the rate of popping.
  8843.  
  8844.  
  8845. -----Original Message-----
  8846.  
  8847.  
  8848. >I just downloaded and compiled it (linux).
  8849. >
  8850. >Yeah... the real time zooming is great (something for fractint?). Had to do
  8851. >it in a (??) 320x200 (??) window under X on my P166, but I was impressed.
  8852. >Like flying through space. Just great!
  8853. >
  8854. >Oh, something else. I am going to download the latest xfractint source
  8855. right
  8856. >now. I promised I'd check whether it compiles on RH5.2 (I upgraded to
  8857. kernel
  8858. >2.2.1 but that shouldn't really matter).
  8859. >
  8860. >--
  8861. >
  8862. >Dean-Christian Strik
  8863. >   ICQ: 11760568
  8864. > dean2@bigfoot.com
  8865. >cstrik.isg@hetnet.nl
  8866. >
  8867. >Real programmers like vending machine popcorn. Coders pop it in the
  8868. >microwave oven. Real programmers use the heat given off by the CPU. They
  8869. can
  8870. >tell what job is running just by listening to the rate of popping.
  8871. >
  8872. >
  8873. >-----Original Message-----
  8874. >From: Tim Wegner <twegner@phoenix.net>
  8875. >To: fractint@lists.xmission.com <fractint@lists.xmission.com>
  8876. >Date: maandag 15 februari 1999 03 09 Fluxen
  8877. >Subject: (fractint) Xaos
  8878. >
  8879. >
  8880. >Shauna asked:
  8881. >
  8882. >> Where could I find Xaos? As long as UltraFractal and
  8883. >> other GUI-based fractal generators remain tied into the
  8884. >> proprietary MS GUI, I'm not inclined to use them.
  8885. >
  8886. >Xaos is a very interesting program. It runs under DOS, Liunux, and
  8887. >now Windows. It's most unique feature is real-time zooming. And,
  8888. >for the programmers, it is open source.
  8889. >
  8890. >Check out:
  8891. >
  8892. >http://www.paru.cas.cz/~hubicka/XaoS/
  8893. >
  8894. >Tim
  8895. >
  8896. >
  8897. >>
  8898. >> Another blast of bits from David
  8899. >> http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  8900. >> For the best Hawaii & Pacific Basin surf forecast:
  8901. mailto:hisurf@aloha.net
  8902. >>
  8903. >> Random Thought for this Nanosecond
  8904. >> I'm normally a wolf -- but on full moons I turn into a Sysop.
  8905. >>
  8906. >>
  8907. >>
  8908. >> --------------------------------------------------------------
  8909. >> Thanks for using Fractint, The Fractals and Fractint Discussion List
  8910. >> Post Message:   fractint@lists.xmission.com
  8911. >> Get Commands:   majordomo@lists.xmission.com "help"
  8912. >> Administrator:  twegner@phoenix.net
  8913. >> Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8914. >>
  8915. >
  8916. >http://www.paru.cas.cz/~hubicka/XaoS/
  8917. >
  8918. >--------------------------------------------------------------
  8919. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  8920. >Post Message:   fractint@lists.xmission.com
  8921. >Get Commands:   majordomo@lists.xmission.com "help"
  8922. >Administrator:  twegner@phoenix.net
  8923. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8924. >
  8925. >
  8926. >
  8927.  
  8928.  
  8929.  
  8930.  
  8931.  
  8932. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8933. Post Message:   fractint@lists.xmission.com
  8934. Get Commands:   majordomo@lists.xmission.com "help"
  8935. Administrator:  twegner@phoenix.net
  8936. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8937.  
  8938.  
  8939. -------------------------------------------------------------------------------
  8940.  
  8941. From: Paul Derbyshire <pderbysh@usa.net>
  8942. Subject: Re: Xfractint compilation [Re: (fractint) Xaos]
  8943. Date: 16 Feb 1999 11:13:01 -0500
  8944.  
  8945. At 04:52 PM 2/16/99 +0100, you wrote:
  8946.  
  8947. >I compiled with gcc 2.7.(latest)
  8948.  
  8949. I hate to break the bad news to you, but the latest GCC is 2.8.1 and
  8950. there's also EGCS.
  8951.  
  8952. -- 
  8953.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  8954. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  8955.    `*'  straight line."    -------------------------------------------------
  8956.         -- B. Mandelbrot  |http://surf.to/pgd.net
  8957. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  8958. Programmer & Humanist|ICQ: 10423848|
  8959.  
  8960. Thanks for using Fractint, The Fractals and Fractint Discussion List
  8961. Post Message:   fractint@lists.xmission.com
  8962. Get Commands:   majordomo@lists.xmission.com "help"
  8963. Administrator:  twegner@phoenix.net
  8964. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  8965.  
  8966.  
  8967. -------------------------------------------------------------------------------
  8968.  
  8969. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  8970. Subject: Re: (fractint) Xaos
  8971. Date: 16 Feb 1999 18:18:37 +0100
  8972.  
  8973. I can't find the windows version.
  8974.  
  8975. --
  8976.  
  8977. Dean-Christian Strik
  8978.    ICQ: 11760568
  8979.  dean2@bigfoot.com
  8980. cstrik.isg@hetnet.nl
  8981.  
  8982. Real programmers like vending machine popcorn. Coders pop it in the
  8983. microwave oven. Real programmers use the heat given off by the CPU. They can
  8984. tell what job is running just by listening to the rate of popping.
  8985.  
  8986. -----Original Message-----
  8987.  
  8988.  
  8989. Shauna asked:
  8990.  
  8991. > Where could I find Xaos? As long as UltraFractal and
  8992. > other GUI-based fractal generators remain tied into the
  8993. > proprietary MS GUI, I'm not inclined to use them.
  8994.  
  8995. Xaos is a very interesting program. It runs under DOS, Liunux, and
  8996. now Windows. It's most unique feature is real-time zooming. And,
  8997. for the programmers, it is open source.
  8998.  
  8999. Check out:
  9000.  
  9001. http://www.paru.cas.cz/~hubicka/XaoS/
  9002.  
  9003. Tim
  9004.  
  9005.  
  9006. >
  9007. > Another blast of bits from David
  9008. > http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  9009. > For the best Hawaii & Pacific Basin surf forecast: mailto:hisurf@aloha.net
  9010. >
  9011. > Random Thought for this Nanosecond
  9012. > I'm normally a wolf -- but on full moons I turn into a Sysop.
  9013. >
  9014. >
  9015. >
  9016. > --------------------------------------------------------------
  9017. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  9018. > Post Message:   fractint@lists.xmission.com
  9019. > Get Commands:   majordomo@lists.xmission.com "help"
  9020. > Administrator:  twegner@phoenix.net
  9021. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9022. >
  9023.  
  9024. http://www.paru.cas.cz/~hubicka/XaoS/
  9025.  
  9026. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9027. Post Message:   fractint@lists.xmission.com
  9028. Get Commands:   majordomo@lists.xmission.com "help"
  9029. Administrator:  twegner@phoenix.net
  9030. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9031.  
  9032.  
  9033.  
  9034.  
  9035. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9036. Post Message:   fractint@lists.xmission.com
  9037. Get Commands:   majordomo@lists.xmission.com "help"
  9038. Administrator:  twegner@phoenix.net
  9039. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9040.  
  9041.  
  9042. -------------------------------------------------------------------------------
  9043.  
  9044. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  9045. Subject: Re: Xfractint compilation [Re: (fractint) Xaos]
  9046. Date: 16 Feb 1999 18:20:59 +0100
  9047.  
  9048. With gcc "2.7.(latest)" I mean the latest 2.7 release.
  9049.  
  9050. I have 2.8.1 as well, but as you very well know, it's not that perfect....
  9051.  
  9052. --
  9053.  
  9054. Dean-Christian Strik
  9055.    ICQ: 11760568
  9056.  dean2@bigfoot.com
  9057. cstrik.isg@hetnet.nl
  9058.  
  9059. Real programmers like vending machine popcorn. Coders pop it in the
  9060. microwave oven. Real programmers use the heat given off by the CPU. They can
  9061. tell what job is running just by listening to the rate of popping.
  9062.  
  9063.  
  9064. -----Original Message-----
  9065.  
  9066.  
  9067. >At 04:52 PM 2/16/99 +0100, you wrote:
  9068. >
  9069. >>I compiled with gcc 2.7.(latest)
  9070. >
  9071. >I hate to break the bad news to you, but the latest GCC is 2.8.1 and
  9072. >there's also EGCS.
  9073. >
  9074. >--
  9075. >   .*.  "Clouds are not spheres, mountains are not cones, coastlines are
  9076. not
  9077. >-()  <  circles, and bark is not smooth, nor does lightning travel in a
  9078. >   `*'  straight
  9079. e."    -------------------------------------------------
  9080. >        -- B. Mandelbrot  |http://surf.to/pgd.net
  9081. >_____________________ ____|________     Paul Derbyshire
  9082. pderbysh@usa.net
  9083. >Programmer & Humanist|ICQ: 10423848|
  9084. >
  9085. >--------------------------------------------------------------
  9086. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  9087. >Post Message:   fractint@lists.xmission.com
  9088. >Get Commands:   majordomo@lists.xmission.com "help"
  9089. >Administrator:  twegner@phoenix.net
  9090. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9091. >
  9092.  
  9093.  
  9094.  
  9095. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9096. Post Message:   fractint@lists.xmission.com
  9097. Get Commands:   majordomo@lists.xmission.com "help"
  9098. Administrator:  twegner@phoenix.net
  9099. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9100.  
  9101.  
  9102. -------------------------------------------------------------------------------
  9103.  
  9104. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  9105. Subject: Re: (fractint) The price of fractal software
  9106. Date: 16 Feb 1999 09:59:09 -0800 (PST)
  9107.  
  9108.  
  9109. Tim,
  9110.  
  9111. > > Only in the last stage I have added a feature
  9112. > > to import Fractint parameter sets. This was possible because the
  9113. > > formula compiler can also read Fractint fractal formulas.
  9114. > > 
  9115. > > Thanks to the extensive documentation in Fractint, I was able to
  9116. > > do this without looking at the source, just by following the help
  9117. > > text and trying some parameter sets to be sure.
  9118. > However, in a more general way I could have been talking about 
  9119. > Ultra Fractal. You have benefiting enormously from Fractint in 
  9120. > developing your concepts to go beyond Fractint. You say as much 
  9121. > in the quotes above. You have included the functionality of 
  9122. > Fractint's parser in your program. If you hadn't, it would not be 
  9123. > possible to run translated formula PARs in Ultra Fractal. (You were 
  9124. > within your rights to do this).
  9125.  
  9126. Doesn't this happen with virtually all competing (similar) programs?
  9127.  
  9128. I certainly don't condone stealing of anyone's code, but I see that this
  9129. is merely the natural competition between similar programs as they
  9130. evolve.  It happens all the time with Netscape/IE, Word/WordPerfect,
  9131. etc., etc., etc.
  9132.  
  9133. > I find that now the shoe is on the other foot. My programming skills 
  9134. > have fallen way behind because in my professional life I do non-GUI 
  9135. > C programming. I have never managed to get myself assigned to do 
  9136. > any Windows or GUI programming, or even C++. Most of the other 
  9137. > team members are in a similar situation. Unless we get an infusion 
  9138. > of new programming blood, or unless someone starts a brand new 
  9139. > open source project similar to Fractint (but avoids the problems of 
  9140. > the legacy code and platform), Fractint and what it represents is 
  9141. > dead.
  9142.  
  9143. This would be a shame, but is understandable.  Personally, being tied
  9144. to the text based IF is what limits my using Fractint more.  I certainly
  9145. love it for generating images from PARs people post, though.
  9146.  
  9147. > Where is there a full featured, open source program that is a 
  9148. > worthy successor to Fractint? There isn't one, as far as I know. 
  9149.  
  9150. Well, UF could certainly evolve into such a thing, at least on the
  9151. Windows platform, though it may not be open source.  One a program
  9152. enters into the GUI interface realm, portability suddenly becomes quite
  9153. a major task.  Maybe one could study PoVRay to learn what they have done
  9154. and apply it to Fractint's future.
  9155.  
  9156. > Actually I am very interested in Xaos, which runs on many 
  9157. > platforms, and has just been ported to Windows. I may shift my 
  9158. > efforts to working with Xaos, or merging some of Fractint's features 
  9159. > with Xaos. Xaos, besides being open source, acknowledges 
  9160. > Fractint generously.
  9161.  
  9162. Is there a link to the Windows version?  I haven't been able to find
  9163. it.
  9164.  
  9165. > I am radically committed to the open source concept. I love Linux, 
  9166. > POV-Ray, Fractint, and Xaos for this reason. I don't expect anyone 
  9167. > one else to agree with me. It's just my personal decision. I am not 
  9168. > even speaking for "Stone Soup" when I say this.
  9169.  
  9170. I think these efforts are wonderful.  I hope they are able to continue.
  9171. I also understand the reasons why people choose to go the commercial or
  9172. shareware routes.
  9173.  
  9174. > The bottom line for me is: you have benefited from our thousands of 
  9175. > hours of work over ten years. We will not benefit from your work 
  9176. > because your program is not open source. I am not saying you are 
  9177. > making the wrong decision, or that the situation should be 
  9178. > otherwise, I am  just saying that it's a fact: we won't be able to 
  9179. > benefit from your work. We knew this was a possibility going in, we 
  9180. > took the risk with our eyes wide open, so we can't complain.
  9181.  
  9182. I'm not so sure this is totally accurate.  Did Frederik study the source
  9183. code?  If not, then you can benefit from UF just as much as he may have
  9184. benefitted from Fractint.  One can benefit greatly simply by studying
  9185. documentation, help files, UI layout, etc. without having access to the
  9186. source.
  9187.  
  9188.  
  9189.  
  9190. Ken...
  9191.  
  9192.  
  9193.  
  9194.  
  9195.  
  9196.  
  9197.  
  9198.  
  9199.  
  9200.  
  9201.  
  9202.  
  9203.  
  9204.  
  9205.  
  9206. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9207. Post Message:   fractint@lists.xmission.com
  9208. Get Commands:   majordomo@lists.xmission.com "help"
  9209. Administrator:  twegner@phoenix.net
  9210. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9211.  
  9212.  
  9213. -------------------------------------------------------------------------------
  9214.  
  9215. From: "Ricardo M. Forno" <rforno@afip.gov.ar>
  9216. Subject: (fractint) Questions about Fractint
  9217. Date: 16 Feb 1999 15:04:06 -0300
  9218.  
  9219. Please, anyone up there can help?
  9220. I have two questions about Fractint:
  9221. 1) I have seen parameter files where a background/border in a different
  9222. color is drawn, but I can't get one. How is it done?
  9223. 2) Why many (not all) lyapunov fractals are drawn with the "1" option in
  9224. the x screen, in spite of having specified "g"?
  9225. Thanks a lot!
  9226.  
  9227. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9228. Post Message:   fractint@lists.xmission.com
  9229. Get Commands:   majordomo@lists.xmission.com "help"
  9230. Administrator:  twegner@phoenix.net
  9231. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9232.  
  9233.  
  9234. -------------------------------------------------------------------------------
  9235.  
  9236. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  9237. Subject: Re: (fractint) The price of fractal software
  9238. Date: 16 Feb 1999 10:04:17 -0800 (PST)
  9239.  
  9240.  
  9241. Tim,
  9242.  
  9243. > The question then is, should Fractint remain open source, or 
  9244. > should we not release the source to version 20? Why should we 
  9245. > write open source, free software, when others will look at our code, 
  9246. > even ask us questions about specific lines of code, and incorporate 
  9247. > our new features into their fractint-compatible, commercial, closed 
  9248. > source program?
  9249.  
  9250. People can incorporate your features regardless of the availability of
  9251. the source.
  9252.  
  9253. Though, to answer your question, I would think the answer might depend
  9254. upon whether or not the developers of Fracint want to benefit
  9255. financially from their efforts.  Or, at least attempt to.
  9256.  
  9257. If your philosophy is to keep the development open, and make the source
  9258. available, then you continue to do so out of principle fully realizing
  9259. the risk of others studying the code and doing as you might fear.
  9260.  
  9261. Either way, I would support your decision.
  9262.  
  9263.  
  9264. Ken...
  9265.  
  9266.  
  9267.  
  9268. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9269. Post Message:   fractint@lists.xmission.com
  9270. Get Commands:   majordomo@lists.xmission.com "help"
  9271. Administrator:  twegner@phoenix.net
  9272. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9273.  
  9274.  
  9275. -------------------------------------------------------------------------------
  9276.  
  9277. From: "Frederik Slijkerman" <fjslman@wins.uva.nl>
  9278. Subject: Re: (fractint) The price of fractal software
  9279. Date: 16 Feb 1999 19:59:40 +0100
  9280.  
  9281.  
  9282. > Does anyone know if UltraFractal will work under WINE? This would allow
  9283. > Linux users to run it...
  9284.  
  9285. If anyone can get UF to work with Linux, I would be interested to hear 
  9286. about it.
  9287.  
  9288. Best regards,
  9289. Frederik.
  9290.  
  9291.  
  9292. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9293. Post Message:   fractint@lists.xmission.com
  9294. Get Commands:   majordomo@lists.xmission.com "help"
  9295. Administrator:  twegner@phoenix.net
  9296. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9297.  
  9298.  
  9299. -------------------------------------------------------------------------------
  9300.  
  9301. From: "Frederik Slijkerman" <fjslman@wins.uva.nl>
  9302. Subject: Re: (fractint) The price of fractal software
  9303. Date: 16 Feb 1999 20:29:33 +0100
  9304.  
  9305. Tim,
  9306.  
  9307. > I installed Ultrafractal 
  9308. > yesterday for a quick look, and it is obviously a program with a 
  9309. > completely different design and implementation. 
  9310.  
  9311. Ok, thanks. :)
  9312.  
  9313. > However, in a more general way I could have been talking about 
  9314. > Ultra Fractal. You have benefiting enormously from Fractint in 
  9315. > developing your concepts to go beyond Fractint. You say as much 
  9316. > in the quotes above. You have included the functionality of 
  9317. > Fractint's parser in your program. If you hadn't, it would not be 
  9318. > possible to run translated formula PARs in Ultra Fractal. (You were 
  9319. > within your rights to do this).
  9320.  
  9321. That's true, but this is not due to the availability of the source
  9322. code. I can learn from Fractint just by using it and reading the
  9323. documentation. In the same fashion other developers can benefit
  9324. from Ultra Fractal, even though its source is not available.
  9325. People can see how I have extended the formula language, how I
  9326. have implemented the interface, etc. The most important design 
  9327. issues are plainly visible from the outside. And the other decisions
  9328. can be made by every decent programmer, I think.
  9329.  
  9330. Furthermore, I think it is very difficult to understand source
  9331. code written by others (especially if it's not very well commented
  9332. :-)). So in my experience it is usually more efficient to write
  9333. things yourself than by copying it from others. At least when
  9334. you know how to do it.
  9335.  
  9336. > Unless we get an infusion 
  9337. > of new programming blood, or unless someone starts a brand new 
  9338. > open source project similar to Fractint (but avoids the problems of 
  9339. > the legacy code and platform), Fractint and what it represents is 
  9340. > dead.
  9341.  
  9342. That's a pity. But I can very well understand that working on
  9343. Fractint is not as fun and exciting for you anymore as it as been
  9344. ten years ago. Ten years is a long period to work on a project.
  9345.  
  9346. > The bottom line for me is: you have benefited from our thousands of 
  9347. > hours of work over ten years. We will not benefit from your work 
  9348. > because your program is not open source.
  9349.  
  9350. This is not true, as I have pointed out above.
  9351.  
  9352. Best regards,
  9353. Frederik.
  9354.  
  9355.  
  9356. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9357. Post Message:   fractint@lists.xmission.com
  9358. Get Commands:   majordomo@lists.xmission.com "help"
  9359. Administrator:  twegner@phoenix.net
  9360. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9361.  
  9362.  
  9363. -------------------------------------------------------------------------------
  9364.  
  9365. From: Paul Derbyshire <pderbysh@usa.net>
  9366. Subject: Re: Xfractint compilation [Re: (fractint) Xaos]
  9367. Date: 16 Feb 1999 15:07:44 -0500
  9368.  
  9369. At 06:20 PM 2/16/99 +0100, you wrote:
  9370. >With gcc "2.7.(latest)" I mean the latest 2.7 release.
  9371. >
  9372. >I have 2.8.1 as well, but as you very well know, it's not that perfect....
  9373.  
  9374. EGCS is good, except for a nagging exception bug (this prints a bogus
  9375. error: void (*func) (void) throw (); ... Stroustrup 3rd Ed clearly states
  9376. that an exception specification on a function pointer is legitimate).
  9377.  
  9378. -- 
  9379.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  9380. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  9381.    `*'  straight line."    -------------------------------------------------
  9382.         -- B. Mandelbrot  |http://surf.to/pgd.net
  9383. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  9384. Programmer & Humanist|ICQ: 10423848|
  9385.  
  9386. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9387. Post Message:   fractint@lists.xmission.com
  9388. Get Commands:   majordomo@lists.xmission.com "help"
  9389. Administrator:  twegner@phoenix.net
  9390. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9391.  
  9392.  
  9393. -------------------------------------------------------------------------------
  9394.  
  9395. From: Barry N Merenoff <110144.2274@compuserve.com>
  9396. Subject: (fractint) Re: One of the two questions about Fractint
  9397. Date: 16 Feb 1999 15:59:37 -0500
  9398.  
  9399. The option for coloring the boundaries in Boundary Tracing is inaptly nam=
  9400. ed
  9401. Fill Color. (?!)
  9402.  
  9403. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9404. Post Message:   fractint@lists.xmission.com
  9405. Get Commands:   majordomo@lists.xmission.com "help"
  9406. Administrator:  twegner@phoenix.net
  9407. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9408.  
  9409.  
  9410. -------------------------------------------------------------------------------
  9411.  
  9412. From: Damascena@aol.com
  9413. Subject: Re: (fractint) Re: One of the two questions about Fractint
  9414. Date: 16 Feb 1999 16:27:45 EST
  9415.  
  9416. In a message dated 2/16/99 2:04:08 PM Mountain Standard Time,
  9417. 110144.2274@compuserve.com writes:
  9418.  
  9419. > The option for coloring the boundaries in Boundary Tracing is inaptly named
  9420. >  Fill Color. (?!)
  9421.  
  9422. Umm, that's the color used to fill in the often fairly large spaces outlined
  9423. by the boundaries (or the spaces sometimes left with the Tesseral option). "B"
  9424. instead of 1, 2, G, etc. sets the Boundary Tracing option. ("T" sets
  9425. Tesseral.)
  9426.  
  9427. Dama <boundary-tracing fanatic>
  9428.  
  9429. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9430. Post Message:   fractint@lists.xmission.com
  9431. Get Commands:   majordomo@lists.xmission.com "help"
  9432. Administrator:  twegner@phoenix.net
  9433. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9434.  
  9435.  
  9436. -------------------------------------------------------------------------------
  9437.  
  9438. From: John Wilson <johnw1@attcanada.net>
  9439. Subject: (fractint) Re: READ THIS NOW.
  9440. Date: 16 Feb 1999 15:59:50 -0800
  9441.  
  9442. Hi Clifford,
  9443.  
  9444. Sunday, February 14, 1999, you wrote:
  9445.  
  9446. CH> Goto http://www.datafellows.com/news/pr/eng/19990129.htm
  9447. CH> This is a possible virus. The above link points to a reputable source where
  9448. CH> you can find out more. Do yourself a favor and don't run any unsolicated
  9449. CH> attachments, ever.
  9450.  
  9451. CH> At 08:16 PM 2/14/99 +0000, John Wilson wrote:
  9452. >>
  9453. >>Attachment Converted: "c:\program files\eudora\attach\Happy99.exe"
  9454.  
  9455. And I want to thank you for your input.   I've written to Tim as
  9456. follows:
  9457.  
  9458. SNIP   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  9459.  
  9460. As I now have a sterilized machine, I can write this overdue letter.
  9461.  
  9462. Firstly I want to apologize for being the unwitting instrument for
  9463. the transmission of the Happy99 worm into the Fractint group.
  9464.  
  9465. Next, I wish to warn you that this thing is just a little smarter than
  9466. Fractint members realize.  As I'm no longer on your list, I am unable
  9467. to issue a warning, but may I suggest that you might remind all
  9468. members to examine their computer with an up-to-date virus
  9469. checker: i.e. one which is aware of late 1998 - 1999 viruses.
  9470.  -------------------------------------------------
  9471. Incidentally, that worm did not ATTACH to a message, it REPLACED the
  9472. following...which was dumped into my "sent" folder.   Note the date;
  9473. actually Nature wrote on Feb.13th, and I replied on the 14th.  This
  9474. old date effectively hid the message among stuff sent a year ago.
  9475.  
  9476. Sunday, December 13, 1998, Nature wrote:
  9477.  
  9478. NL>   Well, I was playing with my frm file, and I came up with this
  9479. NL> formula. I
  9480. NL> don't know if this same mathematical logic has done before; I
  9481. NL> don't know all
  9482. NL> the frms floating around out there. :-P The parallelogram
  9483. NL> structure here is
  9484. NL> kinda interesting.
  9485.  
  9486. Yes it is, and zooming into the bottom RH corner, plus adding a little
  9487. color, produced some remarkable draped corridors for me.  I found this
  9488. an interesting fractal, as the actual *drawing* process is visually
  9489. fascinating, in some of these zooms.  Closing drapes and rolling
  9490. carpets!   Mark's modification of the frm didn't seem to affect the
  9491. results significantly!
  9492.  
  9493.  John W.
  9494.  
  9495. Finally, I ask you to please convey to the Fractint group my thanks to
  9496. those members of your group who offered constructive and informative
  9497. comment on my problem.  Their input enabled me to clean up my two
  9498. computers promptly, and was extremely timely, as I was about to e-mail
  9499. a large number of people with my e-mail address change.  I bless these
  9500. smart guys from the bottom of my heart!
  9501.  
  9502. SNIP   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  9503.  
  9504.  
  9505. Thanks again,
  9506. John W.
  9507.                         mailto:johnw1@attcanada.net
  9508.  
  9509.  
  9510.  
  9511. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9512. Post Message:   fractint@lists.xmission.com
  9513. Get Commands:   majordomo@lists.xmission.com "help"
  9514. Administrator:  twegner@phoenix.net
  9515. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9516.  
  9517.  
  9518. -------------------------------------------------------------------------------
  9519.  
  9520. From: John Wilson <johnw1@attcanada.net>
  9521. Subject: Re[2]: (fractint) In Which The Mad Lurker Actually Posts A Par
  9522. Date: 16 Feb 1999 16:21:45 -0800
  9523.  
  9524. Hello davides,
  9525.  
  9526. Sunday, Sunday, February 14, 1999, you wrote:
  9527.  
  9528. d> Received from John Wilson the below, in which there was no par, simply the
  9529. d> Happy99.exe worm.
  9530. d> Tim - remove either Mr. Wilson from this list or me. Your choice.
  9531.  
  9532.  (Please read the headers, which you carefully copied.
  9533.  Note the ****RE*** at the beginning of the subject.   This indicates that
  9534.  my message was a *reply* to that "Mad Lurker" title, and NOT my original).
  9535.  
  9536.  I have written to Tim as follows...
  9537.  
  9538.  SNIP   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  9539.  
  9540. As I now have a sterilized machine, I can write this overdue letter.
  9541.  
  9542. Firstly I want to apologize for being the unwitting instrument for
  9543. the transmission of the Happy99 worm into the Fractint group.
  9544.  
  9545. Next, I wish to warn you that this thing is just a little smarter than
  9546. Fractint members realize.  As I'm no longer on your list, I am unable
  9547. to issue a warning, but may I suggest that you might remind all
  9548. members to examine their computer with an up-to-date virus
  9549. checker: i.e. one which is aware of late 1998 - 1999 viruses.
  9550.  -------------------------------------------------
  9551. Incidentally, that worm did not ATTACH to a message, it REPLACED the
  9552. following...which was dumped into my "sent" folder.   Note the date;
  9553. actually Nature wrote on Feb.13th, and I replied on the 14th.  This
  9554. old date effectively hid the message among stuff sent a year ago.
  9555.  
  9556. Sunday, December 13, 1998, Nature wrote:
  9557.  
  9558. NL>   Well, I was playing with my frm file, and I came up with this
  9559. NL> formula. I
  9560. NL> don't know if this same mathematical logic has done before; I
  9561. NL> don't know all
  9562. NL> the frms floating around out there. :-P The parallelogram
  9563. NL> structure here is
  9564. NL> kinda interesting.
  9565.  
  9566. Yes it is, and zooming into the bottom RH corner, plus adding a little
  9567. color, produced some remarkable draped corridors for me.  I found this
  9568. an interesting fractal, as the actual *drawing* process is visually
  9569. fascinating, in some of these zooms.  Closing drapes and rolling
  9570. carpets!   Mark's modification of the frm didn't seem to affect the
  9571. results significantly!
  9572.  
  9573.  John W.
  9574.  
  9575. Finally, I ask you to please convey to the Fractint group my thanks to
  9576. those members of your group who offered constructive and informative
  9577. comment on my problem.  Their input enabled me to clean up my two
  9578. computers promptly, and was extremely timely, as I was about to e-mail
  9579. a large number of people with my e-mail address change.  I bless these
  9580. smart guys from the bottom of my heart!
  9581.  
  9582. SNIP   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  9583.  
  9584.  
  9585. John W.                            mailto:johnw1@attcanada.net
  9586.  
  9587.  
  9588.  
  9589. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9590. Post Message:   fractint@lists.xmission.com
  9591. Get Commands:   majordomo@lists.xmission.com "help"
  9592. Administrator:  twegner@phoenix.net
  9593. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9594.  
  9595.  
  9596. -------------------------------------------------------------------------------
  9597.  
  9598. From: "Tim Wegner" <twegner@phoenix.net>
  9599. Subject: (fractint) (Fwd) An apology
  9600. Date: 16 Feb 1999 19:02:36 -0600
  9601.  
  9602. John Wilson informs me that he has now cleaned up his machine, 
  9603. so I am putting him back on the fractint list. When I took him off 
  9604. the list after the worm-infected happy99 file sent itself to the list 
  9605. from his machine, I told him I would put him back on as soon as he 
  9606. told me his machine was clean.
  9607.  
  9608. Here is his note to me. Quite an interesting story. I guess I need 
  9609. not say this again, but folks should NEVER run an executable 
  9610. attached to an email message.
  9611.  
  9612. Here is another good link telling what to do about the worm.
  9613. http://www.symantec.com/avcenter/venc/data/happy99.worm.html
  9614.  
  9615. I hearby declare that (for a few days anyway) further discussion, 
  9616. and welcome back messages to John, are "on topic".
  9617.  
  9618. Tim Wegner
  9619.  
  9620. ------- Forwarded Message Follows -------
  9621. Date sent:          Tue, 16 Feb 1999 15:32:57 -0800
  9622. Send reply to:      John Wilson <johnw1@attcanada.net>
  9623.  
  9624. As I now have a sterilized machine, I can write this overdue letter.
  9625.  
  9626. Firstly I want to apologize for being the unwitting instrument for
  9627. the transmission of the Happy99 worm into the Fractint group.
  9628.  
  9629. Next, I wish to warn you that this thing is just a little smarter than
  9630. Fractint members realize.  As I'm no longer on your list, I am unable
  9631. to issue a warning, but may I suggest that you might remind all
  9632. members to examine their computer with an up-to-date virus
  9633. checker: i.e. one which is aware of late 1998 - 1999 viruses.
  9634.  -------------------------------------------------
  9635. Incidentally, that worm did not ATTACH to a message, it REPLACED the
  9636. following...which was dumped into my "sent" folder.   Note the date;
  9637. actually Nature wrote on Feb.13th, and I replied on the 14th.  This
  9638. old date effectively hid the message among stuff sent a year ago.
  9639.  
  9640. Sunday, December 13, 1998, Nature wrote:
  9641.  
  9642. NL>   Well, I was playing with my frm file, and I came up with this
  9643. NL> formula. I
  9644. NL> don't know if this same mathematical logic has done before; I
  9645. NL> don't know all
  9646. NL> the frms floating around out there. :-P The parallelogram
  9647. NL> structure here is
  9648. NL> kinda interesting.
  9649.  
  9650. Yes it is, and zooming into the bottom RH corner, plus adding a little
  9651. color, produced some remarkable draped corridors for me.  I found this
  9652. an interesting fractal, as the actual *drawing* process is visually
  9653. fascinating, in some of these zooms.  Closing drapes and rolling
  9654. carpets!   Mark's modification of the frm didn't seem to affect the
  9655. results significantly!
  9656.  
  9657.  John W.
  9658.  
  9659. Finally, I ask you to please convey to the Fractint group my thanks to
  9660. those members of your group who offered constructive and informative
  9661. comment on my problem.  Their input enabled me to clean up my two
  9662. computers promptly, and was extremely timely, as I was about to e-mail
  9663. a large number of people with my e-mail address change.  I bless these
  9664. smart guys from the bottom of my heart!
  9665.  
  9666. John W.                          mailto:johnw1@attcanada.net
  9667.  
  9668.  
  9669.  
  9670. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9671. Post Message:   fractint@lists.xmission.com
  9672. Get Commands:   majordomo@lists.xmission.com "help"
  9673. Administrator:  twegner@phoenix.net
  9674. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9675.  
  9676.  
  9677. -------------------------------------------------------------------------------
  9678.  
  9679. From: "Pedro A. O. Lopes" <paol@mail.teleweb.pt>
  9680. Subject: GUIs and the future of Fractint (was: Re: (fractint) The price of 
  9681. Date: 17 Feb 1999 01:35:30 +0000
  9682.  
  9683. Ken Childress wrote:
  9684. > Tim,
  9685. > (...)
  9686. >
  9687. > > I find that now the shoe is on the other foot. My programming skills
  9688. > > have fallen way behind because in my professional life I do non-GUI
  9689. > > C programming. I have never managed to get myself assigned to do
  9690. > > any Windows or GUI programming, or even C++. Most of the other
  9691. > > team members are in a similar situation. Unless we get an infusion
  9692. > > of new programming blood, or unless someone starts a brand new
  9693. > > open source project similar to Fractint (but avoids the problems of
  9694. > > the legacy code and platform), Fractint and what it represents is
  9695. > > dead.
  9696. > This would be a shame, but is understandable.  Personally, being tied
  9697. > to the text based IF is what limits my using Fractint more.  I certainly
  9698. > love it for generating images from PARs people post, though.
  9699.  
  9700. I agree that fractint must break free of DOS if it is going to keep up 
  9701. with the host of fractal programs that are out there. I really think the 
  9702. best way to do this would be to throw all UI related stuff out, leaving 
  9703. the "core" functionality to be accessed through a well defined programming 
  9704. interface (something like set_parameter(...) / get_parameter(...) /
  9705. execute_command(...) ). Then, in good Open Source style, anyone could 
  9706. volunteer to support a GUI as a front end to this library, for any variety 
  9707. of environments, more or less independently of the core fractint 
  9708. development.
  9709.  
  9710. Of course any changes of this kind will probably require a big 
  9711. reorganization of the code, and some careful design (easier said than
  9712. done...). Judging from what I remember of the fractint source (during a 
  9713. hunt for a piece of code I wanted to borrow, no less...) this may not be
  9714. easy - it's pretty hairy stuff - globals everywhere, DOS related niceties
  9715. such as overlays...
  9716.  
  9717. As for GUI programming it's not that big a deal. I guess a simple Windows
  9718. interface with the same functionality as the one fractint currently has 
  9719. would be pretty simple to do. I've never programmed for X-Windows, but it
  9720. shouldn't be any more difficult.
  9721.  
  9722. I certainly don't think fractint is dead. Maybe it has fallen behind 
  9723. a little in terms display related features, but it's still the most 
  9724. complete and powerful fractal program IMO. I keep reading things like 
  9725. "yeah, I do most exploring in fractint and then I import the par into 
  9726. XXXX for coloring and retouching...". As for "what it represents" if you 
  9727. mean Open Source, I think it's never been more alive!
  9728.  
  9729.  
  9730. > > Where is there a full featured, open source program that is a
  9731. > > worthy successor to Fractint? There isn't one, as far as I know.
  9732. > Well, UF could certainly evolve into such a thing, at least on the
  9733. > Windows platform, though it may not be open source.  One a program
  9734. > enters into the GUI interface realm, portability suddenly becomes quite
  9735. > a major task.  Maybe one could study PoVRay to learn what they have done
  9736. > and apply it to Fractint's future.
  9737.  
  9738. That's one of the biggest advantages of the approach I suggested above:
  9739. if you keep the GUI well separated, the rest of the C code will tend to
  9740. be pretty standard and easily portable - although the heavy use of 
  9741. assembly might complicate things (at least it will make non x86 ports 
  9742. impossible).
  9743.  
  9744.  
  9745. > (...)
  9746. >
  9747. > > I am radically committed to the open source concept. I love Linux,
  9748. > > POV-Ray, Fractint, and Xaos for this reason. I don't expect anyone
  9749. > > one else to agree with me. It's just my personal decision. I am not
  9750. > > even speaking for "Stone Soup" when I say this.
  9751.  
  9752. We seem to have similar tastes in sofware :)
  9753. Linux and Pov-Ray are perhaps the best examples of how far the Open 
  9754. Source model can go, and Fractint is not very far behind. If the DOS 
  9755. lock-in can be broken once and for all, and there are enough people 
  9756. wanting to use it (I must believe there are), then there will also be 
  9757. people willing to keep the project going.
  9758.  
  9759. > (...)
  9760. >
  9761.  
  9762.  
  9763. --
  9764.  
  9765. ----------------------
  9766.   Pedro A. O. Lopes
  9767. (paol@mail.teleweb.pt)
  9768. ----------------------
  9769. Yo-yo: Something occasionally up but normally down (see also "computer")
  9770. ----------------------
  9771.  
  9772. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9773. Post Message:   fractint@lists.xmission.com
  9774. Get Commands:   majordomo@lists.xmission.com "help"
  9775. Administrator:  twegner@phoenix.net
  9776. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9777.  
  9778.  
  9779. -------------------------------------------------------------------------------
  9780.  
  9781. From: "Morgen H Bell" <morgenb@cobweb.net>
  9782. Subject: (fractint) Fractint in DOS
  9783. Date: 16 Feb 1999 22:26:19 -0500
  9784.  
  9785. I like Fractint better than any of my Windows-based fractal generators
  9786. because working with the keyboard is faster than using the mouse.  I think
  9787. Fractint in windows would be great as long as it kept all the keyboard
  9788. shortcut commands.
  9789.                                             Morgen
  9790.  
  9791. http://www.geocities.com/Area51/Orion/4798
  9792.  
  9793.  
  9794. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9795. Post Message:   fractint@lists.xmission.com
  9796. Get Commands:   majordomo@lists.xmission.com "help"
  9797. Administrator:  twegner@phoenix.net
  9798. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9799.  
  9800.  
  9801. -------------------------------------------------------------------------------
  9802.  
  9803. From: John Wilson <johnw1@attcanada.net>
  9804. Subject: Re: (fractint)   An apology (2)
  9805. Date: 16 Feb 1999 19:49:28 -0800
  9806.  
  9807. Hello Tim,
  9808.  
  9809. Tuesday, February 16, 1999, you wrote:
  9810.  
  9811. TW> Here is his note to me. Quite an interesting story. I guess I need
  9812. TW> not say this again, but folks should NEVER run an executable
  9813. TW> attached to an email message.
  9814. .
  9815. .
  9816. TW> I hearby declare that (for a few days anyway) further discussion,
  9817. TW> and welcome back messages to John, are "on topic".
  9818.  
  9819. Here's the sequence of events that led to disaster...
  9820.  
  9821. Firstly, my wife and I run separate stations, with separate ISP
  9822. accounts.  I'm in the process of changing both, from Netpointer to
  9823. Attcanada.
  9824.  
  9825. I'm also in the process of changing my mailer from Outlook Express to
  9826. "The Bat".
  9827.  
  9828. During part of the checkout of the systems, I went over to my spouse's
  9829. computer, grabbed a file...any large file...and sent it over to my
  9830. station.  Then I returned to my own computer and checked my attcanada
  9831. mail for a message from netpointer.   All was well, and a file had
  9832. arrived.
  9833.  
  9834. Happy99???  Oh, that must have been a New Years card that my wife had
  9835. received...Hmmmm, singularly uninteresting CGA-type fireworks
  9836. reminiscent of old Apple II graphics...dump it.
  9837.  
  9838. Now back to Fractint...Soon I had 54 messages of pain and outrage, and
  9839. Nature Leseul's humorous Subject heading looked particularly bad in
  9840. context!  I took the advice of Fractint experts, and downloaded
  9841. F-SECURE Anti-Virus by Data Fellows Ltd., with their Happy99 update.
  9842. This cleaned up both systems promptly, after I had bungled a manual
  9843. cleanup on my own system.
  9844.  
  9845. Lessons learned;
  9846.  
  9847. 1.  Don't trust even your wife's computer files!  Apparently that
  9848.     thing had been in her computer since the New Year, unopened.  (It
  9849.     apparently went un-noticed in many computers around January 1)  I
  9850.     was the fool who sent it to my system, and then opened it.  Our
  9851.     out-of-date McAfee didn't even notice this worm.
  9852.  
  9853. 2.  Don't be complacent if your virus checker is more than a few
  9854.     months old.
  9855.  
  9856. 3.  In my case, Happy99 did NOT attach itself to a message...it
  9857.     completely dumped my message into the "SENT" folder, and used just
  9858.     the address to send itself to Fractint.  It also appears to have
  9859.     changed the date "Created", from February 14, 1999, to sometime in
  9860.     1998,  (unless, Nature Leseul's clock is incorrect???).   This
  9861.     effectively hid the "sent" file back in history.
  9862.  
  9863. 4.  The manual cleanup procedure is tricky.   WIN95 wouldn't let me
  9864.     delete the infected wsock32.dll and replace it with a renamed
  9865.     wsock32.ska.   This has to be done in DOS mode.   I stumbled
  9866.     during the swap/rename/delete procedure, and ended up re-installing
  9867.     WIN95 to ensure that I had the *correct* file!  I am not normally
  9868.     a person given to intemperate language, but I will confess to a
  9869.     certain immoderation before my computer was back on line.
  9870.  
  9871. In conclusion, I apologize again, abjectly, for letting this thing
  9872. loose in Fractint.   Please check your computers for those tell-tale
  9873. .SKA files in your WIN System folder...I wouldn't wish this on anyone
  9874. else.
  9875.  
  9876. John W.
  9877.  
  9878.  
  9879.  
  9880. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9881. Post Message:   fractint@lists.xmission.com
  9882. Get Commands:   majordomo@lists.xmission.com "help"
  9883. Administrator:  twegner@phoenix.net
  9884. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9885.  
  9886.  
  9887. -------------------------------------------------------------------------------
  9888.  
  9889. From: davides <davides@pipeline.com>
  9890. Subject: Re: (fractint) (Fwd) An apology 
  9891. Date: 16 Feb 1999 22:49:56 -0500
  9892.  
  9893. At 07:02 PM 2/16/1999 -0600, you wrote:
  9894. >John Wilson informs me that he has now cleaned up his machine, 
  9895. >Here is his note to me. Quite an interesting story. 
  9896.  
  9897. >I hearby declare that (for a few days anyway) further discussion, 
  9898. >and welcome back messages to John, are "on topic".
  9899. >
  9900. >Tim Wegner
  9901. >From:               John Wilson <johnw1@attcanada.net>
  9902. >Send reply to:      John Wilson <johnw1@attcanada.net>
  9903. >To:                 twegner@phoenix.net
  9904. >Subject:            An apology
  9905. >
  9906. >As I now have a sterilized machine, I can write this overdue letter.
  9907. >
  9908. >Firstly I want to apologize for being the unwitting instrument for
  9909. >the transmission of the Happy99 worm into the Fractint group.
  9910.  
  9911. (Snipped)
  9912.  
  9913. I would like to be among the first to welcome Mr. Wilson back, and to also
  9914. offer an apology for flying off the end as I did. By way of explanation, I
  9915. would mention that I had received that worm twice at home, more times at
  9916. work, and had gotten a little ticked off at the situation.
  9917.  
  9918. So... I imagine I offended Mr. Wilson and probably others; I again
  9919. apologize for being most unconstructive. 
  9920.  
  9921.  
  9922.  
  9923.  
  9924.  
  9925.  
  9926. davides@pipeline.com
  9927. ds30@umail.umd.edu
  9928. Back up my hard drive?
  9929. How do I put it in reverse?
  9930.  
  9931. Thanks for using Fractint, The Fractals and Fractint Discussion List
  9932. Post Message:   fractint@lists.xmission.com
  9933. Get Commands:   majordomo@lists.xmission.com "help"
  9934. Administrator:  twegner@phoenix.net
  9935. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  9936.  
  9937.  
  9938. -------------------------------------------------------------------------------
  9939.  
  9940. From: "Tim Wegner" <twegner@phoenix.net>
  9941. Subject: Re: (fractint) The price of fractal software
  9942. Date: 16 Feb 1999 22:16:29 -0600
  9943.  
  9944. Hi Frederik,
  9945.  
  9946. > > However, in a more general way I could have been talking about 
  9947. > > Ultra Fractal. You have benefiting enormously from Fractint in 
  9948. > > developing your concepts to go beyond Fractint. You say as much 
  9949. > > in the quotes above. You have included the functionality of 
  9950. > > Fractint's parser in your program. If you hadn't, it would not be 
  9951. > > possible to run translated formula PARs in Ultra Fractal. (You were 
  9952. > > within your rights to do this).
  9953. > That's true, but this is not due to the availability of the source
  9954. > code. I can learn from Fractint just by using it and reading the
  9955. > documentation. 
  9956.  
  9957. Sure you can. You don't see my point, maybe I didn't explain it 
  9958. well. Fractint is the result of contributions from many people. 
  9959. People cannot and will not contribute to closed source commercial 
  9960. programs except in a very general way (unless, of course, you 
  9961. make them partners). It is precisely because Fractint is open 
  9962. source that it developed into something full featured enough that 
  9963. you would want to emulate it.
  9964.  
  9965. The parser is in Fractint because Mark Peterson put it there, and 
  9966. Chuck Ebbert and George Martin extended it. They were able to do 
  9967. that only because Fractint is open source. 
  9968.  
  9969. Ultra Fractal then implemented the result of their work. The fact 
  9970. that you did it without reference to the source is irrelevant. 
  9971. (remember I am not accusing you of doing anything wrong.)
  9972.  
  9973. > In the same fashion other developers can benefit
  9974. > from Ultra Fractal, even though its source is not available.
  9975.  
  9976. I don't see the point here. We are inundated with mail about ideas 
  9977. for doing things in Fractint (have you seen the Fractint Wish List 
  9978. Web page?). We don't need ideas. We already have more ideas 
  9979. than we can implement. We need help from people who can 
  9980. contribute implementation.
  9981.  
  9982. > Furthermore, I think it is very difficult to understand source
  9983. > code written by others (especially if it's not very well commented
  9984. > :-)). 
  9985.  
  9986. Difficult for some, easy for others. I used to get email every week 
  9987. from hotshot students who would ask "where is Fractint's source? I 
  9988. will port it to Unix by next Tuesday." Bert Tyler's joke is that 
  9989. Fractint was the Bermuda triangle of porting efforts. Of course I 
  9990. never heard from any of these hotshot students again. Then one 
  9991. day I got an email from Ken Shirriff, saying "I have ported Fractint 
  9992. to Unix. How can I send you the code?" <grin!> There are 
  9993. teenagers who have mastered Fractint's code and sent us major 
  9994. contributions. It is a strange fact of intellectual life that each of us 
  9995. has a unique set of problems that are easy  or are hard for us. I 
  9996. could tell you stories like that about many different contributors.
  9997.  
  9998. >So in my experience it is usually more efficient to write
  9999. > things yourself than by copying it from others. At least when
  10000. > you know how to do it.
  10001.  
  10002. I have met programmers who share your preference, particularly 
  10003. when they are very expert on a platform.
  10004.  
  10005. > > Unless we get an infusion 
  10006. > > of new programming blood, or unless someone starts a brand new 
  10007. > > open source project similar to Fractint (but avoids the problems of 
  10008. > > the legacy code and platform), Fractint and what it represents is 
  10009. > > dead.
  10010. > That's a pity. But I can very well understand that working on
  10011. > Fractint is not as fun and exciting for you any more as it as been
  10012. > ten years ago. Ten years is a long period to work on a project.
  10013.  
  10014. No, it is just as fun and exciting as ever. The problem is the aging 
  10015. platform. We have squeezed an amazing amount into the medium 
  10016. model of Fractint, but we near a dead end. It is a very non-trivial 
  10017. matter to move from conventional C programming to Windows 
  10018. programming. I could do it if I had the opportunity to learn at work. 
  10019. Then programming Fractint in my spare time under Windows would 
  10020. be easy. I don't have time to learn WIndows programming outside 
  10021. of work.
  10022.  
  10023. I haven't given up. There are many ways to go.  I may even become 
  10024. a decent Windows programmer before I die :-)
  10025.  
  10026. > > The bottom line for me is: you have benefited from our thousands of 
  10027. > > hours of work over ten years. We will not benefit from your work 
  10028. > > because your program is not open source.
  10029. > This is not true, as I have pointed out above.
  10030.  
  10031. We have a different perspective on this. We can respectfully agree 
  10032. to disagree. 
  10033.  
  10034. My view is that open source, international teamwork, and "Stone 
  10035. Soup" is the essence of what Fractint is. I'm not surprised that a 
  10036. bright programmer with expertise on a modern platform can recast 
  10037. the functionality of fractint into a more modern architecture. I am 
  10038. just selfish enough that I wish someone would do that while 
  10039. continuing the Fractint open source legacy. Then I might even 
  10040. contribute to it or be part of the team!
  10041.  
  10042. But as I said before, the fact that I hold this opinion doesn't mean 
  10043. that you are bound by it. Team freeware programming is not for 
  10044. everyone. Only those of us who are idealistic and crazy.
  10045.  
  10046. The Fractint team is still having a blast putzing around with their 
  10047. baby. I've been threatening for weeks to just release our current 
  10048. developer version as a "public beta" we may just up and do that.
  10049.  
  10050. Tim Wegner
  10051.  
  10052.  
  10053.  
  10054. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10055. Post Message:   fractint@lists.xmission.com
  10056. Get Commands:   majordomo@lists.xmission.com "help"
  10057. Administrator:  twegner@phoenix.net
  10058. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10059.  
  10060.  
  10061. -------------------------------------------------------------------------------
  10062.  
  10063. From: "Tim Wegner" <twegner@phoenix.net>
  10064. Subject: Re: (fractint) The price of fractal software
  10065. Date: 16 Feb 1999 22:16:29 -0600
  10066.  
  10067. Ken wrote:
  10068.  
  10069. > People can incorporate your features regardless of the availability of
  10070. > the source.
  10071.  
  10072. They sure can. But the features would never have been developed if 
  10073. the program weren't open source. I can't get excited about 
  10074. commercial fractal programs, although the artists might have a 
  10075. different point of view.
  10076.  
  10077. BTW you'd be amazed how little the Fractint artists look at other 
  10078. programns. The main reason is that we have been kept busy with 
  10079. our own imagination and integrating contributions, so we don't look 
  10080. at other programs. Our problem now is the weight of legacy code in 
  10081. an old environment that does not excite younger programmers.
  10082.  
  10083. > Though, to answer your question, I would think the answer might depend
  10084. > upon whether or not the developers of Fracint want to benefit
  10085. > financially from their efforts.  Or, at least attempt to.
  10086.  
  10087. Some of us did benefit financially via writing books, but we paid a 
  10088. price: Fractint's progress slowed. Quite frankly, I don't think there 
  10089. is significant money to be made in a shareware or  commercial 
  10090. fractal program. But never say never, someone with the right 
  10091. concept and marketing plan might succeed.
  10092.  
  10093. > If your philosophy is to keep the development open, and make the source
  10094. > available, then you continue to do so out of principle fully realizing
  10095. > the risk of others studying the code and doing as you might fear.
  10096.  
  10097. Exactly. We made this decision a long time ago. 
  10098.  
  10099. Tim
  10100.  
  10101.  
  10102. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10103. Post Message:   fractint@lists.xmission.com
  10104. Get Commands:   majordomo@lists.xmission.com "help"
  10105. Administrator:  twegner@phoenix.net
  10106. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10107.  
  10108.  
  10109. -------------------------------------------------------------------------------
  10110.  
  10111. From: Tom Conally <conally@netpath.net>
  10112. Subject: Re: (fractint) (Fwd) An apology 
  10113. Date: 16 Feb 1999 23:14:31 -0500
  10114.  
  10115. Finally, a happy ending to a most unhappy thread. I for one never thought
  10116. this virus was transmitted knowingly. Don't you guys forget "there but by
  10117. the grace of God go I." Also don't forget that by the mis-stroke of one
  10118. finger you can send a private e-mail to a whole list. Boy, it's really a
  10119. bad feeling when that private email was a dirty joke you were sending to a
  10120. friend and you just sent it to your church membership list by mistake.  OK
  10121. back to fractals!!!
  10122.  
  10123.  
  10124. >>Firstly I want to apologize for being the unwitting instrument for
  10125. >>the transmission of the Happy99 worm into the Fractint group.
  10126. >
  10127. >(Snipped)
  10128. >
  10129. >I would like to be among the first to welcome Mr. Wilson back, and to also
  10130. >offer an apology for flying off the end as I did. By way of explanation, I
  10131. >would mention that I had received that worm twice at home, more times at
  10132. >work, and had gotten a little ticked off at the situation.
  10133. >
  10134. >So... I imagine I offended Mr. Wilson and probably others; I again
  10135. >apologize for being most unconstructive. 
  10136. >
  10137. >
  10138. >
  10139. >
  10140. Tom Conally
  10141. In every boomerang there is a perfect throw.
  10142. Your life, Grasshopper, is to practice  till you find that throw
  10143. and become one with that boomerang!
  10144.   Boomerangs        http://www.angelfire.com/nc/conally
  10145.    Paradise             http://www.netpath.net/~conally/
  10146.    Fractal Images   http://members.tripod.com/~afractal
  10147.  
  10148. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10149. Post Message:   fractint@lists.xmission.com
  10150. Get Commands:   majordomo@lists.xmission.com "help"
  10151. Administrator:  twegner@phoenix.net
  10152. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10153.  
  10154.  
  10155. -------------------------------------------------------------------------------
  10156.  
  10157. From: "Tim Wegner" <twegner@phoenix.net>
  10158. Subject: Re: (fractint) Re: happy99 warning
  10159. Date: 16 Feb 1999 22:31:31 -0600
  10160.  
  10161. Bob wote:
  10162.  
  10163. > Our Leader, Tim, wrote:
  10164.  
  10165. I'm the leader am I? I thought I was the list administrator, who is a 
  10166. sort of a public slave <grin!>
  10167.  
  10168. > Did you remove this message from the archives so that someone in the
  10169. > future won't download it, open it, and fall victim to it?
  10170.  
  10171. I can't do this because I don't have an xmission account. I have 
  10172. brought this to the attention of xmission. I don't know if they will 
  10173. consider it worth doing. It doesn't look to bad. If you view the 
  10174. archive with a browser, you see the uuencoded file. Maybe there is 
  10175. software that would see it as an attachment, but on my system, I'd 
  10176. have to save the web page as a file, edit out the uuencoded part, 
  10177. uudecode it, and run it.
  10178.  
  10179. I will follow up.
  10180.  
  10181. Tim
  10182.  
  10183.  
  10184.  
  10185. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10186. Post Message:   fractint@lists.xmission.com
  10187. Get Commands:   majordomo@lists.xmission.com "help"
  10188. Administrator:  twegner@phoenix.net
  10189. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10190.  
  10191.  
  10192. -------------------------------------------------------------------------------
  10193.  
  10194. From: "Nature Leseul" <nleseul@zurich.crosswinds.net>
  10195. Subject: Re: (fractint) The price of fractal software
  10196. Date: 16 Feb 1999 22:28:53 -0600
  10197.  
  10198. <<But as I said before, the fact that I hold this opinion doesn't mean
  10199. that you are bound by it. Team freeware programming is not for
  10200. everyone. Only those of us who are idealistic and crazy.>>
  10201.  
  10202.   Here's to idealism and craziness! :-)
  10203.  
  10204.   To be perfectly honest, I really like the DOS version of Fractint. It's
  10205. certainly easy enough to use once you learn all the commands, and although
  10206. when I first started out I was really irritated at the difficulty of the
  10207. keyboard commands, I'm now even more irritated when I can't use the keyboard
  10208. to zoom. (Although XaoS's realtime zooming is certainly a cool thing that
  10209. I'd like to see in future Fractints.) I can see where conversion to a
  10210. Windows platform could improve the performance and allow more capabilities
  10211. in the program, but the DOS version is certainly always going to have a
  10212. special place in my heart.
  10213.  
  10214.   I just wish I could program worth bleep so I could contribute source to
  10215. this dream of free source. (Sheesh, if I can't even get a scrolling map to
  10216. work correctly for a game, how am I supposed to get anywhere with something
  10217. as complex as Fractint? :-P I actually tried to create a fractal generator
  10218. of my own in a bored moment in BASIC class, but I discovered that I had
  10219. virtually no idea where to go after implementing complex arithmetic.)
  10220. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  10221. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  10222. i!i!                             Nature Leseul
  10223. i!i!
  10224. i!i! "I wil play you some Mozart, if you like, which wil onlyi!i!
  10225. i!i!  make you weep, but my Don Juan, Christine, burns,  i!i!
  10226. i!i!  and yet he is not struck by fire from Heaven... You    i!i!
  10227. i!i!  see, Christine, there is some music that is so terriblei!i!
  10228. i!i!  that it consumes all who approach it."                      i!i!
  10229. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  10230. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  10231.  
  10232.  
  10233.  
  10234. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10235. Post Message:   fractint@lists.xmission.com
  10236. Get Commands:   majordomo@lists.xmission.com "help"
  10237. Administrator:  twegner@phoenix.net
  10238. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10239.  
  10240.  
  10241. -------------------------------------------------------------------------------
  10242.  
  10243. From: Xylen <mctupper@holly.colostate.edu>
  10244. Subject: Re: (fractint) (Fwd) An apology
  10245. Date: 16 Feb 1999 21:34:31 -0700
  10246.  
  10247.  
  10248.  
  10249. Tom Conally wrote:
  10250. > Finally, a happy ending to a most unhappy thread. I for one never thought
  10251. > this virus was transmitted knowingly. Don't you guys forget "there but by
  10252. > the grace of God go I."
  10253.  
  10254. There is one more good thing from all this. Because of the uproar, I
  10255. knew what to do when a friend mentioned she had gotten "a neat little
  10256. fireworks thingy from a friend."  I lost no time at all in getting on
  10257. ICQ and finding out that it was indeed Happy99. She had the problem
  10258. fixed before her husband came home and started emailing his clients.
  10259. Both of us now have update anti-virus programs as well.
  10260.  
  10261. Let me add a hearty welcome back to John also. Not many people on the
  10262. list become famous after a single post.  :)
  10263.  
  10264. Xylen
  10265. -- 
  10266. Lottery---a tax on the mathematically illiterate
  10267. http://members.tripod.com/~Xylen
  10268. Fight Spam! Join CAUCE! == http://www.cauce.org/
  10269.  
  10270. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10271. Post Message:   fractint@lists.xmission.com
  10272. Get Commands:   majordomo@lists.xmission.com "help"
  10273. Administrator:  twegner@phoenix.net
  10274. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10275.  
  10276.  
  10277. -------------------------------------------------------------------------------
  10278.  
  10279. From: "Tim Wegner" <twegner@phoenix.net>
  10280. Subject: Re: (fractint) The price of fractal software
  10281. Date: 16 Feb 1999 22:49:33 -0600
  10282.  
  10283. Blechhh! I wrote:
  10284.  
  10285. > BTW you'd be amazed how little the Fractint artists look at other 
  10286. > programns.
  10287.  
  10288. I meant to write:
  10289.  
  10290. " BTW you'd be amazed how little the Fractint **programmers** 
  10291. look at other programs."
  10292.  
  10293.  
  10294.  The fractint artists certainly DO look at other programs!!! <ggg!>
  10295.  
  10296. Tim
  10297.  
  10298.  
  10299. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10300. Post Message:   fractint@lists.xmission.com
  10301. Get Commands:   majordomo@lists.xmission.com "help"
  10302. Administrator:  twegner@phoenix.net
  10303. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10304.  
  10305.  
  10306. -------------------------------------------------------------------------------
  10307.  
  10308. From: Gedeon Peteri <gedeon@InfoAve.Net>
  10309. Subject: (fractint) Re: an apology
  10310. Date: 16 Feb 1999 23:57:34 -0500
  10311.  
  10312. Welcome back John Wilson, and I am going to be one of the few, if not
  10313. the only one, who will offer you thanks for sending that worm or
  10314. virus!!! You have, in effect, resolved a quarrel between myself and my
  10315. son! The thing is, that two days before yours arrived, I received
  10316. Happy99 from my son. Now I NEVER execute programs, even if they come
  10317. from family, so I asked him what it is and why he sent it and where he
  10318. got it from. He replied rather testily that he did not send it, but even
  10319. if he did, I shouldn't think that he would send me harmful stuff; why am
  10320. I so suspicious?! I replied even more testily that, by golly he did send
  10321. it, because it had his heading on the message! As fathers and sons are
  10322. apt to do even over trivial matters. soon we were nearly quarreling!!
  10323. And then came John's Happy99 which cleared everything up. My son and I
  10324. are back on good terms!
  10325.  
  10326. Gedeon
  10327.  
  10328. --
  10329. Fractals: http://www.geocities.com/~gedeonp/index.html
  10330. Member Infinite Fractal Loop
  10331. Last updated: February 12, 1999 - two new pages
  10332. Photography: http://members.xoom.com/gedeonp/index.html
  10333. Last updated: November 8, 1998
  10334.  
  10335.  
  10336.  
  10337. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10338. Post Message:   fractint@lists.xmission.com
  10339. Get Commands:   majordomo@lists.xmission.com "help"
  10340. Administrator:  twegner@phoenix.net
  10341. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10342.  
  10343.  
  10344. -------------------------------------------------------------------------------
  10345.  
  10346. From: Jim Muth <jamth@mindspring.com>
  10347. Subject: (fractint) Re: The price of fractal software
  10348. Date: 17 Feb 1999 00:28:45 -0500 (EST)
  10349.  
  10350. At 10:28 PM 2/16/99 -0600, NL wrote:
  10351.  
  10352. >To be perfectly honest, I really like the DOS version of Fractint.
  10353.  
  10354. I second this opinion, or perhaps I should say I fifth it.  I 
  10355. have Fractint v-19.61 (the alpha version of v-20.0, with buggy 
  10356. evolver), installed on five machines.  Fractint is not the world's 
  10357. fastest fractal generator, it's just the best.  (Differing opinions 
  10358. welcome.)
  10359.  
  10360. Jim Muth
  10361. jamth@mindspring.com
  10362.  
  10363.  
  10364.  
  10365.  
  10366. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10367. Post Message:   fractint@lists.xmission.com
  10368. Get Commands:   majordomo@lists.xmission.com "help"
  10369. Administrator:  twegner@phoenix.net
  10370. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10371.  
  10372.  
  10373. -------------------------------------------------------------------------------
  10374.  
  10375. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  10376. Subject: Re: (fractint) The price of fractal software
  10377. Date: 16 Feb 1999 21:31:33 -0800 (PST)
  10378.  
  10379.  
  10380. Tim,
  10381.  
  10382. > > BTW you'd be amazed how little the Fractint artists look at other 
  10383. > > programns.
  10384. > I meant to write:
  10385. > " BTW you'd be amazed how little the Fractint **programmers** 
  10386. > look at other programs."
  10387. >  The fractint artists certainly DO look at other programs!!! <ggg!>
  10388.  
  10389. I was wondering... That comment seemed a little odd to me.  :-)
  10390.  
  10391.  
  10392. Ken...
  10393.  
  10394. P.S.  As a programmer myself, I've downloaded source to programs where
  10395. it is available.  The only problem is, they don't also come with the
  10396. time to study them.  :-(
  10397.  
  10398.  
  10399.  
  10400. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10401. Post Message:   fractint@lists.xmission.com
  10402. Get Commands:   majordomo@lists.xmission.com "help"
  10403. Administrator:  twegner@phoenix.net
  10404. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10405.  
  10406.  
  10407. -------------------------------------------------------------------------------
  10408.  
  10409. From: "Tim Wegner" <twegner@phoenix.net>
  10410. Subject: Re: (fractint) Re: The price of fractal software
  10411. Date: 16 Feb 1999 23:52:21 -0600
  10412.  
  10413. Jim wrote:
  10414.  
  10415. > >To be perfectly honest, I really like the DOS version of Fractint.
  10416. > I second this opinion, or perhaps I should say I fifth it.  I 
  10417. > have Fractint v-19.61 (the alpha version of v-20.0, with buggy 
  10418. > evolver), installed on five machines.  Fractint is not the world's 
  10419. > fastest fractal generator, it's just the best.  (Differing opinions 
  10420. > welcome.)
  10421.  
  10422. I get messages all the time about how Fractint is "the greatest" 
  10423. which I take with a grain of salt. However I confess that your 
  10424. message really made me feel good - thanks!
  10425.  
  10426. I should add that nothing makes the fractint programmers work 
  10427. harder and burn the midnight oil later working on fractint than the 
  10428. requests and suggestions  from artists they respect. 
  10429.  
  10430. Tim
  10431.  
  10432.  
  10433. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10434. Post Message:   fractint@lists.xmission.com
  10435. Get Commands:   majordomo@lists.xmission.com "help"
  10436. Administrator:  twegner@phoenix.net
  10437. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10438.  
  10439.  
  10440. -------------------------------------------------------------------------------
  10441.  
  10442. From: SKarl52884@aol.com
  10443. Subject: Re: (fractint) The price of fractal software
  10444. Date: 17 Feb 1999 01:51:19 EST
  10445.  
  10446. In a message dated 2/16/99 11:33:40 PM Eastern Standard Time,
  10447. nleseul@zurich.crosswinds.net writes:
  10448.  
  10449. << Here's to idealism and craziness! :-) >>
  10450. Bravo!
  10451.     Steve
  10452.  
  10453. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10454. Post Message:   fractint@lists.xmission.com
  10455. Get Commands:   majordomo@lists.xmission.com "help"
  10456. Administrator:  twegner@phoenix.net
  10457. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10458.  
  10459.  
  10460. -------------------------------------------------------------------------------
  10461.  
  10462. From: Kerry Mitchell <lkmitch@primenet.com>
  10463. Subject: Re: (fractint) The price of fractal software
  10464. Date: 17 Feb 1999 00:13:17 -0700 (MST)
  10465.  
  10466. > The Fractint team is still having a blast putzing around with their 
  10467. > baby. I've been threatening for weeks to just release our current 
  10468. > developer version as a "public beta" we may just up and do that.
  10469. > Tim Wegner
  10470.  
  10471. Tim,
  10472.  
  10473. Please do!  If you've been watching the Ultra Fractal list, you've seen
  10474. that a great many improvements, bug fixes and artistic tools came to light
  10475. because Frederik made the UF betas public.  I've felt a twinge of guilt
  10476. ever since I started working more with UF than with Fractint, and even
  10477. though I'm not a (real) programmer, I've got my own legacy of Fractint
  10478. code built up.  I'd love to continue to contribute to the Fractint effort,
  10479. even if it's only in the "aftermarket" of formulas and coloring schemes.
  10480. (I did once contribute some complex math formulas that Tim included, but
  10481. that doesn't really count.)
  10482.  
  10483. Kerry
  10484.  
  10485. Kerry Mitchell
  10486. lkmitch@primenet.com    http://www.primenet.com/~lkmitch/
  10487.  
  10488.  
  10489.  
  10490. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10491. Post Message:   fractint@lists.xmission.com
  10492. Get Commands:   majordomo@lists.xmission.com "help"
  10493. Administrator:  twegner@phoenix.net
  10494. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10495.  
  10496.  
  10497. -------------------------------------------------------------------------------
  10498.  
  10499. From: "Frederik Slijkerman" <fjslman@wins.uva.nl>
  10500. Subject: Re: (fractint) The price of fractal software
  10501. Date: 17 Feb 1999 10:30:40 +0100
  10502.  
  10503. Hi Tim,
  10504.  
  10505. > > That's true, but this is not due to the availability of the source
  10506. > > code. I can learn from Fractint just by using it and reading the
  10507. > > documentation. 
  10508. > Sure you can. You don't see my point, maybe I didn't explain it 
  10509. > well. Fractint is the result of contributions from many people. 
  10510. > People cannot and will not contribute to closed source commercial 
  10511. > programs except in a very general way (unless, of course, you 
  10512. > make them partners). It is precisely because Fractint is open 
  10513. > source that it developed into something full featured enough that 
  10514. > you would want to emulate it.
  10515.  
  10516. I see your point here. In the case of Fractint, this is certainly
  10517. true. But a program doesn't necessarily have to be open source to
  10518. evolve into something others want to emulate. Take Adobe Photoshop,
  10519. for example. It isn't open source, yet every other serious photo
  10520. processing tool has incorporated layering since Photoshop showed
  10521. it for the first time. This is because you don't need to look at
  10522. the source code to understand how it is done.
  10523.  
  10524. But I agree open source software will usually evolve faster.
  10525.  
  10526. > > In the same fashion other developers can benefit
  10527. > > from Ultra Fractal, even though its source is not available.
  10528. > I don't see the point here. We are inundated with mail about ideas 
  10529. > for doing things in Fractint (have you seen the Fractint Wish List 
  10530. > Web page?). We don't need ideas. We already have more ideas 
  10531. > than we can implement.
  10532.  
  10533. Right, in that case only time can help you out. :)
  10534.  
  10535. > No, it is just as fun and exciting as ever. The problem is the aging 
  10536. > platform. We have squeezed an amazing amount into the medium 
  10537. > model of Fractint, but we near a dead end. It is a very non-trivial 
  10538. > matter to move from conventional C programming to Windows 
  10539. > programming.
  10540.  
  10541. Hm. Perhaps you could try to use C++ Builder, the C variant of
  10542. Delphi. In my experience, it takes away the problems of Windows GUI
  10543. programming, so you can concentrate on getting the program to work
  10544. instead. But inevitably you will have to spend some training hours. :)
  10545.  
  10546. > We have a different perspective on this. We can respectfully agree 
  10547. > to disagree. 
  10548.  
  10549. OK. :)
  10550.  
  10551. Best regards,
  10552. Frederik.
  10553.  
  10554.  
  10555. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10556. Post Message:   fractint@lists.xmission.com
  10557. Get Commands:   majordomo@lists.xmission.com "help"
  10558. Administrator:  twegner@phoenix.net
  10559. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10560.  
  10561.  
  10562. -------------------------------------------------------------------------------
  10563.  
  10564. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  10565. Subject: Re: GUIs and the future of Fractint (was: Re: (fractint) The
  10566. Date: 17 Feb 1999 22:48:11 +1300
  10567.  
  10568. At 01:35 17/02/99 +0000, Pedro A. O. Lopes wrote:
  10569. >Ken Childress wrote:
  10570. >
  10571. >I agree that fractint must break free of DOS if it is going to keep up 
  10572. >with the host of fractal programs that are out there. I really think the 
  10573. >best way to do this would be to throw all UI related stuff out, leaving 
  10574. >the "core" functionality to be accessed through a well defined programming 
  10575. >interface (something like set_parameter(...) / get_parameter(...) /
  10576. >execute_command(...) ). Then, in good Open Source style, anyone could 
  10577. >volunteer to support a GUI as a front end to this library, for any variety 
  10578. >of environments, more or less independently of the core fractint 
  10579. >development.
  10580. >
  10581. I agree that this is probably the best direction to take: chuck the UI
  10582. stuff (and a few other bits like printing) - which tend to be the most
  10583. platform-dependent parts anyway - and write front-ends (hopefully with full
  10584. open source!) to plug into the Fractint engine.
  10585.  
  10586. This of course is basically the approach taken in POV-Ray, with the
  10587. raytracing engine itself being the work of the POV-Ray team, and the
  10588. Windows interface being by Christopher Cason. 
  10589.  
  10590. The Windows interface, incidentally, is not completely open source; some
  10591. portions remain closed.
  10592.  
  10593. Since Tim Wegner is himself a member of this team, he is in a much better
  10594. position than I to judge the pros and cons and feasibility of taking
  10595. Fractint down the same path. How do you take it, Tim? At present I think
  10596. this may well be the way to go.
  10597.  
  10598. Morgan L. Owens
  10599. PS. No need to go overboard with new stuff straight away; just get Fractint
  10600. doing what it did under DOS first.
  10601.  
  10602.  
  10603.  
  10604. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10605. Post Message:   fractint@lists.xmission.com
  10606. Get Commands:   majordomo@lists.xmission.com "help"
  10607. Administrator:  twegner@phoenix.net
  10608. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10609.  
  10610. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  10611. Subject: Re: (fractint) The price of fractal software
  10612. Date: 17 Feb 1999 12:47:51 +0100
  10613.  
  10614. I said I'd try (and I will), but wine 990214 requires mesa3d, and my .tar.gz
  10615. was corrupted :( so I have to redl and compile it first. More about it
  10616. tonight (CET!).
  10617.  
  10618. --
  10619.  
  10620. Dean-Christian Strik
  10621.    ICQ: 11760568
  10622.  dean2@bigfoot.com
  10623. cstrik.isg@hetnet.nl
  10624.  
  10625. Real programmers like vending machine popcorn. Coders pop it in the
  10626. microwave oven. Real programmers use the heat given off by the CPU. They can
  10627. tell what job is running just by listening to the rate of popping.
  10628.  
  10629. -----Original Message-----
  10630.  
  10631.  
  10632. >
  10633. >> Does anyone know if UltraFractal will work under WINE? This would allow
  10634. >> Linux users to run it...
  10635. >
  10636. >If anyone can get UF to work with Linux, I would be interested to hear
  10637. >about it.
  10638. >
  10639. >Best regards,
  10640. >Frederik.
  10641. >
  10642. >
  10643. >--------------------------------------------------------------
  10644. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  10645. >Post Message:   fractint@lists.xmission.com
  10646. >Get Commands:   majordomo@lists.xmission.com "help"
  10647. >Administrator:  twegner@phoenix.net
  10648. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10649. >
  10650.  
  10651.  
  10652.  
  10653. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10654. Post Message:   fractint@lists.xmission.com
  10655. Get Commands:   majordomo@lists.xmission.com "help"
  10656. Administrator:  twegner@phoenix.net
  10657. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10658.  
  10659.  
  10660. -------------------------------------------------------------------------------
  10661.  
  10662. From: "Mark Townsend" <marktown@netspace.net.au>
  10663. Subject: (fractint) Cubic polynomials what?
  10664. Date: 18 Feb 1999 01:35:22 +1100
  10665.  
  10666. Here's a couple of formulas and a few example images for an equation that I
  10667. ripped out of a book that I'm reading at the moment. I don't have the
  10668. stamina to go through all of the existing Fractint formulas to see if I'm
  10669. repeating anything. I've named the formulas after a mathematician who
  10670. investigated this stuff in 1879 but gave up because he presumably didn't
  10671. have a Pentium.
  10672.  
  10673. Apparently the equation uses Newton's method to solve a family of cubic
  10674. polynomials...I'm just repeating what I read, I don't really understand it.
  10675. With the constant at (0,0) the Julia version of the formula looks the same
  10676. as the Fractint "Newton", but with some other constants there are points
  10677. that don't fall to any of the roots. That much was said in the book, but I
  10678. wasn't expecting the form that those points can take: little copies of
  10679. classic Julia sets. The Mandelbrot version of the formula has the Mandelbrot
  10680. shape embedded in a cardioid ring of Newton like chains. To find the Julia
  10681. sets zoom in close to the boundary of one of the Mandelbrot forms and use
  10682. the center coordinates for the constant in the Julia version.
  10683.  
  10684. Anyway, I thought it was interesting.
  10685.  
  10686. Mark Townsend
  10687. marktown@netspace.net.au
  10688.  
  10689. Cayley.par ------------------------------------------------
  10690.  
  10691. frm:Cayley-mand { ; Mark Townsend, 17 Feb 1999
  10692. ; Always use floating point math and turn
  10693. ; periodicity checking off.
  10694. ;*************************
  10695.   z = oldz = 0, a = pixel:
  10696. ;*************************
  10697.   oldz = z
  10698.   z = (2 * z * z * z - (a - 1)) / (3 * z * z - a)
  10699.   |z - oldz| >= 0.00001
  10700. }
  10701.  
  10702. frm:Cayley-jul {  ; Mark Townsend, 17 Feb 1999
  10703. ; Always use floating point math and turn
  10704. ; periodicity checking off.
  10705. ;*****************************
  10706.   z = pixel, a = p1, oldz = 0:
  10707. ;*****************************
  10708.   oldz = z
  10709.   z = (2 * z * z * z - (a - 1)) / (3 * z * z - a)
  10710.   |z-oldz| >= 0.00001
  10711. }
  10712.  
  10713. Cayley-m1          {
  10714.   reset=1960 type=formula formulafile=*.frm
  10715.   formulaname=Cayley-mand center-mag=1.26284/0.0150945/0.4423676
  10716.   float=y maxiter=500 inside=0 colors=@goodega.map cyclerange=0/255
  10717.   }
  10718.  
  10719. Cayley-m2          {
  10720.   reset=1960 type=formula formulafile=*.frm
  10721.   formulaname=Cayley-mand center-mag=-0.00820288/0.967066/15.57632
  10722.   float=y maxiter=500 inside=0 colors=@goodega.map cyclerange=0/255
  10723.   }
  10724.  
  10725. Cayley-j1          {
  10726.   reset=1960 type=formula formulafile=*.frm
  10727.   formulaname=Cayley-jul center-mag=0/0/0.6666667 params=0/0 float=y
  10728.   maxiter=500 inside=0 periodicity=0 colors=@goodega.map
  10729.   cyclerange=0/255
  10730.   }
  10731.  
  10732. Cayley-j2          {
  10733.   reset=1960 type=formula formulafile=*.frm
  10734.   formulaname=cayley-jul center-mag=0.0101139/0.00328321/7.496691
  10735.   params=-0.01105/0.97048 float=y maxiter=1000 inside=0 periodicity=0
  10736.   colors=@blues.map cyclerange=0/255
  10737.   }
  10738.  
  10739.  
  10740.  
  10741.  
  10742.  
  10743.  
  10744.  
  10745.  
  10746.  
  10747.  
  10748.  
  10749. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10750. Post Message:   fractint@lists.xmission.com
  10751. Get Commands:   majordomo@lists.xmission.com "help"
  10752. Administrator:  twegner@phoenix.net
  10753. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10754.  
  10755.  
  10756. -------------------------------------------------------------------------------
  10757.  
  10758. From: Damascena@aol.com
  10759. Subject: Re: (fractint) Fractint in DOS
  10760. Date: 17 Feb 1999 10:19:07 EST
  10761.  
  10762. In a message dated 2/16/99 8:27:08 PM Mountain Standard Time,
  10763. morgenb@cobweb.net writes:
  10764.  
  10765. > I like Fractint better than any of my Windows-based fractal generators
  10766. >  because working with the keyboard is faster than using the mouse.  I think
  10767. >  Fractint in windows would be great as long as it kept all the keyboard
  10768. >  shortcut commands.
  10769.  
  10770. I feel the same! I started out with Winfract because a friend gave me the disk
  10771. and book. But I didn't get really moving till I d/l'd Fractint. I also found
  10772. it much easier to learn (okay, figure out.......*slowly,* not being any kind
  10773. of programmer etc., just a person with some eye for color and design). I have
  10774. Xaos, UltraFractal and now TieraZon but haven't had time to work with them. I
  10775. have never found I didn't have "time" to work with Fractint!
  10776.  
  10777. Dama
  10778.  
  10779. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10780. Post Message:   fractint@lists.xmission.com
  10781. Get Commands:   majordomo@lists.xmission.com "help"
  10782. Administrator:  twegner@phoenix.net
  10783. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10784.  
  10785.  
  10786. -------------------------------------------------------------------------------
  10787.  
  10788. From: Damascena@aol.com
  10789. Subject: Re: (fractint) The price of fractal software
  10790. Date: 17 Feb 1999 10:29:22 EST
  10791.  
  10792. In a message dated 2/16/99 9:33:40 PM Mountain Standard Time,
  10793. nleseul@zurich.crosswinds.net writes:
  10794.  
  10795. >  I can see where conversion to a
  10796. >  Windows platform could improve the performance and allow more capabilities
  10797. >  in the program, but the DOS version is certainly always going to have a
  10798. >  special place in my heart.
  10799.  
  10800. Agreed! I'm wondering if a DOS emulation could be written into the impending
  10801. Windows version?????
  10802.  
  10803. Dama 
  10804.  
  10805. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10806. Post Message:   fractint@lists.xmission.com
  10807. Get Commands:   majordomo@lists.xmission.com "help"
  10808. Administrator:  twegner@phoenix.net
  10809. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10810.  
  10811.  
  10812. -------------------------------------------------------------------------------
  10813.  
  10814. From: Damascena@aol.com
  10815. Subject: Re: (fractint) Re: The price of fractal software
  10816. Date: 17 Feb 1999 10:34:42 EST
  10817.  
  10818. In a message dated 2/16/99 10:31:28 PM Mountain Standard Time,
  10819. jamth@mindspring.com writes:
  10820.  
  10821. > Fractint is not the world's 
  10822. >  fastest fractal generator, it's just the best.  (Differing opinions 
  10823. >  welcome.)
  10824.  
  10825. You won't get another opinion from me!
  10826.  
  10827. Dama
  10828.  
  10829. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10830. Post Message:   fractint@lists.xmission.com
  10831. Get Commands:   majordomo@lists.xmission.com "help"
  10832. Administrator:  twegner@phoenix.net
  10833. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10834.  
  10835.  
  10836. -------------------------------------------------------------------------------
  10837.  
  10838. From: "Ricardo M. Forno" <rforno@afip.gov.ar>
  10839. Subject: (fractint) DOS versus Windows
  10840. Date: 17 Feb 1999 12:42:43 -0300
  10841.  
  10842. I tried to use Ultra Fractal, but felt the DOS interface more appealing
  10843. than the Windows one.
  10844.  
  10845.  
  10846. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10847. Post Message:   fractint@lists.xmission.com
  10848. Get Commands:   majordomo@lists.xmission.com "help"
  10849. Administrator:  twegner@phoenix.net
  10850. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10851.  
  10852.  
  10853. -------------------------------------------------------------------------------
  10854.  
  10855. From: Lee&SusanLane <slane@kiwi.dep.anl.gov>
  10856. Subject: Re: (fractint) The price of fractal software
  10857. Date: 17 Feb 1999 10:09:37 -0800
  10858.  
  10859. Frederik,
  10860.  
  10861. I downloaded Ultra Fractal a couple weeks ago, before your recent 
  10862. interchanges with Tim Wegner. I was very impressed by Tim's comments on 
  10863. the rewards of the community project that created Fractint and of the 
  10864. pleasure and excitement it has brought to its community of users. Your 
  10865. proprietary rights are very unimpressive by comparison. I have taken UF 
  10866. off my computer and so shall not be sending you any money.
  10867.  
  10868. Tim, my hat is off to you and your associates, and if you ever want $35 
  10869. from your users, it would be not only a pleasure to send it to you, but 
  10870. the best bargain I ever got.
  10871.  
  10872. Lee Lane
  10873.  
  10874.  
  10875. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10876. Post Message:   fractint@lists.xmission.com
  10877. Get Commands:   majordomo@lists.xmission.com "help"
  10878. Administrator:  twegner@phoenix.net
  10879. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10880.  
  10881.  
  10882. -------------------------------------------------------------------------------
  10883.  
  10884. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  10885. Subject: Re: (fractint) The price of fractal software
  10886. Date: 17 Feb 1999 08:17:24 -0800 (PST)
  10887.  
  10888.  
  10889. Lee,
  10890.  
  10891. > I downloaded Ultra Fractal a couple weeks ago, before your recent 
  10892. > interchanges with Tim Wegner. I was very impressed by Tim's comments on 
  10893. > the rewards of the community project that created Fractint and of the 
  10894. > pleasure and excitement it has brought to its community of users. Your 
  10895. > proprietary rights are very unimpressive by comparison. I have taken UF 
  10896. > off my computer and so shall not be sending you any money.
  10897.  
  10898. IMO, that is a shame.  While UF certainly lacks some features of
  10899. Fractint that are desireable, UF is a fantastic program.  These programs
  10900. are tools.  Tools that can be used for amusement, learning, or to create
  10901. some very impressive art.  
  10902.  
  10903. The developers of one of the tools have chosen to keep it's development
  10904. fully open.  Others, Frederik, specifically, have chosen not to.  So
  10905. what?  There are going to be fractal programs in the future that will
  10906. incorporate some of the features that UF has, probably layering being
  10907. one of the first.  Does that make UF any less useful?
  10908.  
  10909. I've tried several of the programs available.  By far, Fractint and UF
  10910. are the easiest to use, and most powerful, IMO.  Of the Windows programs
  10911. I've tried, UF is so easy to use it is almost ridiculous.  The problem
  10912. with UF is that there are so many powerful features that it takes a
  10913. while to learn them.
  10914.  
  10915. However, the great thing, I think, is that there are those like Tim (and
  10916. all the contributors to Fractint), Frederik, and others who are willing
  10917. to spend the time to create such outstanding tools that the rest of us
  10918. can play with.  It doesn't matter to me if the tool is freeware,
  10919. shareware, or has source code available.  If I like the tool, I'll use
  10920. it.  Just as I do with any other tool for any other purpose.  The great
  10921. thing is the choice, and the competition driving people to make better
  10922. tools.
  10923.  
  10924. > Tim, my hat is off to you and your associates, and if you ever want $35 
  10925. > from your users, it would be not only a pleasure to send it to you, but 
  10926. > the best bargain I ever got.
  10927.  
  10928. Mine too.  However, $35 for UF is a bargin and worth every cent.
  10929.  
  10930.  
  10931. Ken...
  10932.  
  10933.  
  10934.  
  10935.  
  10936.  
  10937. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10938. Post Message:   fractint@lists.xmission.com
  10939. Get Commands:   majordomo@lists.xmission.com "help"
  10940. Administrator:  twegner@phoenix.net
  10941. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10942.  
  10943.  
  10944. -------------------------------------------------------------------------------
  10945.  
  10946. From: Bruce Haxton <BHaxton@staffware.com>
  10947. Subject: (fractint) DOS v Windows
  10948. Date: 17 Feb 1999 16:10:43 -0000
  10949.  
  10950. I have downloaded and played with several of the Windows generators on I
  10951. have seen mentioned on the list, but I find that for a novice to the world
  10952. of fractals like my self, the interface was not intuitive enough. I am very
  10953. surprised at this as I work with Windows every day and also have to program
  10954. in Windows at times. I find that the Fractint interface is a delight to use
  10955. and fairly intuitive for a newbie like myself. My thanks to the team for all
  10956. the thought that has obviously gone into making the interface easy for a
  10957. novice to enjoy creating fractals, but also allowing the more experienced
  10958. users to use their creative skills to the full.
  10959.  
  10960. Thanks
  10961.  
  10962. Bruce Haxton
  10963.  
  10964. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10965. Post Message:   fractint@lists.xmission.com
  10966. Get Commands:   majordomo@lists.xmission.com "help"
  10967. Administrator:  twegner@phoenix.net
  10968. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  10969.  
  10970.  
  10971. -------------------------------------------------------------------------------
  10972.  
  10973. From: Vyvey Jan <Jan.Vyvey@Electrabel.be>
  10974. Subject: AW: (fractint) The price of fractal software
  10975. Date: 17 Feb 1999 17:40:17 +0100
  10976.  
  10977. Hi,
  10978.  
  10979. I have one conclusion in this discussion of fractal software:
  10980. Everybody should print the following text (from Ken) in BIG letters 
  10981. en hang it on the wall near to his computer screen. 
  10982.  
  10983.  
  10984. >However, the great thing, I think, is that there are those like Tim (and
  10985. >all the contributors to Fractint), Frederik, and others who are willing
  10986. >to spend the time to create such outstanding tools that the rest of us
  10987. >can play with.  It doesn't matter to me if the tool is freeware,
  10988. >shareware, or has source code available.  If I like the tool, I'll use
  10989. >it.  Just as I do with any other tool for any other purpose.  The great
  10990. >thing is the choice, and the competition driving people to make better
  10991. >tools.
  10992.  
  10993.  
  10994. Greatings to all fractallers,
  10995. Jan
  10996.  
  10997. Thanks for using Fractint, The Fractals and Fractint Discussion List
  10998. Post Message:   fractint@lists.xmission.com
  10999. Get Commands:   majordomo@lists.xmission.com "help"
  11000. Administrator:  twegner@phoenix.net
  11001. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11002.  
  11003.  
  11004. -------------------------------------------------------------------------------
  11005.  
  11006. From: Phil McRevis <legalize@xmission.com>
  11007. Subject: Re: (fractint) The price of fractal software 
  11008. Date: 17 Feb 1999 10:08:28 -0700
  11009.  
  11010.  
  11011. In article ,
  11012.     "Tim Wegner" <twegner@phoenix.net>  writes:
  11013. > should we not release the source to version 20? Why should we 
  11014. > write open source, free software, when others will look at our code, 
  11015. > even ask us questions about specific lines of code, and incorporate 
  11016. > our new features into their fractint-compatible, commercial, closed 
  11017. > source program?
  11018.  
  11019. IMO, the only reason commercial software *can* compete with fractint
  11020. is because fractint is showing signs of its age.  Its a DOS program,
  11021. with no Windows support.  Its currently difficult to extend because of
  11022. its 16bit DOS heritage.  The commercial programs currently have an
  11023. advantage over fractint because they support the win32 look-and-feel and
  11024. regardless of how you feel about microsoft, people generally prefer a
  11025. win32 GUI application over a DOS program.
  11026.  
  11027. Fractint is at a crossroads in its development.  Many people would
  11028. like to contribute and improve the program (not to detract from those
  11029. who ARE currently contributing and improving fractint), but are put
  11030. off by its 16bit DOS development environment and the constraints
  11031. thereof (memory model, overlays, etc.).  Once fractint leaves 16bit
  11032. environments behind and updates itself to a 32bit environment (even
  11033. under DOS using a protected mode extender), I predict that people will
  11034. extend and enhance fractint much more readily.
  11035. --
  11036. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  11037.     ``Ain't it funny that they all fire the pistol,     
  11038.       at the wrong end of the race?''--PDBT     
  11039. legalize@xmission.com    <http://www.eden.com/~thewho>
  11040.  
  11041. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11042. Post Message:   fractint@lists.xmission.com
  11043. Get Commands:   majordomo@lists.xmission.com "help"
  11044. Administrator:  twegner@phoenix.net
  11045. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11046.  
  11047.  
  11048. -------------------------------------------------------------------------------
  11049.  
  11050. From: Phil McRevis <legalize@xmission.com>
  11051. Subject: Re: (fractint) The price of fractal software 
  11052. Date: 17 Feb 1999 10:18:35 -0700
  11053.  
  11054.  
  11055. In article ,
  11056.     "Tim Wegner" <twegner@phoenix.net>  writes:
  11057. > [...] Unless we get an infusion 
  11058. > of new programming blood, or unless someone starts a brand new 
  11059. > open source project similar to Fractint (but avoids the problems of 
  11060. > the legacy code and platform), Fractint and what it represents is 
  11061. > dead.
  11062.  
  11063. To quote Monty Python, "I'm not dead!" :-)
  11064.  
  11065. Fractint is definately at a turning point in its development.  What it
  11066. needs at this point is some serious restructuring of the existing code
  11067. (to get away from 16bit DOSisms and a more portable GUI), or a
  11068. complete rewrite.  (Sometimes a rewrite is preferable to a major
  11069. restructuring.)  However, attempting a rewrite (unless one person or a
  11070. small group of people do the majority of the work beforehand) will
  11071. involve a nearly infinite amount of discussion and opinion offering
  11072. about what a rewrite *should* be.  Too many chefs, not enough cooks.
  11073.  
  11074. > Where is there a full featured, open source program that is a 
  11075. > worthy successor to Fractint? There isn't one, as far as I know. 
  11076. > Actually I am very interested in Xaos, which runs on many 
  11077. > platforms, and has just been ported to Windows. I may shift my 
  11078. > efforts to working with Xaos, or merging some of Fractint's features 
  11079. > with Xaos. Xaos, besides being open source, acknowledges 
  11080. > Fractint generously.
  11081.  
  11082. Funny, I look at it the other way around :-).  XaoS' ideas should be
  11083. incorporated into fractint.
  11084. --
  11085. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  11086.     ``Ain't it funny that they all fire the pistol,     
  11087.       at the wrong end of the race?''--PDBT     
  11088. legalize@xmission.com    <http://www.eden.com/~thewho>
  11089.  
  11090. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11091. Post Message:   fractint@lists.xmission.com
  11092. Get Commands:   majordomo@lists.xmission.com "help"
  11093. Administrator:  twegner@phoenix.net
  11094. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11095.  
  11096.  
  11097. -------------------------------------------------------------------------------
  11098.  
  11099. From: Phil McRevis <legalize@xmission.com>
  11100. Subject: Re: (fractint) The price of fractal software 
  11101. Date: 17 Feb 1999 10:30:15 -0700
  11102.  
  11103.  
  11104. In article ,
  11105.     Ken Childress <kchildre@uccs.jpl.nasa.gov>  writes:
  11106. > One a program
  11107. > enters into the GUI interface realm, portability suddenly becomes quite
  11108. > a major task.
  11109.  
  11110. Its not so major a task if you plan for it from the beginning.  What
  11111. makes it a major task for most people is that they haven't made any
  11112. effort to isolate the non-portable portions of their code from the
  11113. beginning and then attempt to retrofit it to another platform.  THAT
  11114. is a major task.  Fractint's user interface needs are rather simple
  11115. and could be isolated into a UI layer that is implemented on
  11116. Win32/MacOS/unix.  However, before anyone attempts such an
  11117. undertaking, fractint needs to be moved to a flat memory model.
  11118. --
  11119. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  11120.     ``Ain't it funny that they all fire the pistol,     
  11121.       at the wrong end of the race?''--PDBT     
  11122. legalize@xmission.com    <http://www.eden.com/~thewho>
  11123.  
  11124. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11125. Post Message:   fractint@lists.xmission.com
  11126. Get Commands:   majordomo@lists.xmission.com "help"
  11127. Administrator:  twegner@phoenix.net
  11128. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11129.  
  11130.  
  11131. -------------------------------------------------------------------------------
  11132.  
  11133. From: George Martin <GGMARTIN@compuserve.com>
  11134. Subject: Re: (fractint) The price of fractal software
  11135. Date: 17 Feb 1999 12:31:59 -0500
  11136.  
  11137. Lee Lane wrote:
  11138.  
  11139. >
  11140. Tim, my hat is off to you and your associates, and if you ever want $35 =
  11141.  
  11142. from your users, it would be not only a pleasure to send it to you, but =
  11143.  
  11144. the best bargain I ever got.
  11145. <
  11146.  
  11147. Lee, =
  11148.  
  11149.  
  11150. Don't expect a bill soon. Recall that our contribution policy is:
  11151.  
  11152.    Don't want money. Got money. Want appreciation.
  11153.  
  11154. Although I must humbly exempt myself from the second part of that
  11155. declaration, the first and third parts hold true for all of us. Like Tim,=
  11156.  I
  11157. believe that keeping money out of Fractint is not some sort of act of
  11158. generosity on the part of the developers, but an essential element to the=
  11159.  
  11160. vitality of this widespread volunteer effort. =
  11161.  
  11162.  
  11163.  
  11164. George Martin
  11165.   =
  11166.  
  11167.  
  11168. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11169. Post Message:   fractint@lists.xmission.com
  11170. Get Commands:   majordomo@lists.xmission.com "help"
  11171. Administrator:  twegner@phoenix.net
  11172. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11173.  
  11174.  
  11175. -------------------------------------------------------------------------------
  11176.  
  11177. From: Phil McRevis <legalize@xmission.com>
  11178. Subject: Re: (fractint) The price of fractal software 
  11179. Date: 17 Feb 1999 10:44:48 -0700
  11180.  
  11181.  
  11182. In article ,
  11183.     "Frederik Slijkerman" <fjslman@wins.uva.nl>  writes:
  11184. > Hm. Perhaps you could try to use C++ Builder, the C variant of
  11185. > Delphi. In my experience, it takes away the problems of Windows GUI
  11186. > programming, so you can concentrate on getting the program to work
  11187. > instead. But inevitably you will have to spend some training hours. :)
  11188.  
  11189. I have C++Builder, and yes, it will automate the boiler plate code
  11190. that is identical in most windows programs, but you will still be
  11191. ignorant of how to write a Win32 API program from scratch if you only
  11192. learn C++Builder.  C++Builder isolates you from Win32 by using a
  11193. framework.  Frameworks are useful labor saving devices, but you don't
  11194. learn about the Win32 API by using a framework (that's the whole point
  11195. of the framework).  However, you will have to spend time learning the
  11196. framework, and there will be times when you need to use the Win32 API
  11197. anyway, so ultimately you still need to know Win32.  This is
  11198. especially true if you plan on doing advanced graphics or pixel
  11199. manipulation.  (Builder is great for database and forms apps, but
  11200. doesn't have extensive support in its framework for advanced graphics.)
  11201.  
  11202. I think when Tim talks about being a "Windows programmer" he's thinking
  11203. of mastering the Win32 API.  And although the API is large in terms of
  11204. the sheer numbers of function calls that are available, its not
  11205. conceptually that complicated.  Most of the complexity of Win32 is the
  11206. details of the prebuilt UI controls that Windows provides.  The core of
  11207. the GDI and event processing isn't that hard (and the concepts are
  11208. identical to the basic graphics and event programming model provided by
  11209. MacOS or the X Window System).  Learning your first event-driven GUI
  11210. programming environment takes some time, but after that you could
  11211. switch to another similar environment and get up to speed relatively
  11212. quickly by identifying similarities and differences between the two
  11213. environments.
  11214.  
  11215. The big gap between fractint and Win32 is that fractint's input model
  11216. is polling, not event based.  Its graphics support is homebrewed and
  11217. talks directly to the VGA hardware.  The assembly code adds some
  11218. aggravation when porting to another platform, but the xfractint code
  11219. already has C equivalent for everything that's in assembler.
  11220. --
  11221. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  11222.     ``Ain't it funny that they all fire the pistol,     
  11223.       at the wrong end of the race?''--PDBT     
  11224. legalize@xmission.com    <http://www.eden.com/~thewho>
  11225.  
  11226. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11227. Post Message:   fractint@lists.xmission.com
  11228. Get Commands:   majordomo@lists.xmission.com "help"
  11229. Administrator:  twegner@phoenix.net
  11230. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11231.  
  11232.  
  11233. -------------------------------------------------------------------------------
  11234.  
  11235. From: Paul Derbyshire <pderbysh@usa.net>
  11236. Subject: Re: (fractint)   An apology (2)
  11237. Date: 17 Feb 1999 16:33:57 -0500
  11238.  
  11239. At 07:49 PM 2/16/99 -0800, you wrote:
  11240. >I'm also in the process of changing my mailer from Outlook Express to
  11241. >"The Bat".
  11242.  
  11243. "The Bat"???
  11244.  
  11245. >Happy99???  Oh, that must have been a New Years card that my wife had
  11246. >received...Hmmmm, singularly uninteresting CGA-type fireworks
  11247. >reminiscent of old Apple II graphics...dump it.
  11248.  
  11249. Yow.
  11250.  
  11251.  
  11252. -- 
  11253.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  11254. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  11255.    `*'  straight line."    -------------------------------------------------
  11256.         -- B. Mandelbrot  |http://surf.to/pgd.net
  11257. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  11258. Programmer & Humanist|ICQ: 10423848|
  11259.  
  11260. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11261. Post Message:   fractint@lists.xmission.com
  11262. Get Commands:   majordomo@lists.xmission.com "help"
  11263. Administrator:  twegner@phoenix.net
  11264. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11265.  
  11266.  
  11267. -------------------------------------------------------------------------------
  11268.  
  11269. From: Paul Derbyshire <pderbysh@usa.net>
  11270. Subject: Re: (fractint) Cubic polynomials what?
  11271. Date: 17 Feb 1999 16:48:45 -0500
  11272.  
  11273. At 01:35 AM 2/18/99 +1100, you wrote:
  11274. >Here's a couple of formulas and a few example images for an equation that I
  11275. >ripped out of a book that I'm reading at the moment. I don't have the
  11276. >stamina to go through all of the existing Fractint formulas to see if I'm
  11277. >repeating anything. I've named the formulas after a mathematician who
  11278. >investigated this stuff in 1879 but gave up because he presumably didn't
  11279. >have a Pentium.
  11280. >
  11281. >Apparently the equation uses Newton's method to solve a family of cubic
  11282. >polynomials...I'm just repeating what I read, I don't really understand it.
  11283. >With the constant at (0,0) the Julia version of the formula looks the same
  11284. >as the Fractint "Newton", but with some other constants there are points
  11285. >that don't fall to any of the roots. That much was said in the book, but I
  11286. >wasn't expecting the form that those points can take: little copies of
  11287. >classic Julia sets. The Mandelbrot version of the formula has the Mandelbrot
  11288. >shape embedded in a cardioid ring of Newton like chains. To find the Julia
  11289. >sets zoom in close to the boundary of one of the Mandelbrot forms and use
  11290. >the center coordinates for the constant in the Julia version.
  11291.  
  11292. This is one I've fiddled with too. It's cool. The book it came from is The
  11293. Beauty of Fractals...:-) Same place I got it.
  11294.  
  11295. -- 
  11296.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  11297. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  11298.    `*'  straight line."    -------------------------------------------------
  11299.         -- B. Mandelbrot  |http://surf.to/pgd.net
  11300. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  11301. Programmer & Humanist|ICQ: 10423848|
  11302.  
  11303. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11304. Post Message:   fractint@lists.xmission.com
  11305. Get Commands:   majordomo@lists.xmission.com "help"
  11306. Administrator:  twegner@phoenix.net
  11307. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11308.  
  11309.  
  11310. -------------------------------------------------------------------------------
  11311.  
  11312. From: "Phil DiGiorgi" <phild@iinc.com>
  11313. Subject: Re: (fractint) The price of fractal software
  11314. Date: 17 Feb 1999 16:51:44 -0500
  11315.  
  11316. Hi George, Tim, et al,
  11317.  
  11318. >   Don't want money. Got money. Want appreciation.
  11319.  
  11320. You've got mine.   Buckets full!   Just please don't let it die.
  11321.  
  11322.  
  11323.   - Phil D.
  11324.  
  11325. P.S.   This is not a putdown of UF.   I think Fred's program is awesome, and
  11326. well worth my $35.   But fractint is something very special, as are its
  11327. creators and contributors.   I wish I had the talent to help them keep it
  11328. going.
  11329.  
  11330.  
  11331.  
  11332.  
  11333. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11334. Post Message:   fractint@lists.xmission.com
  11335. Get Commands:   majordomo@lists.xmission.com "help"
  11336. Administrator:  twegner@phoenix.net
  11337. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11338.  
  11339.  
  11340. -------------------------------------------------------------------------------
  11341.  
  11342. From: TRMoe@aol.com
  11343. Subject: Re: (fractint) The price of fractal software
  11344. Date: 17 Feb 1999 19:14:43 EST
  11345.  
  11346. <<  Don't want money. Got money. Want appreciation. >>
  11347.  
  11348. Tim and the rest of the Fractint development team,
  11349.     
  11350.     I have been remiss in paying for my Fractint software.  Finding the words to
  11351. express my appreciation for this marvelous program is difficult.  Using the
  11352. program also frequently leaves me speechless.  I came across "Fractals for
  11353. Windows" in a bookstore not very long after I got a computer.  Not much later
  11354. I came across "Fractal Creations".  I eventually bought both editions of that
  11355. one.  I have spent many joyous hours watching the strange and beautiful
  11356. patterns it produces grow across my monitor screen.  What an incredible
  11357. delight!  I hadn't seen such colors and patterns since the late 60's early
  11358. 70's! :-)
  11359. I was stunned when I first ran across the works of Bob Carr, Sylvie Gallet,
  11360. Les St.Clair and others on Compuserve.  
  11361.     You and your teammates have demonstrated impressive generosity in giving away
  11362. a tool that can provide so many with so much. Having made some (unsuccessful)
  11363. efforts to teach myself programming I think I have gained some appreciation
  11364. (and respect) for the hard work all of you have put into this.  I really wish
  11365. I could help.  Again and again, thank you!
  11366.                                                                 Tom
  11367.  
  11368. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11369. Post Message:   fractint@lists.xmission.com
  11370. Get Commands:   majordomo@lists.xmission.com "help"
  11371. Administrator:  twegner@phoenix.net
  11372. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11373.  
  11374.  
  11375. -------------------------------------------------------------------------------
  11376.  
  11377. From: Mark Christenson <mchris@hooked.net>
  11378. Subject: Re: (fractint) The price of fractal software
  11379. Date: 17 Feb 1999 17:49:58 -0800
  11380.  
  11381. comment {
  11382. From the troglodite faction, a skeptic asks:
  11383.  
  11384. "Isn't the biggest problem (from the Fractint perspective)
  11385. with Windoze its failure to accomodate on-the-fly video 
  11386. mode switching?"
  11387.  
  11388. Forgive me if this is an ignorant question; I'm still cowering 
  11389. in my cave with DOS 6.22 and Win 3.1... ( Which is probably 
  11390. why nobody will hire me for software jobs ?:-j )
  11391.  
  11392.  
  11393. Aloha, Bud
  11394.  
  11395.  
  11396. Here's a par (my Web site future title art, for a while):
  11397. }
  11398.  
  11399. gb2n1              { ; "Fringebrot" - (c) Mark "Bud" Christenson 2/15/99
  11400.   reset=1930 type=formula formulafile=budz.frm formulaname=gravibrot
  11401.   function=cos/sqr/log passes=1
  11402.   center-mag=2.96777/-2.9976e-015/1.030928 params=1/0/0/0/25/0 float=y
  11403.   maxiter=300 inside=33 decomp=256
  11404.  
  11405. colors=000<2>LMH<2>RSMUVOYYR<6>zyn<5>qneolcmjakh_ieY<6>XRLVPJUOITMHRKF<9\
  11406.  
  11407. >FB8DA7DA7<14>000000011<27>7IO7JP8KQ9LR<2>EQXFRZGT`HVbJXd<6>Xku_nx_lv<5>\
  11408.  
  11409. QXbOUZNSXMQUMPSLNQJLNGHJBBC000000D4AK4F<4>bCVfEZhGa<5>wTw<6>gF_dCWb
  11410. BU`AR\
  11411.  
  11412. Y8P<2>T6KR5IR5I<31>111003002001000<20>QHHRIISJJUKKVKKWLK<7>jTNkUNmWM<7>
  11413. z\
  11414.   iF<5>hUEeREcQD<2>XK8UI7QF6LC4E83742
  11415.   }
  11416.  
  11417. frm:gravibrot{ ; generalized r^(-2) by Mark "Bud" Christenson 3/13/98
  11418. ; derived from gravijul
  11419. ; p2 is unused as yet...
  11420. ; defaults: p1 = (1,0) p2 = (0,0) p3 = (4,0)
  11421.    z = p2
  11422.    c = pixel:
  11423.  
  11424.    w = fn1(z)
  11425.    z = fn3(p1/fn2(w*w)) + c
  11426.     |z| < p3
  11427.   }
  11428.  
  11429.  
  11430.  
  11431. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11432. Post Message:   fractint@lists.xmission.com
  11433. Get Commands:   majordomo@lists.xmission.com "help"
  11434. Administrator:  twegner@phoenix.net
  11435. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11436.  
  11437.  
  11438. -------------------------------------------------------------------------------
  11439.  
  11440. From: "Tim Wegner" <twegner@phoenix.net>
  11441. Subject: Re: (fractint) The price of fractal software
  11442. Date: 17 Feb 1999 22:59:31 -0600
  11443.  
  11444. Lee wrote:
  11445.  
  11446. > Your 
  11447. > proprietary rights are very unimpressive by comparison. I have taken UF 
  11448. > off my computer and so shall not be sending you any money.
  11449. > Tim, my hat is off to you and your associates, and if you ever want $35 
  11450. > from your users, it would be not only a pleasure to send it to you, but 
  11451. > the best bargain I ever got.
  11452.  
  11453. I appreciate your support. However I want everyone to be clear that 
  11454. I am not advocating people stopping using UF, nor am I trying to 
  11455. encourage any "either or" attitude between  UF and Fractint. The 
  11456. point of my comments was not so much to be critical of UF but to 
  11457. advocate the idea of open source.
  11458.  
  11459. I probably gave too pessimistic view of the state of the Fractint 
  11460. team. I really don't think Fractint will "die" anytime soon, and I 
  11461. really do believe that we will have some porting breakthroughs 
  11462. eventually. We could even have a Windows console version that 
  11463. would look exactly like the current Fractint, except that internally 
  11464. we long-suffering programmers would be free from the DOS 
  11465. medium model programming constraints
  11466.  
  11467. Tim
  11468.  
  11469.  
  11470. > Lee Lane
  11471.  
  11472.  
  11473.  
  11474. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11475. Post Message:   fractint@lists.xmission.com
  11476. Get Commands:   majordomo@lists.xmission.com "help"
  11477. Administrator:  twegner@phoenix.net
  11478. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11479.  
  11480.  
  11481. -------------------------------------------------------------------------------
  11482.  
  11483. From: "Tim Wegner" <twegner@phoenix.net>
  11484. Subject: Re: GUIs and the future of Fractint (was: Re: (fractint) The  price of  fractal software)
  11485. Date: 17 Feb 1999 22:59:32 -0600
  11486.  
  11487. Morgan asked:
  11488.  
  11489. > Since Tim Wegner is himself a member of this team, he is in a 
  11490. > much better
  11491. > position than I to judge the pros and cons and feasibility of taking
  11492. > Fractint down the same path. How do you take it, Tim? At present I think
  11493. > this may well be the way to go.
  11494.  
  11495. There is no doubt that separating the underlying fractal engine from 
  11496. the user interface will be necessary.
  11497.  
  11498. There are several other comments in recent messages that made 
  11499. sense to me, including those by Phil McRevis. I decided I better 
  11500. not get into answering every message :-)
  11501.  
  11502. Tim
  11503.  
  11504.  
  11505. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11506. Post Message:   fractint@lists.xmission.com
  11507. Get Commands:   majordomo@lists.xmission.com "help"
  11508. Administrator:  twegner@phoenix.net
  11509. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11510.  
  11511.  
  11512. -------------------------------------------------------------------------------
  11513.  
  11514. From: "Mark Townsend" <marktown@netspace.net.au>
  11515. Subject: Re: (fractint) Cubic polynomials what?
  11516. Date: 18 Feb 1999 17:29:37 +1100
  11517.  
  11518.  
  11519. Paul Derbyshire wrote...
  11520.  
  11521. [my stuff snipped]
  11522.  
  11523. >This is one I've fiddled with too. It's cool. The book it came from is The
  11524. >Beauty of Fractals...:-) Same place I got it.
  11525.  
  11526.  
  11527. Oh well, I didn't think I could have been the first to see these
  11528. things--especially since I found the equation in a book. The book was _The
  11529. Mathematical Tourist_ by Ivars Peterson, which has a chapter on escape-time
  11530. fractals. _The Beauty of Fractals_ was one of his sources for that, though
  11531. it's not mentioned specifically in relation to that equation. There's been a
  11532. copy of BOF sitting in a local bookshop for several years--untouched, it
  11533. seems, by anybody but me when I occasionally browse through it. It's not
  11534. cheap, and I've never had the money to buy it, but I plan to in the near
  11535. future if nobody else discovers it before then.
  11536.  
  11537. Mark Townsend
  11538. markdown@Netscape.net.au
  11539.  
  11540.  
  11541. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11542. Post Message:   fractint@lists.xmission.com
  11543. Get Commands:   majordomo@lists.xmission.com "help"
  11544. Administrator:  twegner@phoenix.net
  11545. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11546.  
  11547.  
  11548. -------------------------------------------------------------------------------
  11549.  
  11550. From: "Nigel H. J. Long" <n.h.long@soton.ac.uk>
  11551. Subject: Re: (fractint) The price of fractal software
  11552. Date: 18 Feb 1999 08:49:00 +0000 (GMT Standard Time)
  11553.  
  11554. >    Don't want money. Got money. Want appreciation.
  11555.  
  11556. You want appreciation, I will happily give it.....!  I 
  11557. consider the day I first encountered Fractint to be a 
  11558. wonderful milestone in my life. Now, nearly a decade(!) on, 
  11559. I still find it a source of wonder, beauty and imagination. 
  11560.  
  11561. My humblest thanks, and deepest gratitude, to each and 
  11562. every one who has contributed to such a marvel as Fractint. 
  11563. You have created something to be PROUD of.
  11564.  
  11565. Fractint is not just a great piece of programming (and it 
  11566. is, honestly folks!) but it is a work of art - open, 
  11567. funky, squnky, anarchic, happy art. Using it, and sitting 
  11568. in on this list, is like being part of a wonderful family 
  11569. (complete with all the usual arguments of course!)
  11570.  
  11571. I have lost count of how many people have cursed me for all 
  11572. the lost nights I have caused by passing them copies of 
  11573. Fractint. Once bitten - lost forever. :-)
  11574.  
  11575. May you, and Fractint, live long and prosper....
  11576. ----------------------
  11577. Nigel H. J. Long
  11578. Information Scientist, University of Southampton, UK
  11579. n.h.long@soton.ac.uk
  11580.  
  11581.  
  11582. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11583. Post Message:   fractint@lists.xmission.com
  11584. Get Commands:   majordomo@lists.xmission.com "help"
  11585. Administrator:  twegner@phoenix.net
  11586. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11587.  
  11588.  
  11589. -------------------------------------------------------------------------------
  11590.  
  11591. From: "Mark Townsend" <marktown@netspace.net.au>
  11592. Subject: Re: (fractint) Cubic polynomials what?
  11593. Date: 18 Feb 1999 20:52:46 +1100
  11594.  
  11595. I wrote:
  11596.  
  11597. >Mark Townsend
  11598. >markdown@Netscape.net.au
  11599.  
  11600.  
  11601. No, it wasn't me: the spelling checker did it. Although I'm surprised that
  11602. it didn't change it to marktown@InternetExplorer.net.au.
  11603.  
  11604. Mark Townsend
  11605. marktown@netspace.net.au
  11606.  
  11607.  
  11608. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11609. Post Message:   fractint@lists.xmission.com
  11610. Get Commands:   majordomo@lists.xmission.com "help"
  11611. Administrator:  twegner@phoenix.net
  11612. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11613.  
  11614.  
  11615. -------------------------------------------------------------------------------
  11616.  
  11617. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  11618. Subject: (fractint) J of M?
  11619. Date: 18 Feb 1999 11:47:49 GMT
  11620.  
  11621.  
  11622. --Message-Boundary-21775
  11623. Content-type: text/plain; charset=US-ASCII
  11624. Content-transfer-encoding: 7BIT
  11625. Content-description: Mail message body
  11626.  
  11627. Dump the attached PAR file into your Fractint directory. Now have a 
  11628. look at "JofM". If you look at the file, you'll see it says 
  11629. "type=mandel". But wait! Could it be... no, shurely it can't be... 
  11630. but... yes... no... yes! It is! It's a Julia Set! It's a quadratic 
  11631. Julia set *INSIDE* the quadratic Mandelbrot Set, with lines 
  11632. enphasising its internal structure (see "JofM_Structure").
  11633.  
  11634. A freak occurance? Are you kidding? This is choas here! Coincidences 
  11635. don't happen!
  11636.  
  11637. Take a look at "JofM2". The "2" signifies more that the fact that 
  11638. this image is the sequal to the first; this Julia set is pearced by a 
  11639. spike that repeatadly splits in two.
  11640.  
  11641. If you take a look at "JofM_Center", you'll see that the Julia Set 
  11642. pattern repeates itself 4, 8, 16, 32... times, gradually ceesing to 
  11643. be a circle and following the equipotential curve of... the 
  11644. Mandelbrot Set. (Well, that's not so suprising; we all knew about 
  11645. "baby-brots".)
  11646.  
  11647. In case anyone else wants to find Julia Sets in M, look at one of the 
  11648. "lightning stalks" sprouting from a disk in the side of the 
  11649. Mandelbrot set (not one that's too tightly twisted), and find a 
  11650. (fairly large) baby-brot in it. Now zoom into an area of it you 
  11651. happen to like the Julia sets of, and look in the lightning streams 
  11652. surrounding it... See how they seem to have little blobs on them... 
  11653. no, those aren't sampling errors... those are Julia sets!
  11654.  
  11655. If anyone cares, I might pose a set of pars that zoom in in stages... 
  11656. Maybe...
  11657.  
  11658. Nam et ipsa scientia potestus est!
  11659. (Sir Francis Bacon)
  11660. Andrew Orphi Coppin
  11661. DMU MK.
  11662.  
  11663. --Message-Boundary-21775
  11664. Content-type: text/plain; charset=US-ASCII
  11665. Content-disposition: inline
  11666. Content-description: Attachment information.
  11667.  
  11668. The following section of this message contains a file attachment
  11669. prepared for transmission using the Internet MIME message format.
  11670. If you are using Pegasus Mail, or any another MIME-compliant system,
  11671. you should be able to save it or view it from within your mailer.
  11672. If you cannot, please ask your system administrator for assistance.
  11673.  
  11674.    ---- File information -----------
  11675.      File:  post1.par
  11676.      Date:  18 Feb 1999, 9:07
  11677.      Size:  1307 bytes.
  11678.      Type:  Unknown
  11679.  
  11680. --Message-Boundary-21775
  11681. Content-type: Application/Octet-stream; name="post1.par"; type=Unknown
  11682. Content-disposition: attachment; filename="post1.par"
  11683. Content-transfer-encoding: BASE64
  11684.  
  11685. Sm9mTSAgICAgICAgICAgICAgIHsNCiAgcmVzZXQ9MTk2MCB0eXBlPW1hbmRlbCBwYXNzZXM9
  11686. Yg0KICBjZW50ZXItbWFnPS0xLjc2ODg0MDc1MjI5NzE2NjAwLyswLjAwMjI4NjA3NjY2MjMy
  11687. MDg0LzY1MTA0LjE3DQogIHBhcmFtcz0wLzAgZmxvYXQ9eSBtYXhpdGVyPTQwOTYgaW5zaWRl
  11688. PTI1NQ0KICBjb2xvcnM9MDAwemZQPDIzPnpWMXpVMHpVMHpUMDwyOD56MTB6MDB6MDB5MDA8
  11689. MzA+YzAwYjExYTExYDIyXzIyPDIzPkdFRUZcDQogIEZGRkZGRkZGPDI5PngxMXowMHoxMDwy
  11690. OT56eDB6ejB6ejE8Mjk+enp4enp6enp6PDM2PnpnUQ0KICB9DQoNCkpvZk0yICAgICAgICAg
  11691. ICAgICB7DQogIHJlc2V0PTE5NjAgdHlwZT1tYW5kZWwgcGFzc2VzPWINCiAgY2VudGVyLW1h
  11692. Zz0tMC4xNjA3NjA5NDAwNTU1MjMwMC8rMS4wMzY5MDgwMzAyNjQ0MDcwMC84Nzk5Ny42Mw0K
  11693. ICBwYXJhbXM9MC8wIGZsb2F0PXkgbWF4aXRlcj00MDk2IGluc2lkZT0yNTUNCiAgY29sb3Jz
  11694. PTAwMHpKRDw5PnhRN3hSNnhTNndUNXdUNXdVNTw1PnRaMnRfMnNfMnNgMnJhMTwxNj5obTBn
  11695. bjBmbjBlbzBlcDA8XA0KICAxMT5XdjNXdjRWdjRVdzVUdzU8OT5NekFMekJLekJKekNKekRJ
  11696. ekQ8MTc+N3hRNnhSNnhTNXdUNXdUNXdVPDU+MnRaMnRfMnNcDQogIF8yc2AxcmE8MTY+MGht
  11697. MGduMGZuMGVvMGVwPDExPjNXdjRXdjRWdjVVdzVUdzw5PkFNekJMekJLekNKekRKekRJejwx
  11698. Nz5RN1wNCiAgeFI2eFM2eFQ1d1Q1d1U1dzw1PloydF8ydF8yc2Ayc2ExcjwxNj5tMGhuMGdu
  11699. MGZvMGVwMGU8MTE+djNXdjRXdjRWdzVVdzVUXA0KICA8OT56QU16Qkx6Qkt6Q0p6REp6REk8
  11700. Nj56SUQNCiAgfQ0KDQpKb2ZNX0NlbnRlciAgICAgICAgew0KICByZXNldD0xOTYwIHR5cGU9
  11701. bWFuZGVsIHBhc3Nlcz1iDQogIGNlbnRlci1tYWc9LTEuNzY4ODQwMzk1OTQ5MTg4MDAvKzAu
  11702. MDAyMjg1ODI3OTM4NDc0MzgvNy41NzAyNTJlKzAwNw0KICBwYXJhbXM9MC8wIGZsb2F0PXkg
  11703. bWF4aXRlcj00MDk2IGluc2lkZT0yNTUgY29sb3JzPUBibHVlcy5tYXANCiAgfQ0KDQpKb2ZN
  11704. X1N0cnVjdHVyZSAgICAgew0KICByZXNldD0xOTYwIHR5cGU9bWFuZGVsIHBhc3Nlcz1iDQog
  11705. IGNlbnRlci1tYWc9LTEuNzY4ODQwNzUyMjk3MTY2MDAvKzAuMDAyMjg1ODM2MzQ5NDI1NzEv
  11706. MjY2ODIwLjQNCiAgcGFyYW1zPTAvMCBmbG9hdD15IG1heGl0ZXI9NDA5NiBpbnNpZGU9MjU1
  11707. DQogIGNvbG9ycz0wMDBxbjM8NDg+RzJKRjBLRjBLPDQ+RjBMRzBMRzBMRzBNRzBNSDBNPDUy
  11708. PlQwYlUwY1UwY1YxY1YyZDw2MD56elwNCiAgenp6enp6eTw2MD56ejF6ejB6eTB5eDA8OD5y
  11709. bzMNCiAgfQ0KDQo=
  11710.  
  11711. --Message-Boundary-21775--
  11712.  
  11713. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11714. Post Message:   fractint@lists.xmission.com
  11715. Get Commands:   majordomo@lists.xmission.com "help"
  11716. Administrator:  twegner@phoenix.net
  11717. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11718.  
  11719.  
  11720. -------------------------------------------------------------------------------
  11721.  
  11722. From: "Wayne Kiely" <kiely+co@riverland.net.au>
  11723. Subject: Re: (fractint)   An apology (2)
  11724. Date: 18 Feb 1999 20:37:57 +1030
  11725.  
  11726. John,
  11727.  
  11728. >In conclusion, I apologize again, abjectly, for letting this thing
  11729. >loose in Fractint.   Please check your computers for those tell-tale
  11730. >.SKA files in your WIN System folder...I wouldn't wish this on anyone
  11731. >else.
  11732.  
  11733.  
  11734. Luckily I didn't open the file, although I nearly did (simply because this list IS so clean).  I
  11735. certainly will never be tempted to again!
  11736.  
  11737. On your list of Lessons learned, #5 should have been:-
  11738.  
  11739. A 'Really Decent' stuff up is composed of a string of minor concatenating stuff ups - any one of
  11740. which, taken in isolation, is entirely explainable, justifiable or totally unworthy of further
  11741. attention!
  11742.  
  11743. i.e. a good stuff up is always greater than the sum of its constituent parts...
  11744.  
  11745. Welcome back.
  11746.  
  11747. Wayne
  11748.  
  11749.  
  11750.  
  11751.  
  11752.  
  11753. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11754. Post Message:   fractint@lists.xmission.com
  11755. Get Commands:   majordomo@lists.xmission.com "help"
  11756. Administrator:  twegner@phoenix.net
  11757. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11758.  
  11759.  
  11760. -------------------------------------------------------------------------------
  11761.  
  11762. From: "Jon Camp" <jcamp@cnspace.net>
  11763. Date: 18 Feb 1999 07:54:26 -0800
  11764.  
  11765. Hi all! It's been a while since i posted any pars. Partly because I have
  11766. been fooling around with Ultra Fractal but have not produced anything worth
  11767. posting. Here are two images I made on Fractint last night and liked them so
  11768. much that I've decided to post them.
  11769. If somebody who is good with Ultra Fractal would take one of the images and
  11770. modify it or enhance it I would be interested to see your results. This
  11771. becuase I am just starting out with Ultra Fractal.
  11772.  
  11773. Here are links to the two full isze images if you are too lazy to use the
  11774. par :)
  11775.  
  11776. http://www.cnspace.net/ftp_cnspace/fractal280.gif
  11777. http://www.cnspace.net/ftp_cnspace/fractal281.gif
  11778.  
  11779. Thanks!
  11780.     Jon Camp
  11781.  
  11782. P.S. One of my fractals made it on http://www.dailyimage.com
  11783. I don't know if that is a big deal or not but I thought it was kinda cool :)
  11784.  
  11785. Visit chaotic n-space network!
  11786. http://www.cnspace.net
  11787.  
  11788. ***********************************************************
  11789. 2 pars
  11790. ***********************************************************
  11791.  
  11792.  
  11793. jcamp101           { ; jon camp, 1999
  11794.                      ; chaotic n-space network
  11795.                      ; http://www.cnspace.net
  11796.                      ; jcamp@cnspace.net
  11797.   reset=1960 type=mandel
  11798.   center-mag=-0.74998744123316300/-0.01229491445302480/1.272508e+007
  11799.   params=0/0 float=y maxiter=100000 outside=imag
  11800.   colors=000000<29>00k00m01m<29>0ky0mz1mz<30>zzz<46>2zz0zz0yz<45>02z00z00y\
  11801.   <59>002000000
  11802.   }
  11803.  
  11804. jcamp102           { ; jon camp, 1999
  11805.                      ; chaotic n-space network
  11806.                      ; http://www.cnspace.net
  11807.                      ; jcamp@cnspace.net
  11808.   reset=1960 type=mandel
  11809.   center-mag=-0.74998746253324030/-0.01229490523484335/6.117825e+007
  11810.   params=0/0 float=y maxiter=100000 outside=imag
  11811.   colors=000000<29>00k00m01m<29>0ky0mz1mz<30>zzz<46>2zz0zz0yz<45>02z00z00y\
  11812.   <59>002000000
  11813.   }
  11814.  
  11815.  
  11816.  
  11817.  
  11818. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11819. Post Message:   fractint@lists.xmission.com
  11820. Get Commands:   majordomo@lists.xmission.com "help"
  11821. Administrator:  twegner@phoenix.net
  11822. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11823.  
  11824.  
  11825. -------------------------------------------------------------------------------
  11826.  
  11827. From: Gedeon Peteri <gedeon@InfoAve.Net>
  11828. Subject: (fractint) updated website
  11829. Date: 18 Feb 1999 11:00:34 -0500
  11830.  
  11831. All the old images on my Euler pages have been replaced with new ones.
  11832. In addition, there is a new page of miscellaneous images. Both at my
  11833. Geocities web site. I hope you enjoy your visit.
  11834.  
  11835. Gedeon
  11836. --
  11837. Fractals: http://www.geocities.com/~gedeonp/index.html
  11838. Member Infinite Fractal Loop
  11839. Last updated: February 18, 1999 - new and updated pages
  11840. Photography: http://members.xoom.com/gedeonp/index.html
  11841. Last updated: November 8, 1998
  11842.  
  11843.  
  11844.  
  11845.  
  11846. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11847. Post Message:   fractint@lists.xmission.com
  11848. Get Commands:   majordomo@lists.xmission.com "help"
  11849. Administrator:  twegner@phoenix.net
  11850. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11851.  
  11852.  
  11853. -------------------------------------------------------------------------------
  11854.  
  11855. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  11856. Subject: (fractint) How to Modify for UF
  11857. Date: 18 Feb 1999 08:20:36 -0800 (PST)
  11858.  
  11859.  
  11860. Jon,
  11861.  
  11862. > If somebody who is good with Ultra Fractal would take one of the images and
  11863. > modify it or enhance it I would be interested to see your results. This
  11864. > becuase I am just starting out with Ultra Fractal.
  11865.  
  11866. This quickest way to make a more interesting image from these PARs is
  11867. simply to use the "Smoothed Iterations (Mandlebrot)" Outside Coloring
  11868. method from the dmj.ucl collection.
  11869.  
  11870.  
  11871. Ken...
  11872.  
  11873.  
  11874.  
  11875. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11876. Post Message:   fractint@lists.xmission.com
  11877. Get Commands:   majordomo@lists.xmission.com "help"
  11878. Administrator:  twegner@phoenix.net
  11879. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11880.  
  11881.  
  11882. -------------------------------------------------------------------------------
  11883.  
  11884. From: "Damien M. Jones" <dmj@fractalus.com>
  11885. Subject: Re: (fractint) J of M?
  11886. Date: 18 Feb 1999 10:28:47 -0600
  11887.  
  11888. Andrew,
  11889.  
  11890. You can find "faux Julias" all over the Mandelbrot set, once you know where
  11891. to look. You probably know from general exploring where to find
  11892. minibrots--in spiral arms, at the centers of certain clusters, etc. To find
  11893. a faux Julia, first find a minibrot (any minibrot). From that minibrot you
  11894. will see the usual threads stretching out; zoom in on one of these, and
  11895. look where you would normally expect to see a microbrot. On your way to
  11896. zooming towards the microbrot, you will see the faux Julia.
  11897.  
  11898. Furthermore, you can select the type of faux Julia you want to see. When
  11899. looking for the microbrot, look in areas of the minibrot that correspond to
  11900. areas of the master M-set which produce the Julia type you're looking for.
  11901. For example, if you want a faux Julia that looks like the Julia sets
  11902. produced with seeds from the Seahorse Valley, you would look for a
  11903. microbrot in the Seahorse Valley of the minibrot. If you want "brain" faux
  11904. Julias, you would look in the Elephant Valley of the minibrot (since Julia
  11905. sets taken from the Elephant Valley of the full M-set produce "brain" type
  11906. Julias).
  11907.  
  11908. Not only does this hold for the M-set, but it also holds for other formulas
  11909. which produce minibrots of their own. It also holds for mandeloids of
  11910. higher powers (they produce faux Julias of higher powers) and for formulas
  11911. which produce mandeloids of higher powers.
  11912.  
  11913. Damien M. Jones   \\
  11914. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  11915.                     \\  http://www.fractalus.com/
  11916.  
  11917. Please do not post my e-mail address on a web site or
  11918. in a newsgroup.  Thank you.
  11919.  
  11920. Thanks for using Fractint, The Fractals and Fractint Discussion List
  11921. Post Message:   fractint@lists.xmission.com
  11922. Get Commands:   majordomo@lists.xmission.com "help"
  11923. Administrator:  twegner@phoenix.net
  11924. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  11925.  
  11926.  
  11927. -------------------------------------------------------------------------------
  11928.  
  11929. From: Lee&SusanLane <slane@kiwi.dep.anl.gov>
  11930. Subject: Re: (fractint) The price of fractal software
  11931. Date: 18 Feb 1999 10:40:32 -0800
  11932.  
  11933. This is a multi-part message in MIME format.
  11934.  
  11935. --------------2378BBD207E
  11936. Content-Type: text/plain; charset=us-ascii
  11937. Content-Transfer-Encoding: 7bit
  11938.  
  11939. Tim Wegner wrote:
  11940. > I appreciate your support. However I want everyone to be clear that
  11941. > I am not advocating people stopping using UF, nor am I trying to
  11942. > encourage any "either or" attitude between  UF and Fractint. The
  11943. > point of my comments was not so much to be critical of UF but to
  11944. > advocate the idea of open source.
  11945.  
  11946. Tim,
  11947.  
  11948. I feel very bad that I gave the impression that I didn't keep 
  11949. UltraFractal for the above reasons. I understand that UF is a superb and 
  11950. appealing program, and had it become a useful tool for me, as Ken 
  11951. Childress suggests, I would not have removed it. But after investigating 
  11952. it briefly, I decided that my satisfaction with Fractint, for the way 
  11953. the program works as well as for the philosophy of its authors, was such 
  11954. that I was not motivated to learn a new program. I will take it as a 
  11955. lesson in the pitfalls of facile communication, and apologize for any 
  11956. ill effects.
  11957.  
  11958. Here now, are a few renderings of Sylvie's Gallet_9.frm.
  11959.  
  11960. Best regards,
  11961. Lee Lane
  11962.  
  11963. --------------2378BBD207E
  11964. Content-Type: text/plain; charset=us-ascii
  11965. Content-Transfer-Encoding: 7bit
  11966. Content-Disposition: inline; filename="LLSG_9.par"
  11967.  
  11968. LLSG9-1            { ; Gallet_9-04      0:04:04.53 on PII-300 at 1280x1024
  11969.                      ; (c) 1999 by Lee Lane [Par date: Feb 18, 1999]
  11970.                      ; e-mail to: slane@kiwi.dep.anl.gov
  11971.   reset=1960 type=formula formulafile=gallet_9.frm
  11972.   formulaname=gallet-9-04 function=sqrt/sqr passes=1
  11973.   center-mag=0.221377/-0.402819/1.569825/0.8488/136.401/-12.562
  11974.   params=1/1/12/2/1/2 float=y maxiter=256 inside=bof60 outside=real
  11975.   colors=000B48<6>936936A47<12>MADNADNBEOCE<10>YIJZJJ_KK`LKaML<25>yofzpgzp\
  11976.   g<8>g_ZeZYcXWaWV_UU<5>NLLLJKJIIHGG<5>555333000<3>00051C<2>51D61D61E71E71\
  11977.   E<21>H2LH3MI3MJ3M<11>Q4QQ4QR4QR4QR4QS4Q<28>`7M`7M`7M`7M`7M_7M<67>C48
  11978.   }
  11979.  
  11980. LLSG9-2            { ; Gallet_9-03      0:02:31.32 on PII-300 at 1280x1024
  11981.                      ; (c) 1999 by Lee Lane [Par date: Feb 18, 1999]
  11982.                      ; e-mail to: slane@kiwi.dep.anl.gov
  11983.   reset=1960 type=formula formulafile=gallet_9.frm
  11984.   formulaname=gallet-9-03 function=ident passes=1
  11985.   center-mag=-1.78457136925488800/+0.00935822099108078/299.0144/1.6146/180
  11986.   params=1/2/2/1/0/0.01 float=y maxiter=256 outside=atan
  11987.   colors=JSIsmS<49>UMCTMCTLBTLB<25>872762652542432321<52>JRIJRIJSIKTJ<20>Q\
  11988.   bQQbQRcRScS<32>psiptiqtjqtjrtk<6>vxovxowxowxoxypyyqzzrzzp<27>xsWxsWxsVwr\
  11989.   VwrU<6>snS
  11990.   }
  11991.  
  11992. LLSG9-3            { ; Gallet_9-04      0:02:24.28 on PII-300 at 1024x768
  11993.                      ; (c) 1999 by Lee Lane [Par date: Feb 18, 1999]
  11994.                      ; e-mail to: slane@kiwi.dep.anl.gov
  11995.   reset=1960 type=formula formulafile=gallet_9.frm
  11996.   formulaname=gallet-9-04 function=asinh/floor passes=b
  11997.   center-mag=-1.05692/0.114798/37.73484/1/180 params=0/2/2/2/2/0
  11998.   float=y maxiter=88 inside=bof61 outside=real
  11999.   colors=000NOt<5>EGsDFsBDr9Br<2>14q<43>uvz<3>BLB<3>FOFcccHQH<37>yyy`hkinp\
  12000.   rtuqp6<5>vuXHgY<4>MeYwww<5>uvsuvstvrsuq<44>7V2UPA<16>KPKlZ5<11>YRFXRGWQH\
  12001.   UPIUPIUPJUPJcccUPKTQL<9>TRP<5>utw<22>PQt
  12002.   }
  12003.  
  12004. LLSG9-4            { ; Gallet_9-04      0:01:25.73 on PII-300 at 1024x768
  12005.                      ; (c) 1999 by Lee Lane [Par date: Feb 18, 1999]
  12006.                      ; e-mail to: slane@kiwi.dep.anl.gov
  12007.   reset=1960 type=formula formulafile=gallet_9.frm
  12008.   formulaname=gallet-9-04 function=asin/flip passes=1
  12009.   center-mag=-1.01421/-2.05391e-015/10.96033/1/-90
  12010.   params=0/1/32/-1/0/0 float=y maxiter=76 inside=bof61 outside=real
  12011.   colors=00060z<77>y0zz0zz0zz0z<2>y0yy0yx0xw0w<91>000VVVzzzzWWz00zW0zW0zj0\
  12012.   zz0<6>0z00z00z0<20>0zw0zz0xz<23>00z<2>00z00z10z20z<4>50z
  12013.   }
  12014.  
  12015. --------------2378BBD207E--
  12016.  
  12017.  
  12018.  
  12019. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12020. Post Message:   fractint@lists.xmission.com
  12021. Get Commands:   majordomo@lists.xmission.com "help"
  12022. Administrator:  twegner@phoenix.net
  12023. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12024.  
  12025.  
  12026. -------------------------------------------------------------------------------
  12027.  
  12028. From: "narada" <narada@hermes.net.au>
  12029. Subject: (fractint) FractintPARs : Are these in plain text?
  12030. Date: 19 Feb 1999 12:01:36 +1100
  12031.  
  12032. I have reset my Outlook Express to send mail in normal text format, not
  12033. HTML, but I am not sure if it has worked. If not and there is still those
  12034. horrible 3= errors, can someone tell me how to change the settings? Its
  12035. Outlook Express that comes with IE4.01.
  12036. Thanks.
  12037.  
  12038.  
  12039.  
  12040. Franjipani       { ; Dan Vantari
  12041.                      ; Based on a Bill Rossi par of a William Decker frm
  12042.                      ; Narada's colour map
  12043.   reset=1960 type=formula formulafile=web.par formulaname=billsfv4
  12044.   function=cotan/sqrt/exp
  12045.   center-mag=0.0206845/-0.00708526/0.9902116/1.2096 params=5/0 float=y
  12046.   potential=256/200/0
  12047.   colors=000zum<23>zd2zc0zd0<14>zz0<15>z00<14>ZZZccc<7>zzz<6>00z<15>zz0<15\
  12048.   >z00<15>00z<15>0z0<15>z0z<14>N0NK0KJ1L<13>2Sk0Um0Vm<13>0km0mm0mm<14>0cz<\
  12049.   15>zzz<5>zvo
  12050.   }
  12051.  
  12052.  
  12053. IceCrystals       { ; Dan Vantari
  12054.                      ; Based on a Bill Rossi par of a William Decker frm
  12055.  
  12056.   reset=1960 type=formula formulafile=var.par formulaname=billsfv4
  12057.   function=sqrt/cos/exp
  12058.   center-mag=0.0206845/-0.00708526/1.27913/1.2096 params=6/0 float=y
  12059.   potential=256/200/0
  12060.   colors=222ISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQMUOIQMIQO\
  12061.   MMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAEIAGMEIM<2\
  12062.   >ECAAAAACE6AE28E26A68A666246642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIAQK\
  12063.   EUMEUKAUI6QG6QE2<2>aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2mS6qU\
  12064.   6qS2uU2yW2yY6uW6uYAy_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQyiUug\
  12065.   UqeUqcQmaQmcUiaUe_UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_\
  12066.   aYaeYciaeiaceeeeegiiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuo\
  12067.   iqmiqkemie<2>moqqqqqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemuiouim\
  12068.   qikmeimekqaiqagmYemYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_qIauMc\
  12069.   uMeyIcyEayE_uAYuA_y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi2Oi2M\
  12070.   e6Oe6Ma2Ka2IY6KYAMYAOaEQaEOYIQYMSYMUa
  12071.   }
  12072.  
  12073. frm:billsfv4  {
  12074.   temp = pixel :
  12075.   z = fn1(temp^p1)
  12076.   IF (5 < z)
  12077.     temp = fn2(temp)
  12078.   ELSE
  12079.     temp = fn3(z)
  12080.   ENDIF
  12081.   z < 100
  12082.   }
  12083.  
  12084.  
  12085.  
  12086. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12087. Post Message:   fractint@lists.xmission.com
  12088. Get Commands:   majordomo@lists.xmission.com "help"
  12089. Administrator:  twegner@phoenix.net
  12090. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12091.  
  12092.  
  12093. -------------------------------------------------------------------------------
  12094.  
  12095. From: "narada" <narada@hermes.net.au>
  12096. Subject: (fractint) Fractint- Metaphor
  12097. Date: 19 Feb 1999 11:56:48 +1100
  12098.  
  12099. Hi.
  12100. Wathcing the discussion about the relative virtues of Ultra Fractal etc, I
  12101. am surprised no one has mentioned a rather important difference to my way of
  12102. seeing things. 'Layering' being one of its main features means that the end
  12103. result you are looking at is often not actually a fractal anymore. It is a
  12104. fractal pattern manipulated by image editing tools. Sometimes this can be
  12105. used to reveal more clearly the actual structure of the fractal, but I think
  12106. that unless this is done deliberately, artistic concerns will tend to take
  12107. over, and the stucture will be somewhat distorted, if not totally messed up.
  12108.  
  12109. Is not half the attraction of fractals the beauty of their nature, and the
  12110. insights into the structure of reality that they can give us??? (I do
  12111. realise that not all images generated with Fractint are 'True Fractals' for
  12112. a number of reasons including computational quirks, but even so these are
  12113. interesting for themselves too, and not 'merely' esthetic manipulations by
  12114. the 'artist'.)
  12115.  
  12116. It has often occured to me that each new technology or scientific discovery
  12117. humans invent gives us a new metaphor to use in our understanding of
  12118. ourselves, our minds, and the universe. The computer has been an especially
  12119. powerful metaphor for a few reasons: it is a 'universal machine', an
  12120. 'anything box', and as such is the epitomy of the whole mechanistic
  12121. metaphor, and one which is complex enough to contain many sub-metaphors
  12122. such as harware/software, peripherals, programming languages,
  12123. input/outputdevices, etc etc.
  12124.  
  12125. It seems to me that the metaphorical implications of fractals, (and chaos
  12126. and complexity also), have barely begun to make themselves felt, but the
  12127. potential seems rather awesome, if not actually endless. I instantly felt
  12128. when I came across fractals that here was a better metaphor for the
  12129. structure of reality than quantuum mechanics. (Of course you know how much
  12130. even Einstien resisted quantuum mechanics because it did not make intuitive
  12131. sense to him that the universe should be so discontinuous.)
  12132.  
  12133. I myself am not qualified in maths, physics or computer science, or
  12134. philosophy, but am an artist with a fascination for these things. I am
  12135. hoping one day to find that someone is working out the practicalities of
  12136. using this incredible new metaphor in these disciplines. For instance, as I
  12137. understand it, a 'particle' such as an electron has a field of 'virtual
  12138. particles' that surround it like a cloud, becoming ever more diffuse and
  12139. improbable with distance, and each virtual particle also has its cloud of
  12140. even more virtual and improbable particles. (I know I am taking metaphorical
  12141. liberties with the language, if anyone would like to tidy up the expression
  12142. of this idea they are welcome). Isn't this a wonderful fractal structure???
  12143.  
  12144. What if the way particles interact is in some way like the way the areas of
  12145. complexity appear in different parts of a mandelbrot? Hmmm, let me try to
  12146. explain. As 2 particles approach each other their virtual fields interact
  12147. more strongly sending ripples of probability inward along the fillaments
  12148. that connect the minibrots that represent lakes of higher possibility, until
  12149. at a certain threshold it becomes probable enough to cause change in the
  12150. 'real' particle. Well, thats pretty sloppy, I hope you get some idea of what
  12151. Im on about. :-)
  12152.  
  12153. Another thought: it has often seemed strange to me that the mandelbrot
  12154. hasone end. I mean, you can go down into it indefinitely, but when you come
  12155. up you reach its boundary. What if one was living on a brot an infinite
  12156. number of levels down into the mandel and trying to understand the nature of
  12157. the whole thing? Is this a fruitful metaphor for our search for God?
  12158.  
  12159. OK. So. A question, especially for any cosmically minded mathemeticians out
  12160. there: Have you ever thought about the metaphorical meaning of different
  12161. fractal formulas? What does the mandel (for instance) represent in terms of
  12162. the type of algorithym that generates it. What does its strucure then teach
  12163. us about the kind of things that it models? is I suppose a corrolary
  12164. question.
  12165.  
  12166. If there were a lot of people interested in this sort of thing, I dream of
  12167. actually putting together a book of speculative musings, mostly by asking
  12168. questions of those who are more qualified to answer these than I am.
  12169. I also find that Fractint itself provies more levels of metaphor in its
  12170. functionality, such as colorcycling, formula editing, pallette creating, etc
  12171. etc.
  12172. All these things are useful to me as metaphors for my internal processes.
  12173.  
  12174. So, many thanks to those who made it such fun to explore these questions.
  12175. I think thats enough for now.
  12176. I include a few pars below.
  12177.  
  12178. Best
  12179. Narada
  12180.  
  12181.  
  12182. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12183. Post Message:   fractint@lists.xmission.com
  12184. Get Commands:   majordomo@lists.xmission.com "help"
  12185. Administrator:  twegner@phoenix.net
  12186. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12187.  
  12188.  
  12189. -------------------------------------------------------------------------------
  12190.  
  12191. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  12192. Subject: Re: (fractint) Fractint- Metaphor
  12193. Date: 18 Feb 1999 17:28:26 -0800 (PST)
  12194.  
  12195.  
  12196. > Wathcing the discussion about the relative virtues of Ultra Fractal etc, I
  12197. > am surprised no one has mentioned a rather important difference to my way of
  12198. > seeing things. 'Layering' being one of its main features means that the end
  12199. > result you are looking at is often not actually a fractal anymore. It is a
  12200. > fractal pattern manipulated by image editing tools. Sometimes this can be
  12201. > used to reveal more clearly the actual structure of the fractal, but I think
  12202. > that unless this is done deliberately, artistic concerns will tend to take
  12203. > over, and the stucture will be somewhat distorted, if not totally messed up.
  12204.  
  12205. I think that layering, transformations, etc. are all mathematical
  12206. techniques that are used to generate more complex fractal images.  I do
  12207. see your point from a more "purist" standpoint.  In fact, I made this
  12208. kind of argument a while back when the discussion was about whether or
  12209. not an anti-aliased Fractint image was still considered a 256 color
  12210. image.
  12211.  
  12212. On that particular subject, the consensus seemed to be that even though
  12213. anti-aliasing rendered the image in more than 256 colors, the resulting
  12214. image was still essentially a 256 color image for the purpose of
  12215. categorization since that was how the original image was created.
  12216.  
  12217. The addition capabilities of layering specifically, but
  12218. transformations, etc. in general, seem to merely be extensions of that
  12219. line of reasoning.
  12220.  
  12221. I suppose it may boil down to the individual's philosophy when they are
  12222. creating images.  I go for what pleases me visually.  How that is
  12223. achieved is not important to me.  If one wants purer images, then one
  12224. might not use combinations of layers, or transformations, that
  12225. manipulate the "pure" image from any given formula.
  12226.  
  12227. > Is not half the attraction of fractals the beauty of their nature, and the
  12228. > insights into the structure of reality that they can give us??? (I do
  12229. > realise that not all images generated with Fractint are 'True Fractals' for
  12230. > a number of reasons including computational quirks, but even so these are
  12231. > interesting for themselves too, and not 'merely' esthetic manipulations by
  12232. > the 'artist'.)
  12233.  
  12234. What insight into reality do the Mandelbrot Set or Julia Sets really
  12235. give?
  12236.  
  12237. Sure, there are formulas that can mimick things we find in nature such
  12238. as mountains, trees, plants, etc.  But what reality is there in any
  12239. given minibrot?
  12240.  
  12241. I think the beauty of fractals, at least for me, is the visual impact.
  12242. I rarely see, or interpret, any relation to reality in any given image.
  12243. Though, I suppose I do try to do this in a sense by trying to give a
  12244. name to a particular image.
  12245.  
  12246. Others, I'm sure, will see things differently.  Which, I think, is part
  12247. of what makes fractals so interesting.
  12248.  
  12249. [...]
  12250.  
  12251.  
  12252.  
  12253. Ken...
  12254.  
  12255.  
  12256.  
  12257.  
  12258. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12259. Post Message:   fractint@lists.xmission.com
  12260. Get Commands:   majordomo@lists.xmission.com "help"
  12261. Administrator:  twegner@phoenix.net
  12262. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12263.  
  12264.  
  12265. -------------------------------------------------------------------------------
  12266.  
  12267. From: "Damien M. Jones" <dmj@fractalus.com>
  12268. Subject: Re: (fractint) Fractint- Metaphor
  12269. Date: 18 Feb 1999 19:39:26 -0600
  12270.  
  12271. Narada,
  12272.  
  12273.  - 'Layering' being one of its main features means that the end result
  12274.  - you are looking at is often not actually a fractal anymore.
  12275.  
  12276. That depends entirely on the person creating the image. In fact, I would
  12277. suggest that almost all of the images I have created with Ultra Fractal do
  12278. in fact keep the fractal nature, since despite being multiple layers, they
  12279. are the same location and fractal in each layer. Thus the difference is in
  12280. the combined coloring algorithm.
  12281.  
  12282. As I've demonstrated by posting a parameter and formula file to this list
  12283. that does layering and true color in FractInt, this is not a technique that
  12284. only Ultra Fractal can use. This is a general technique. And what of many
  12285. PHC fractals, that combine two fractals nearly at whim? These are just as
  12286. un-fractal as you fear layering can be.
  12287.  
  12288. Do we really want to get into a discussion of "what is a fractal"? This
  12289. very nearly came up during the last contest, during the extensive
  12290. "discussions" about post-processing. FractInt's formula parser is flexible
  12291. enough to accomplish just about anything, if you are willing to work at it,
  12292. so don't pin your definition on that. :-)
  12293.  
  12294.  - Is not half the attraction of fractals the beauty of their nature,
  12295.  - and the insights into the structure of reality that they can give
  12296.  - us???
  12297.  
  12298. Yes, but another part of the attraction is that the shape can be molded,
  12299. adapted without having *complete* control over every pixel. As you point
  12300. out, not every FractInt image is a "pure" fractal--that is up to the person
  12301. at the computer. To me, using mathematical equations as my brushes is what
  12302. makes the difference. That some of those equations might be simple--and
  12303. lacking in obvious fractal detail--is not so important if the concept I
  12304. wish to convey is adequately expressed. I may use techniques some would
  12305. consider post-processing, but usually it is algorithmic in nature, rather
  12306. than by-hand touch-ups.
  12307.  
  12308. The rest of your philosophical inquiry would no doubt be well-received on
  12309. the philofractal list. :-) Not that I am suggesting you shouldn't post
  12310. here, just pointing out that there are others who are pondering the
  12311. metaphysical implications of fractals and who may actually be talking about
  12312. these very things. (I don't know for sure because I don't subscribe to that
  12313. list.)
  12314.  
  12315. Damien M. Jones   \\
  12316. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  12317.                     \\  http://www.fractalus.com/
  12318.  
  12319. Please do not post my e-mail address on a web site or
  12320. in a newsgroup.  Thank you.
  12321.  
  12322. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12323. Post Message:   fractint@lists.xmission.com
  12324. Get Commands:   majordomo@lists.xmission.com "help"
  12325. Administrator:  twegner@phoenix.net
  12326. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12327.  
  12328.  
  12329. -------------------------------------------------------------------------------
  12330.  
  12331. From: Kerry Mitchell <lkmitch@primenet.com>
  12332. Subject: Re: (fractint) Fractint- Metaphor
  12333. Date: 18 Feb 1999 19:48:29 -0700 (MST)
  12334.  
  12335. On Fri, 19 Feb 1999, narada wrote:
  12336.  
  12337. > Is not half the attraction of fractals the beauty of their nature, and the
  12338. > insights into the structure of reality that they can give us??? (I do
  12339. > realise that not all images generated with Fractint are 'True Fractals' for
  12340. > a number of reasons including computational quirks, but even so these are
  12341. > interesting for themselves too, and not 'merely' esthetic manipulations by
  12342. > the 'artist'.)
  12343.  
  12344. Nothing that we can create/render on our computer systems is a "true
  12345. fractal".  They all suffer from discretization of continuous shapes and
  12346. all use false color.  There is no "real" color to the Mandelbrot set, and
  12347. rendering at 1024 x 768 or 1600 x 1200 is still literally nothing at all
  12348. compared to the infinite detail of the set.  However, like a good
  12349. engineer, I will admit that we can get "close enough".  Just because we
  12350. can't compute pi exactly doesn't keep us from using circles.
  12351.  
  12352. More pragmatically, as Damien mentioned, there are many coloring
  12353. techniques that don't change the structure.  In fact, many of the schemes
  12354. that I use and develop are successful because they highlight structures
  12355. that aren't normally seen when using only an escape-time coloring.  Even
  12356. that is artificial--the only true distinction is whether the orbit *ever*
  12357. diverges, not if it diverges beyond a radius of 2 in 17 iterations.
  12358.  
  12359. Anyway, I think there is plenty of room for purists to use alternative
  12360. coloring schemes without feeling that they're "selling out" to pure
  12361. aesthetics.
  12362.  
  12363. Kerry
  12364.  
  12365. Kerry Mitchell
  12366. lkmitch@primenet.com    http://www.primenet.com/~lkmitch/
  12367.  
  12368.  
  12369.  
  12370. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12371. Post Message:   fractint@lists.xmission.com
  12372. Get Commands:   majordomo@lists.xmission.com "help"
  12373. Administrator:  twegner@phoenix.net
  12374. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12375.  
  12376.  
  12377. -------------------------------------------------------------------------------
  12378.  
  12379. From: Damascena@aol.com
  12380. Subject: Re: (fractint) Fractint- Metaphor
  12381. Date: 18 Feb 1999 21:58:13 EST
  12382.  
  12383. In a message dated 2/18/99 6:32:48 PM Mountain Standard Time,
  12384. kchildre@uccs.jpl.nasa.gov writes:
  12385.  
  12386. >  what reality is there in any
  12387. >  given minibrot?
  12388.  
  12389. To me the self-similarity principle represents something crucial about the
  12390. universe-at-large -- wherever we go, there we are :) -- different shapes,
  12391. different sizes, warped or symmetrical, varying environments -- but the Force
  12392. (for lack of a better word, thank you Star Wars!) is.....well, it just is.
  12393. There, here, in the center of the image and all over the place around the
  12394. edges -- visibility limited only by zooming power. Soppy, I know, but
  12395. meaningful.......
  12396.  
  12397. Dama
  12398.  
  12399. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12400. Post Message:   fractint@lists.xmission.com
  12401. Get Commands:   majordomo@lists.xmission.com "help"
  12402. Administrator:  twegner@phoenix.net
  12403. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12404.  
  12405.  
  12406. -------------------------------------------------------------------------------
  12407.  
  12408. From: "Nature Leseul" <nleseul@zurich.crosswinds.net>
  12409. Subject: Re: (fractint) Fractint- Metaphor
  12410. Date: 18 Feb 1999 21:50:58 -0600
  12411.  
  12412. <<Sure, there are formulas that can mimick things we find in nature such
  12413. as mountains, trees, plants, etc.  But what reality is there in any
  12414. given minibrot?>>
  12415.  
  12416.   _Chaos_ (I don't know the author offhand; I'll look it up if someone wants
  12417. to know) mentions an instance where the atoms in a substance on the
  12418. threshold between solid and liquid formed a perfect M-set. :-P
  12419.  
  12420. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  12421. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  12422. i!i!                             Nature Leseul
  12423. i!i!
  12424. i!i! "I wil play you some Mozart, if you like, which wil onlyi!i!
  12425. i!i!  make you weep, but my Don Juan, Christine, burns,  i!i!
  12426. i!i!  and yet he is not struck by fire from Heaven... You    i!i!
  12427. i!i!  see, Christine, there is some music that is so terriblei!i!
  12428. i!i!  that it consumes all who approach it."                      i!i!
  12429. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  12430. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  12431.  
  12432.  
  12433.  
  12434. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12435. Post Message:   fractint@lists.xmission.com
  12436. Get Commands:   majordomo@lists.xmission.com "help"
  12437. Administrator:  twegner@phoenix.net
  12438. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12439.  
  12440.  
  12441. -------------------------------------------------------------------------------
  12442.  
  12443. From: "narada" <narada@hermes.net.au>
  12444. Subject: (fractint) Re:Metaphor
  12445. Date: 19 Feb 1999 15:08:43 +1100
  12446.  
  12447. My understanding re colouring schemes generally, (Im sure there are
  12448. exceptions) is that although the boundary at which the color changes is
  12449. determined by the artist, each boundary represents a contour of some sort. I
  12450. think of the fractal itself as a quasi 3 dimensional structure which is
  12451. modeled by a 2 dimensional map on which the 'depth' is indicated by selected
  12452. contours.
  12453.  
  12454. Is this not so?
  12455.  
  12456. If so then most of the colouring options in fractint merely change the
  12457. particular contour, or change the nature of what that boundary represents in
  12458. mathematical terms. This is very different from mixing formulas or other
  12459. images together.
  12460.  
  12461. As a separate question: has anyone considered that each formula that will
  12462. generate a fractal is part of the set of all possible formulas that generate
  12463. fractals, and that the structure of this set may itself be fractaline?
  12464.  
  12465. Best Wishes All Ways
  12466. N
  12467.  
  12468.  
  12469. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12470. Post Message:   fractint@lists.xmission.com
  12471. Get Commands:   majordomo@lists.xmission.com "help"
  12472. Administrator:  twegner@phoenix.net
  12473. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12474.  
  12475.  
  12476. -------------------------------------------------------------------------------
  12477.  
  12478. From: Damascena@aol.com
  12479. Subject: Re: (fractint) Fractint- Metaphor
  12480. Date: 18 Feb 1999 23:13:12 EST
  12481.  
  12482. In a message dated 2/18/99 8:55:35 PM Mountain Standard Time,
  12483. nleseul@zurich.crosswinds.net writes:
  12484.  
  12485. >   _Chaos_ (I don't know the author offhand; I'll look it up if someone wants
  12486. >  to know) mentions an instance where the atoms in a substance on the
  12487. >  threshold between solid and liquid formed a perfect M-set.
  12488.  
  12489. I would very much like to have that reference. TIA,
  12490. Dama
  12491.  
  12492. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12493. Post Message:   fractint@lists.xmission.com
  12494. Get Commands:   majordomo@lists.xmission.com "help"
  12495. Administrator:  twegner@phoenix.net
  12496. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12497.  
  12498.  
  12499. -------------------------------------------------------------------------------
  12500.  
  12501. From: "Leon Duych" <leon_d@email.msn.com>
  12502. Subject: Re: (fractint) Re:Metaphor
  12503. Date: 18 Feb 1999 20:31:23 -0800
  12504.  
  12505. Each point can be thought of as having a rate of decelleration/accelleration
  12506. towards/from a boundary.  For graphic purposes it is convenient (and
  12507. beautiful!) to color-code these rates.  The choice of color-code is as
  12508. thoughroughly SIGNIFICANT as it is ARBITRARY (the arbitrary part being where
  12509. the "artist" steps in).
  12510.  
  12511. -----Original Message-----
  12512.  
  12513.  
  12514. >My understanding re colouring schemes generally, (Im sure there are
  12515. >exceptions) is that although the boundary at which the color changes is
  12516. >determined by the artist, each boundary represents a contour of some sort.
  12517. I
  12518. >think of the fractal itself as a quasi 3 dimensional structure which is
  12519. >modeled by a 2 dimensional map on which the 'depth' is indicated by
  12520. selected
  12521. >contours.
  12522. >
  12523. >Is this not so?
  12524. >
  12525. >If so then most of the colouring options in fractint merely change the
  12526. >particular contour, or change the nature of what that boundary represents
  12527. in
  12528. >mathematical terms. This is very different from mixing formulas or other
  12529. >images together.
  12530. >
  12531. >As a separate question: has anyone considered that each formula that will
  12532. >generate a fractal is part of the set of all possible formulas that
  12533. generate
  12534. >fractals, and that the structure of this set may itself be fractaline?
  12535. >
  12536. >Best Wishes All Ways
  12537. >N
  12538. >
  12539. >
  12540. >--------------------------------------------------------------
  12541. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  12542. >Post Message:   fractint@lists.xmission.com
  12543. >Get Commands:   majordomo@lists.xmission.com "help"
  12544. >Administrator:  twegner@phoenix.net
  12545. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12546.  
  12547.  
  12548.  
  12549.  
  12550. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12551. Post Message:   fractint@lists.xmission.com
  12552. Get Commands:   majordomo@lists.xmission.com "help"
  12553. Administrator:  twegner@phoenix.net
  12554. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12555.  
  12556.  
  12557. -------------------------------------------------------------------------------
  12558.  
  12559. From: aq936@freenet.carleton.ca (Michael Traynor)
  12560. Subject: Re: (fractint) Fractint- Metaphor
  12561. Date: 18 Feb 1999 23:46:36 -0500 (EST)
  12562.  
  12563. Ken writes:
  12564.  
  12565. >I suppose it may boil down to the individual's philosophy when they are
  12566. >creating images.  I go for what pleases me visually.  How that is
  12567. >achieved is not important to me.  If one wants purer images, then one
  12568. >might not use combinations of layers, or transformations, that
  12569. >manipulate the "pure" image from any given formula.
  12570. >What insight into reality do the Mandelbrot Set or Julia Sets really
  12571. >give?
  12572. ...
  12573. >I think the beauty of fractals, at least for me, is the visual impact.
  12574. >I rarely see, or interpret, any relation to reality in any given image.
  12575. >Though, I suppose I do try to do this in a sense by trying to give a
  12576. >name to a particular image.
  12577.  
  12578. I find in some fractals the experience of awe that I get under a starlit
  12579. sky or in the presence of an ice storm.  Being led down into infinity
  12580. in a spiral of increasing complexity beyond what one can truly understand, but
  12581. that can be felt by taking part of the journey is something that I don't
  12582. find in most after processed images.  Much post processing distances the
  12583. viewer from the mathematical processes that embody the infinite.  Of
  12584. course, the computer and its screen are proxies too, but are necessary. 
  12585. The more you layer on the more distance there is.  An unprocessed image is
  12586. closer to the 'real' thing than a processed one is, as standing under a
  12587. starlit sky is compared to any photo.
  12588.  
  12589. All that said, I like UF and will register it, but the layering and
  12590. other effects touch something different in me than the less polished, but
  12591. more direct fractint images do.
  12592.  
  12593. Incidently, I find fairly frequently that I prefer some of the individual
  12594. layers more interesting than the full UF image.  Must be that
  12595. unreconstructed fractinter in me.
  12596.  
  12597. --
  12598. Mike Traynor
  12599.  
  12600. People who like this sort of thing will find this the sort of thing they like.
  12601.     Abraham Lincoln
  12602.  
  12603. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12604. Post Message:   fractint@lists.xmission.com
  12605. Get Commands:   majordomo@lists.xmission.com "help"
  12606. Administrator:  twegner@phoenix.net
  12607. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12608.  
  12609.  
  12610. -------------------------------------------------------------------------------
  12611.  
  12612. From: Ian Kaplan <ijk@force.stwing.upenn.edu>
  12613. Subject: Re: (fractint) Fractint- Metaphor
  12614. Date: 18 Feb 1999 23:49:40 -0500 (EST)
  12615.  
  12616. >   _Chaos_ (I don't know the author offhand; I'll look it up if someone wants
  12617. > to know) mentions an instance where the atoms in a substance on the
  12618. > threshold between solid and liquid formed a perfect M-set. :-P
  12619.  
  12620. _Chaos_ is by James Gleick. It's a nice book, although I don't think very
  12621. much in it would be new to people on this list; it's a popularization. I
  12622. don't recall the reference, though. Were the atoms themselves actually in
  12623. an M-set pattern, and not merely some mathematical description of their
  12624. states? That would surprise me a bit, too.
  12625.  
  12626.  
  12627. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12628. Post Message:   fractint@lists.xmission.com
  12629. Get Commands:   majordomo@lists.xmission.com "help"
  12630. Administrator:  twegner@phoenix.net
  12631. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12632.  
  12633.  
  12634. -------------------------------------------------------------------------------
  12635.  
  12636. From: "Leon Duych" <leon_d@email.msn.com>
  12637. Subject: (fractint) re: "Select Video Mode"
  12638. Date: 18 Feb 1999 21:56:34 -0800
  12639.  
  12640. Hi Folks!
  12641.  
  12642. Just installed a lovely, spanking new 32MG AGP Number Nine "Revolution IV"
  12643. graphics card which can do everything but wipe your butt.
  12644.  
  12645. But:
  12646. For hi-res Fractint "Select Video Mode" choices all hell breaks loose.
  12647. Since Number Nine technology-based choices are not represented in the
  12648. "Select Video Mode" list, I'm wondering if someone out there has knowledge
  12649. of any compatible setting(s).
  12650.  
  12651. Leon Duych
  12652. leon_d@msn.com
  12653.  
  12654.  
  12655.  
  12656.  
  12657.  
  12658. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12659. Post Message:   fractint@lists.xmission.com
  12660. Get Commands:   majordomo@lists.xmission.com "help"
  12661. Administrator:  twegner@phoenix.net
  12662. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12663.  
  12664.  
  12665. -------------------------------------------------------------------------------
  12666.  
  12667. From: "narada" <narada@hermes.net.au>
  12668. Subject: Re: (fractint) Fractint- Metaphor
  12669. Date: 19 Feb 1999 20:27:27 +1100
  12670.  
  12671.  
  12672.  
  12673. > - 'Layering' being one of its main features means that the end result
  12674. > - you are looking at is often not actually a fractal anymore.
  12675. >
  12676. >That depends entirely on the person creating the image. In fact, I would
  12677. >suggest that almost all of the images I have created with Ultra Fractal do
  12678. >in fact keep the fractal nature, since despite being multiple layers, they
  12679. >are the same location and fractal in each layer. Thus the difference is in
  12680. >the combined coloring algorithm.
  12681.  
  12682. Yes, as I said, if one tries one can keep the purity of the structure and
  12683. even reveal it better with the right techniques, however few of the works I
  12684. have seen on the web seem to consider this. I must add that I have been
  12685. impressed by
  12686. the glossy finish that is achieved and the shear beauty of the effects, and
  12687. will continue to explore it myself. I was just surprised that no one had
  12688. mentioned this consideration. See my post above regards 'structure' (is that
  12689. the right word) and colouring, of iterated algorythm produced patterns.
  12690.  
  12691. >As I've demonstrated by posting a parameter and formula file to this list
  12692. >that does layering and true color in FractInt, this is not a technique that
  12693. >only Ultra Fractal can use. This is a general technique. And what of many
  12694. >PHC fractals, that combine two fractals nearly at whim? These are just as
  12695. >un-fractal as you fear layering can be.
  12696.  
  12697.  
  12698. Indeed. Id be interested to see your examples though.
  12699.  
  12700. >Do we really want to get into a discussion of "what is a fractal"? This
  12701. >very nearly came up during the last contest, during the extensive
  12702. >"discussions" about post-processing. FractInt's formula parser is flexible
  12703. >enough to accomplish just about anything, if you are willing to work at it,
  12704. >so don't pin your definition on that. :-)
  12705.  
  12706. Indeed
  12707. ...
  12708. >The rest of your philosophical inquiry would no doubt be well-received on
  12709. >the philofractal list. :-) Not that I am suggesting you shouldn't post
  12710. >here, just pointing out that there are others who are pondering the
  12711. >metaphysical implications of fractals and who may actually be talking about
  12712. >these very things. (I don't know for sure because I don't subscribe to that
  12713. >list.)
  12714.  
  12715.  
  12716. Dumb question but where do I find this list?
  12717.  
  12718.  
  12719.  
  12720. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12721. Post Message:   fractint@lists.xmission.com
  12722. Get Commands:   majordomo@lists.xmission.com "help"
  12723. Administrator:  twegner@phoenix.net
  12724. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12725.  
  12726.  
  12727. -------------------------------------------------------------------------------
  12728.  
  12729. From: "Wayne Kiely" <kiely+co@riverland.net.au>
  12730. Subject: (fractint) Fractint Thanks (long)
  12731. Date: 19 Feb 1999 22:40:34 +1030
  12732.  
  12733. Tim and the rest of the Fractint contributors...
  12734.  
  12735. I, too, must add to the streams of thanks to you all.
  12736.  
  12737. I have been a Fractint user for years now, but only joined the mailing list reasonably recently and
  12738. have since found out how much I don't know about using the program!
  12739.  
  12740. I will admit to the initial learning curve for the program being a bit on the steep side, but I find
  12741. that to be the case with all 'fully fledged' software.  With any well developed fractal generator
  12742. the new user is bound to be a little overwhelmed due to the great variety of possible variations
  12743. available.  Nothing can change this.
  12744.  
  12745. My dilemma is that I am not fantastic at maths and I am not (yet at least) conversant with formula
  12746. writing to produce the wonderful images that Sylvie, Les and others turn out regularly.  I am
  12747. working on it, but it will take time and I don't have enough of it to get there quickly.
  12748.  
  12749. This is where UF, and possibly others, come into play.  I have only had the program for two days
  12750. now, but already I feel it affords me the POSSIBILITY of being able to produce the types of images
  12751. to which I aspire WITHOUT the corresponding time input.  (Thanks Frederik - you'll be getting my
  12752. $35.)  This is basically what Ray Montgomery was saying.
  12753.  
  12754. Having just said the above, Fractint has saved me years of my life too!  After reading some articles
  12755. by Pickover I tried to emulate his images using Basic in a few of its variations.  I can hear all of
  12756. the REAL programmers out there groaning, but it's all I had and my programming skills are about on
  12757. par with my maths, so not much point forking out for C++ or whatever.  I didn't get to his images,
  12758. but I produced fractals.  Firstly black and white only, but later I got to colour.
  12759.  
  12760. Trouble is, then I wanted to show people my work.  So I shelved out a fortune to Canon to get their
  12761. Laser Printer technical manuals, and wrote the routines to print raster graphics.  Having done all
  12762. that I then wanted to move on to colour printing too, but it all got too hard for a non programmer.
  12763. Then I discovered Fractint, and instead of spending my time writing bad Basic code I could produce
  12764. fractals by the thousands and even print them with no hassle.  What a relief!  Thanks again.
  12765.  
  12766. However I, too, feel that Fractint is approaching a crossroads.  It is where I was at years ago
  12767. trying to to do things with basic, only of course my efforts were trivial compared to the Fractint
  12768. programmers achievements.  GUI interfaces have been around long enough for even the DOS die-hards to
  12769. be a little familiar with by now, so that shouldn't put too many people off (but please keep the
  12770. keyboard shortcuts in there for those, like me, that prefer the keys to the mouse).  Surely it's
  12771. time to be able to write, copy, paste the formula; rename, move or even delete files etc. all from
  12772. the one package.  I know that this does not necessarily imply the Fractint has to go GUI, but
  12773. personally I don't see that it has much choice.
  12774.  
  12775. I agree entirely with your viewpoint on open source code.  Fractint is a testament to what can be
  12776. achieved by choosing this road.  This detracts in no way from Frederik's decision to charge a
  12777. nominal fee for his huge personal effort with UF.
  12778.  
  12779. Having benefited so much from all of your efforts, I feel it is time to help repay the debt and
  12780. assist Fractint to 'move on'.  Trouble is, as stated above, the maths, the programming skills and
  12781. the time are all lacking.
  12782.  
  12783. Perhaps if you let us all play for a year or two with Version 20, but you tell us what you'll use to
  12784. write the next version,  then when we tire of fractaling, those that are so inclined can start
  12785. honing their programming skills in the right direction and assist with some of the easy stuff.
  12786.  
  12787. Again, unending thanks and if I can assist, I will.
  12788.  
  12789. Wayne
  12790.  
  12791.  
  12792.  
  12793.  
  12794.  
  12795.  
  12796.  
  12797. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12798. Post Message:   fractint@lists.xmission.com
  12799. Get Commands:   majordomo@lists.xmission.com "help"
  12800. Administrator:  twegner@phoenix.net
  12801. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12802.  
  12803.  
  12804. -------------------------------------------------------------------------------
  12805.  
  12806. From: "Morgen H Bell" <morgenb@cobweb.net>
  12807. Subject: Re: (fractint) Fractint- Metaphor
  12808. Date: 19 Feb 1999 10:24:23 -0500
  12809.  
  12810.  
  12811. Narada wrote:
  12812.  
  12813. Wathcing the discussion about the relative virtues of Ultra Fractal etc, I
  12814. am surprised no one has mentioned a rather important difference to my way of
  12815. seeing things. 'Layering' being one of its main features means that the end
  12816. result you are looking at is often not actually a fractal anymore. It is a
  12817. fractal pattern manipulated by image editing tools. Sometimes this can be
  12818. used to reveal more clearly the actual structure of the fractal, but I think
  12819. that unless this is done deliberately, artistic concerns will tend to take
  12820. over, and the stucture will be somewhat distorted, if not totally messed up.
  12821.  
  12822. (...I've trimmed the rest)
  12823.  
  12824.     This makes sense to me.  I downloaded UF a couple of days ago, and I
  12825. can't decide what I think of it.  It feels like cheating, somehow.  It's too
  12826. easy to add lots of elaborate trimmings to a perfectly good fractal...it's a
  12827. little like putting cake frosting on a loaf of bread.
  12828.                                                     Morgen
  12829.  
  12830.  
  12831. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12832. Post Message:   fractint@lists.xmission.com
  12833. Get Commands:   majordomo@lists.xmission.com "help"
  12834. Administrator:  twegner@phoenix.net
  12835. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12836.  
  12837.  
  12838. -------------------------------------------------------------------------------
  12839.  
  12840. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  12841. Subject: Re: (fractint) Fractint- Metaphor
  12842. Date: 19 Feb 1999 07:57:28 -0800 (PST)
  12843.  
  12844.  
  12845. Morgan,
  12846.  
  12847. > Narada wrote:
  12848. > Wathcing the discussion about the relative virtues of Ultra Fractal etc, I
  12849. > am surprised no one has mentioned a rather important difference to my way of
  12850. > seeing things. 'Layering' being one of its main features means that the end
  12851. > result you are looking at is often not actually a fractal anymore. It is a
  12852. > fractal pattern manipulated by image editing tools. Sometimes this can be
  12853. > used to reveal more clearly the actual structure of the fractal, but I think
  12854. > that unless this is done deliberately, artistic concerns will tend to take
  12855. > over, and the stucture will be somewhat distorted, if not totally messed up.
  12856. > (...I've trimmed the rest)
  12857. >     This makes sense to me.  I downloaded UF a couple of days ago, and I
  12858. > can't decide what I think of it.  It feels like cheating, somehow.  It's too
  12859. > easy to add lots of elaborate trimmings to a perfectly good fractal...it's a
  12860. > little like putting cake frosting on a loaf of bread.
  12861.  
  12862. I have to admit to being puzzled by this assessment.  What do you mean
  12863. by cheating and why would UF be cheating?  As Damien has pointed out,
  12864. things such as true color and layering can be done with Fractint, albeit
  12865. with more effort maybe.  So, what would make UF cheating when compared
  12866. to Fractint?
  12867.  
  12868. Most, not all certainly, but most of the images that people put on their
  12869. web sites are very visually (at least to me) pleasing images.  While
  12870. many are not exactly to my personal likes, I can see the effort that was
  12871. made to make the images as good as possible.  Are these images a
  12872. different class (for lack of a better word) from those that you like to
  12873. create?
  12874.  
  12875. Many of the FotD images, for example, I find are interesting from the
  12876. standpoint of the shapes and designs that they create.  However, I don't
  12877. find many of them visually pleasing.  That isn't a criticism, it's just
  12878. my reaction.
  12879.  
  12880.  
  12881. Ken...
  12882.  
  12883.  
  12884.  
  12885.  
  12886. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12887. Post Message:   fractint@lists.xmission.com
  12888. Get Commands:   majordomo@lists.xmission.com "help"
  12889. Administrator:  twegner@phoenix.net
  12890. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12891.  
  12892.  
  12893. -------------------------------------------------------------------------------
  12894.  
  12895. From: Jim Muth <jamth@mindspring.com>
  12896. Subject: (fractint) Test -- am I still getting through?
  12897. Date: 19 Feb 1999 11:36:35 -0500 (EST)
  12898.  
  12899. I've attempted to post several messages to the Fractint list 
  12900. within the past 24 hours.  None of my messages have been 
  12901. returned to me from the list, though other messages are coming 
  12902. through as usual.  This is just a test to see if it was just a 
  12903. fluke or if a problem exists.
  12904.  
  12905. Jim Muth
  12906. jamth@mindspring.com
  12907.  
  12908.  
  12909. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12910. Post Message:   fractint@lists.xmission.com
  12911. Get Commands:   majordomo@lists.xmission.com "help"
  12912. Administrator:  twegner@phoenix.net
  12913. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12914.  
  12915.  
  12916. -------------------------------------------------------------------------------
  12917.  
  12918. From: wdecker@csc.com
  12919. Subject: (fractint) Two pars on a theme
  12920. Date: 19 Feb 1999 12:28:09 -0500
  12921.  
  12922. These were found at about the same time as I found the Visitor image. Both
  12923. seem to have the same sense of mechanical objects under extreme stress.
  12924.  
  12925. Bill Decker
  12926.  
  12927. vault-of-faith     { ;  (c) Bill Decker Jan 31, 1999 t=  0:01:27.39
  12928.                      ;  on P150 800x600
  12929.   reset=1960 type=formula formulafile=0bill.frm
  12930.   formulaname=bills-rotate3 function=cabs/acos/sinh passes=1
  12931.   center-mag=-3.17349/-0.288918/0.09138941/1/-90 params=2/3/-1/1/1/100
  12932.   logmode=fly potential=255/100/0 rseed=-2436
  12933.   colors=000XbM<26>BPBAOAAOAAOA<20>6D65C56C5<2>BD6CE6DF6EG7GH8<13>__I``J``\
  12934.   J<27>k`ek_ejZd<25>T8PS6OS6O<32>hQThRTiSTiTTjUU<30>yxxzzzzzy<29>llWkkUkkU\
  12935.   <17>YbN
  12936.   }
  12937.  
  12938. flawed-lens        { ;  (c) Bill Decker Jan 31, 1999 t=  0:01:21.02
  12939.                      ;  on P150 800x600
  12940.   reset=1960 type=formula formulafile=0bill.frm
  12941.   formulaname=bills-rotate3 function=cabs/tan/cosh passes=1
  12942.   center-mag=-0.0931703/-5.35e-006/0.06165639/1/-90
  12943.   params=2/3/-1/-1/1/100 logmode=fly potential=255/100/0 rseed=-2436
  12944.   colors=000aeP<32>BPBAOAAOAAOA<18>6E66E66D65C56C58C5<2>CE6DF6EG7GH8<13>__\
  12945.   I``J``J<25>j`ck`dk`ek_ejZdiYc<24>T8PS6OS6O<31>gPThQThRTiSTiTT<31>yxxzzzz\
  12946.   zy<29>llWkkUkkU<11>beP
  12947.   }
  12948.  
  12949. FRM:bills-rotate3 {
  12950.   a = real(p1), b = imag(p1)
  12951.   c = real(p2), d = imag(p2)
  12952.   e = real(p3), f = imag(p3)
  12953.   w = pixel
  12954.   x = pixel
  12955.   y = pixel
  12956.   z = pixel
  12957.   :
  12958.   w = fn1(x+y)^a + w
  12959.   x = fn2(y+w)^b + x
  12960.   y = fn3(w+x)^c + y
  12961.   z = (w^2 - (x^2) * (y^2))*d + z*e
  12962.   |z| < f
  12963. }
  12964.  
  12965.  
  12966.  
  12967. Thanks for using Fractint, The Fractals and Fractint Discussion List
  12968. Post Message:   fractint@lists.xmission.com
  12969. Get Commands:   majordomo@lists.xmission.com "help"
  12970. Administrator:  twegner@phoenix.net
  12971. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  12972.  
  12973.  
  12974. -------------------------------------------------------------------------------
  12975.  
  12976. From: "Damien M. Jones" <dmj@fractalus.com>
  12977. Subject: Re: (fractint) Metaphor
  12978. Date: 19 Feb 1999 11:34:28 -0600
  12979.  
  12980. Narada,
  12981.  
  12982.  - My understanding re colouring schemes generally, (Im sure there are
  12983.  - exceptions) is that although the boundary at which the color changes
  12984.  - is determined by the artist, each boundary represents a contour of
  12985.  - some sort.
  12986.  
  12987. Clarification: some coloring algorithms are discrete, and produce regions
  12988. of flat color (like iteration coloring). Many other algorithms are
  12989. continuous and produce totally smooth gradations in color (in software that
  12990. supports it). Algorithms in this category are decomposition, continuous
  12991. potential, various statistical methods, etc. In these algorithms there may
  12992. not be "boundaries" where the colors change, except those imposed by your
  12993. fractal software's inability to render smooth color. It's important to note
  12994. the difference between the limitation of the software (since at some point,
  12995. all shading is discrete) and the algorithm (which, if it's discrete, has a
  12996. fixed upper limit on how much it can be smoothed).
  12997.  
  12998.  - I think of the fractal itself as a quasi 3 dimensional structure
  12999.  - which is modeled by a 2 dimensional map on which the 'depth' is
  13000.  - indicated by selected contours.
  13001.  -
  13002.  - Is this not so?
  13003.  
  13004. In essence you are thinking of a 2D fractal, where the coloring algorithm
  13005. (in your case, you're probably thinking of iteration coloring) produces a
  13006. height value, thus creating a 3D surface--much as you would see from the 3D
  13007. transform in FractInt. This is certainly one way of looking at it.
  13008.  
  13009.  - If so then most of the colouring options in fractint merely change the
  13010.  - particular contour, or change the nature of what that boundary
  13011.  - represents in mathematical terms. This is very different from mixing
  13012.  - formulas or other images together.
  13013.  
  13014. Of course it is--but if FractInt is your only guide, then you really don't
  13015. understand just what sort of coloring options Ultra Fractal provides.
  13016. FractInt's selection of coloring algorithms is fairly limited; that's why I
  13017. wrote my coloring formula collection in the first place, so that I could
  13018. experiment with new ways of coloring the old fractals.
  13019.  
  13020. You can see copious examples of Mandelbrot and Nova (and a few other)
  13021. fractals with new coloring algorithms, created in *FractInt*, in galleries
  13022. 5-14 of my web site. A few of these were done by compositing several
  13023. FractInt images together, but each image in the composite is the same
  13024. fractal, with only a slightly different coloring algorithm (or different
  13025. parameters to the same coloring algorithm) applied. Most of the rest are a
  13026. single image, with no compositing. I want to emphasize that most of these
  13027. are classical fractal shapes, but with new algorithms.
  13028.  
  13029. The images I have produced with Ultra Fractal have a much wider range of
  13030. coloring algorithms. I cannot emphasize enough, if FractInt is all your
  13031. experience, I can see where you might think that layering means slapping
  13032. any two fractals together. Yes, you can do this with Ultra Fractal, but in
  13033. my opinion the best fractal images do not. Instead, they select from the
  13034. wide variety of coloring algorithms and use them to reinforce elements of
  13035. the fractal structure. I submit for your consideration these images:
  13036.  
  13037.     http://www.fractalus.com/lure.jpg
  13038.     http://www.fractalus.com/spade.jpg
  13039.  
  13040. (These are new.) Both of these images are composed of more than one layer,
  13041. yet the fractal in each layer is the same. The combination of different
  13042. coloring algorithms produces a final result which is much richer than any
  13043. of the single layers alone. Had I only the coloring methods from FractInt
  13044. to work with, layering would be nearly useless, but my options in UF are
  13045. vastly expanded!
  13046.  
  13047.  - Yes, as I said, if one tries one can keep the purity of the structure
  13048.  - and even reveal it better with the right techniques, however few of
  13049.  - the works I have seen on the web seem to consider this.
  13050.  
  13051. Care to name names? :-) As I think of most of the really good images posted
  13052. to the Ultra Fractal mailing list, surprisingly few of them take the
  13053. liberties with layering that you find so distressing. In fact, that so many
  13054. great images have been posted there offers an excellent opportunity to pick
  13055. those images apart and see how they work.
  13056.  
  13057.  - >As I've demonstrated by posting a parameter and formula file to this
  13058.  - >list that does layering and true color in FractInt, this is not a
  13059.  - >technique that only Ultra Fractal can use.
  13060.  -
  13061.  - Indeed. Id be interested to see your examples though.
  13062.  
  13063. Well, I posted them to this list very recently. The first batch can be
  13064. found in Les St. Clair's parameter archive for last month; the latest was a
  13065. conversion of the image "Rich", which you can see in its original Ultra
  13066. Fractal version here:
  13067.  
  13068.     http://www.fractalus.com/gallery15/pic03.htm
  13069.  
  13070. Les's parameter collection is here:
  13071.  
  13072.     http://ourworld.compuserve.com/homepages/Les_StClair/fml.htm
  13073.  
  13074. He was even nice enough to use one of my images (Gummi) as one of the index
  13075. images for January.
  13076.  
  13077.  - Dumb question but where do I find this list?
  13078.  
  13079. To subscribe, send a message containing "subscribe philofractal" to
  13080. majordomo@icd.com and you will be added to the list.
  13081.  
  13082. Damien M. Jones   \\
  13083. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  13084.                     \\  http://www.fractalus.com/
  13085.  
  13086. Please do not post my e-mail address on a web site or
  13087. in a newsgroup.  Thank you.
  13088.  
  13089. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13090. Post Message:   fractint@lists.xmission.com
  13091. Get Commands:   majordomo@lists.xmission.com "help"
  13092. Administrator:  twegner@phoenix.net
  13093. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13094.  
  13095.  
  13096. -------------------------------------------------------------------------------
  13097.  
  13098. From: "Damien M. Jones" <dmj@fractalus.com>
  13099. Subject: Re: (fractint) Re:Metaphor
  13100. Date: 19 Feb 1999 11:13:48 -0600
  13101.  
  13102. Leon,
  13103.  
  13104.  - Each point can be thought of as having a rate of
  13105.  - decelleration/accelleration towards/from a boundary.  For graphic
  13106.  - purposes it is convenient (and beautiful!) to color-code these rates.
  13107.  
  13108. That is what the iteration-count algorithm approximates. More precise
  13109. values (that are continuous) can be obtained from Linas Vepstas' formula.
  13110. Even so, this conceptualization is only appropriate for this algorithm (the
  13111. main one in FractInt). When your coloring options expand, other ways of
  13112. looking at the iteration process are helpful.
  13113.  
  13114. Damien M. Jones   \\
  13115. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  13116.                     \\  http://www.fractalus.com/
  13117.  
  13118. Please do not post my e-mail address on a web site or
  13119. in a newsgroup.  Thank you.
  13120.  
  13121. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13122. Post Message:   fractint@lists.xmission.com
  13123. Get Commands:   majordomo@lists.xmission.com "help"
  13124. Administrator:  twegner@phoenix.net
  13125. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13126.  
  13127.  
  13128. -------------------------------------------------------------------------------
  13129.  
  13130. From: Phil McRevis <legalize@xmission.com>
  13131. Subject: Re: (fractint) Re:Metaphor 
  13132. Date: 19 Feb 1999 10:56:25 -0700
  13133.  
  13134.  
  13135. In article ,
  13136.     "narada" <narada@hermes.net.au>  writes:
  13137. > My understanding re colouring schemes generally, (Im sure there are
  13138. > exceptions) is that although the boundary at which the color changes is
  13139. > determined by the artist, each boundary represents a contour of some sort. I
  13140. > think of the fractal itself as a quasi 3 dimensional structure which is
  13141. > modeled by a 2 dimensional map on which the 'depth' is indicated by selected
  13142. > contours.
  13143.  
  13144. You can think of M-set (and many other -- but not all -- fractal
  13145. images) as visualizations of a 2D scalar field.  Does that help?
  13146. Probably not :-).
  13147. --
  13148. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  13149.     ``Ain't it funny that they all fire the pistol,     
  13150.       at the wrong end of the race?''--PDBT     
  13151. legalize@xmission.com    <http://www.eden.com/~thewho>
  13152.  
  13153. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13154. Post Message:   fractint@lists.xmission.com
  13155. Get Commands:   majordomo@lists.xmission.com "help"
  13156. Administrator:  twegner@phoenix.net
  13157. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13158.  
  13159.  
  13160. -------------------------------------------------------------------------------
  13161.  
  13162. From: Phil McRevis <legalize@xmission.com>
  13163. Subject: Re: (fractint) re: "Select Video Mode" 
  13164. Date: 19 Feb 1999 10:59:52 -0700
  13165.  
  13166.  
  13167. In article ,
  13168.     "Leon Duych" <leon_d@email.msn.com>  writes:
  13169. > For hi-res Fractint "Select Video Mode" choices all hell breaks loose.
  13170. > Since Number Nine technology-based choices are not represented in the
  13171. > "Select Video Mode" list, I'm wondering if someone out there has knowledge
  13172. > of any compatible setting(s).
  13173.  
  13174. Any SVGA compatible video mode should work.  Or did you want something
  13175. other than that?
  13176. --
  13177. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  13178.     ``Ain't it funny that they all fire the pistol,     
  13179.       at the wrong end of the race?''--PDBT     
  13180. legalize@xmission.com    <http://www.eden.com/~thewho>
  13181.  
  13182. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13183. Post Message:   fractint@lists.xmission.com
  13184. Get Commands:   majordomo@lists.xmission.com "help"
  13185. Administrator:  twegner@phoenix.net
  13186. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13187.  
  13188.  
  13189. -------------------------------------------------------------------------------
  13190.  
  13191. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  13192. Subject: (fractint) re: "Select Video Mode"
  13193. Date: 19 Feb 1999 13:16:54 -0500
  13194.  
  13195. Hi Leon,
  13196.  
  13197. >> For hi-res Fractint "Select Video Mode" choices all hell breaks loose.=
  13198.  
  13199. >> Since Number Nine technology-based choices are not represented in the
  13200. >> "Select Video Mode" list, I'm wondering if someone out there has
  13201. >> knowledge of any compatible setting(s).
  13202.  
  13203.   Download the following file from my web site:
  13204.  
  13205.    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.zip
  13206.  
  13207.   Run vesa2cfg.exe, email me the file it will create (qpv.cfg) and I'll
  13208. write the entries for your Fractint.cfg file.
  13209.  
  13210.   Cheers,
  13211.  
  13212.         - Sylvie
  13213.  
  13214.  E-mail:
  13215.    Sylvie_Gallet@CompuServe.com
  13216.  Visit my exhibit at Museum of Computer Art:
  13217.    http://www.dorsai.org/~moca/
  13218.  My Fractal Galleries:
  13219.    http://spanky.triumf.ca/www/fractint/sylvie/gallet.html
  13220.    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  13221.  
  13222. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13223. Post Message:   fractint@lists.xmission.com
  13224. Get Commands:   majordomo@lists.xmission.com "help"
  13225. Administrator:  twegner@phoenix.net
  13226. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13227.  
  13228.  
  13229. -------------------------------------------------------------------------------
  13230.  
  13231. From: dilvie <dilvie@kosmic.org>
  13232. Subject: Re: (fractint) re: "Select Video Mode"
  13233. Date: 19 Feb 1999 09:03:14 -1000
  13234.  
  13235.  
  13236.  
  13237. Sylvie Gallet wrote:
  13238. > Hi Leon,
  13239. > >> For hi-res Fractint "Select Video Mode" choices all hell breaks loose.
  13240. > >> Since Number Nine technology-based choices are not represented in the
  13241. > >> "Select Video Mode" list, I'm wondering if someone out there has
  13242. > >> knowledge of any compatible setting(s).
  13243. >   Download the following file from my web site:
  13244. >    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.zip
  13245. >   Run vesa2cfg.exe, email me the file it will create (qpv.cfg) and I'll
  13246. > write the entries for your Fractint.cfg file.
  13247.  
  13248. Isn't there an output to disk option that lets you select any
  13249. resolution?
  13250.  
  13251. - Eric
  13252.  
  13253. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13254. Post Message:   fractint@lists.xmission.com
  13255. Get Commands:   majordomo@lists.xmission.com "help"
  13256. Administrator:  twegner@phoenix.net
  13257. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13258.  
  13259.  
  13260. -------------------------------------------------------------------------------
  13261.  
  13262. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  13263. Subject: Re: (fractint) re: "Select Video Mode"
  13264. Date: 19 Feb 1999 11:07:52 -0800 (PST)
  13265.  
  13266.  
  13267. Eric,
  13268.  
  13269. > > Hi Leon,
  13270. > > 
  13271. > > >> For hi-res Fractint "Select Video Mode" choices all hell breaks loose.
  13272. > > >> Since Number Nine technology-based choices are not represented in the
  13273. > > >> "Select Video Mode" list, I'm wondering if someone out there has
  13274. > > >> knowledge of any compatible setting(s).
  13275. > > 
  13276. > >   Download the following file from my web site:
  13277. > > 
  13278. > >    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.zip
  13279. > > 
  13280. > >   Run vesa2cfg.exe, email me the file it will create (qpv.cfg) and I'll
  13281. > > write the entries for your Fractint.cfg file.
  13282. > Isn't there an output to disk option that lets you select any
  13283. > resolution?
  13284.  
  13285. Yes, but that doesn't let you view the image on your monitor at a high
  13286. resolution.
  13287.  
  13288.  
  13289. Ken...
  13290.  
  13291.  
  13292.  
  13293.  
  13294.  
  13295.  
  13296. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13297. Post Message:   fractint@lists.xmission.com
  13298. Get Commands:   majordomo@lists.xmission.com "help"
  13299. Administrator:  twegner@phoenix.net
  13300. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13301.  
  13302.  
  13303. -------------------------------------------------------------------------------
  13304.  
  13305. From: "Leon Duych" <leon_d@email.msn.com>
  13306. Subject: Re: (fractint) re: "Select Video Mode"
  13307. Date: 19 Feb 1999 11:10:22 -0800
  13308.  
  13309. Eric and Sylvie,
  13310.  
  13311. First Sylvie:
  13312. Thank you very much for your kind offer. I'll get right on it!!!
  13313.  
  13314. Now for Eric:
  13315. If you say so...
  13316. I am a first-time user of Fractint with little (translation: NO) experience.
  13317. If you could spell out what you mean, I would be much obliged.
  13318.  
  13319. Leon
  13320.  
  13321.  
  13322. -----Original Message-----
  13323.  
  13324.  
  13325. >
  13326. >
  13327. >Sylvie Gallet wrote:
  13328. >>
  13329. >> Hi Leon,
  13330. >>
  13331. >> >> For hi-res Fractint "Select Video Mode" choices all hell breaks loose.
  13332. >> >> Since Number Nine technology-based choices are not represented in the
  13333. >> >> "Select Video Mode" list, I'm wondering if someone out there has
  13334. >> >> knowledge of any compatible setting(s).
  13335. >>
  13336. >>   Download the following file from my web site:
  13337. >>
  13338. >>    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.zip
  13339. >>
  13340. >>   Run vesa2cfg.exe, email me the file it will create (qpv.cfg) and I'll
  13341. >> write the entries for your Fractint.cfg file.
  13342. >
  13343. >Isn't there an output to disk option that lets you select any
  13344. >resolution?
  13345. >
  13346. >- Eric
  13347. >
  13348. >--------------------------------------------------------------
  13349. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  13350. >Post Message:   fractint@lists.xmission.com
  13351. >Get Commands:   majordomo@lists.xmission.com "help"
  13352. >Administrator:  twegner@phoenix.net
  13353. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13354.  
  13355.  
  13356.  
  13357.  
  13358. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13359. Post Message:   fractint@lists.xmission.com
  13360. Get Commands:   majordomo@lists.xmission.com "help"
  13361. Administrator:  twegner@phoenix.net
  13362. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13363.  
  13364.  
  13365. -------------------------------------------------------------------------------
  13366.  
  13367. From: dilvie <dilvie@kosmic.org>
  13368. Subject: Re: (fractint) re: "Select Video Mode"
  13369. Date: 19 Feb 1999 10:21:14 -1000
  13370.  
  13371.  
  13372.  
  13373. Leon Duych wrote:
  13374. > Eric and Sylvie,
  13375. > First Sylvie:
  13376. > Thank you very much for your kind offer. I'll get right on it!!!
  13377. > Now for Eric:
  13378. > If you say so...
  13379. > I am a first-time user of Fractint with little (translation: NO) experience.
  13380. > If you could spell out what you mean, I would be much obliged.
  13381.  
  13382. It's possible to explore your fractals in a lower resolution than you
  13383. need, and then output to disk at whatever resolution you require (via
  13384. the disk/ram video options), where you can view and edit in another
  13385. program (such as photoshop or psp).
  13386.  
  13387. - Eric
  13388.  
  13389. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13390. Post Message:   fractint@lists.xmission.com
  13391. Get Commands:   majordomo@lists.xmission.com "help"
  13392. Administrator:  twegner@phoenix.net
  13393. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13394.  
  13395.  
  13396. -------------------------------------------------------------------------------
  13397.  
  13398. From: Ray Montgomery <elmont@cdsnet.net>
  13399. Subject: (fractint) Re: Metaphor
  13400. Date: 19 Feb 1999 14:03:58 -0800
  13401.  
  13402.  
  13403.     Damascena,
  13404.  
  13405.     No such thing as 'soppy'.  What you say is honest and open and forthright.
  13406. That is 'good'.
  13407.  
  13408.                     Ray
  13409.  
  13410.  
  13411. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13412. Post Message:   fractint@lists.xmission.com
  13413. Get Commands:   majordomo@lists.xmission.com "help"
  13414. Administrator:  twegner@phoenix.net
  13415. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13416.  
  13417.  
  13418. -------------------------------------------------------------------------------
  13419.  
  13420. From: "Nature Leseul" <nleseul@zurich.crosswinds.net>
  13421. Subject: Re: (fractint) Fractint- Metaphor
  13422. Date: 19 Feb 1999 16:53:59 -0600
  13423.  
  13424. <<>   _Chaos_ (I don't know the author offhand; I'll look it up if someone
  13425. wants
  13426. > to know) mentions an instance where the atoms in a substance on the
  13427. > threshold between solid and liquid formed a perfect M-set. :-P
  13428. >
  13429.  
  13430. _Chaos_ is by James Gleick. It's a nice book, although I don't think very
  13431. much in it would be new to people on this list; it's a popularization. I
  13432. don't recall the reference, though. Were the atoms themselves actually in
  13433. an M-set pattern, and not merely some mathematical description of their
  13434. states? That would surprise me a bit, too.>>
  13435.  
  13436.   ::Flips through Chaos for an hour or so looking for the reference::
  13437.  
  13438.   Okay, 236. I was wrong; it's magnetization of of materials, not
  13439. liquid/solid transtions. Here's the quote:
  13440.  
  13441.   "Fractal basin boundaries addressed deep issues in theoretical physics.
  13442. Phase transitions were matters of thresholds, and [Heinz-Otto] Peitgen and
  13443. [Peter H.] Richter looked at one of the best-studied kinds of phase
  13444. transitions, magnetization and nonmagnetization in materials. Their pictures
  13445. of such boundaries displayed the peculiarly beautiful complexity that was
  13446. coming to seem so natural, cauliflower shapes with progressively more
  13447. tangled knobs and furrows. As they varied the parameters and increased their
  13448. magnification of details, one picture seemed more and more random, until
  13449. suddenly, unexpectedly, deep in the heart of a bewildering region, appeared
  13450. a familiar oblate form, studded with buds: the Mandelbrot set, every tendril
  13451. and every atom in place. It was another signpost of universality. 'Perhaps
  13452. we should believe in magic,' they wrote."
  13453.  
  13454. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  13455. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  13456. i!i!                             Nature Leseul
  13457. i!i!
  13458. i!i! "I wil play you some Mozart, if you like, which wil onlyi!i!
  13459. i!i!  make you weep, but my Don Juan, Christine, burns,  i!i!
  13460. i!i!  and yet he is not struck by fire from Heaven... You    i!i!
  13461. i!i!  see, Christine, there is some music that is so terriblei!i!
  13462. i!i!  that it consumes all who approach it."                      i!i!
  13463. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i
  13464. !i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!i!
  13465.  
  13466.  
  13467.  
  13468. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13469. Post Message:   fractint@lists.xmission.com
  13470. Get Commands:   majordomo@lists.xmission.com "help"
  13471. Administrator:  twegner@phoenix.net
  13472. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13473.  
  13474.  
  13475. -------------------------------------------------------------------------------
  13476.  
  13477. From: Damascena@aol.com
  13478. Subject: Re: (fractint) Re: Metaphor
  13479. Date: 19 Feb 1999 18:58:59 EST
  13480.  
  13481. In a message dated 2/19/99 2:54:56 PM Mountain Standard Time,
  13482. elmont@cdsnet.net writes:
  13483.  
  13484. > Damascena,
  13485. >  
  13486. >      No such thing as 'soppy'.  What you say is honest and open and forthright.
  13487. >  That is 'good'.
  13488. >  
  13489. >                      Ray
  13490.  
  13491. Ray --  Thank you! but -- I'm a writer. I know soppy when I see it, even if I
  13492. just wrote it myself. Sometimes it's the only way to say something without
  13493. being pretentious. (I leave pretention to the side of me that sometimes says,
  13494. "I'm a fractal artist....")
  13495.  
  13496. Dama
  13497.  
  13498. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13499. Post Message:   fractint@lists.xmission.com
  13500. Get Commands:   majordomo@lists.xmission.com "help"
  13501. Administrator:  twegner@phoenix.net
  13502. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13503.  
  13504.  
  13505. -------------------------------------------------------------------------------
  13506.  
  13507. From: "Mark Townsend" <marktown@netspace.net.au>
  13508. Subject: Re: (fractint) Fractint- Metaphor
  13509. Date: 20 Feb 1999 11:34:45 +1100
  13510.  
  13511. >  Okay, 236. I was wrong; it's magnetization of of materials, not
  13512. >liquid/solid transtions. Here's the quote:
  13513. >
  13514. >  "Fractal basin boundaries addressed deep issues in theoretical physics.
  13515. >Phase transitions were matters of thresholds, and [Heinz-Otto] Peitgen and
  13516. >[Peter H.] Richter looked at one of the best-studied kinds of phase
  13517. >transitions, magnetization and nonmagnetization in materials. Their
  13518. pictures
  13519. >of such boundaries displayed the peculiarly beautiful complexity that was
  13520. >coming to seem so natural, cauliflower shapes with progressively more
  13521. >tangled knobs and furrows. As they varied the parameters and increased
  13522. their
  13523. >magnification of details, one picture seemed more and more random, until
  13524. >suddenly, unexpectedly, deep in the heart of a bewildering region, appeared
  13525. >a familiar oblate form, studded with buds: the Mandelbrot set, every
  13526. tendril
  13527. >and every atom in place. It was another signpost of universality. 'Perhaps
  13528. >we should believe in magic,' they wrote."
  13529.  
  13530.  
  13531. And you can look at Fractint's "Magnet" fractals to see what they were
  13532. talking about.
  13533.  
  13534.  I saw an extract from BOF on the web recently that sort of made this thing
  13535. about finding the Mandelbrot set in fractals generated from other functions
  13536. sound rather mundane: "The reason for this is that the family of functions
  13537. f(z)=z*z+c captures the typical behavior of many high iterates of functions
  13538. near places where the derivative is zero..."
  13539.  
  13540. When I looked at the Magnet fractals before writing I noticed that as well
  13541. as the Mandelbrot version producing copies of the Mandelbrot set, the Julia
  13542. version produced copies of Julia sets--just like the formulas I posted the
  13543. other day. I wonder if that holds true for any formula in which the
  13544. Mandelbrot form appears.
  13545.  
  13546. Mark Townsend
  13547. marktown@netspace.net.au
  13548.  
  13549.  
  13550.  
  13551.  
  13552. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13553. Post Message:   fractint@lists.xmission.com
  13554. Get Commands:   majordomo@lists.xmission.com "help"
  13555. Administrator:  twegner@phoenix.net
  13556. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13557.  
  13558.  
  13559. -------------------------------------------------------------------------------
  13560.  
  13561. From: Barry N Merenoff <110144.2274@compuserve.com>
  13562. Subject: Re: (fractint) The Price of Fractal Software
  13563. Date: 19 Feb 1999 22:01:27 -0500
  13564.  
  13565. Tim wrote
  13566. > I don't think Fractint will "die"...
  13567.  
  13568. Viva Fractint!
  13569.  
  13570. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13571. Post Message:   fractint@lists.xmission.com
  13572. Get Commands:   majordomo@lists.xmission.com "help"
  13573. Administrator:  twegner@phoenix.net
  13574. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13575.  
  13576.  
  13577. -------------------------------------------------------------------------------
  13578.  
  13579. From: Barry N Merenoff <110144.2274@compuserve.com>
  13580. Subject: (fractint) Re: J of M
  13581. Date: 19 Feb 1999 22:19:03 -0500
  13582.  
  13583. Please resend this PAR in a one-part message. My browser couldn't handle
  13584. the three-part version.
  13585.  
  13586. Thank you.
  13587.  
  13588. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13589. Post Message:   fractint@lists.xmission.com
  13590. Get Commands:   majordomo@lists.xmission.com "help"
  13591. Administrator:  twegner@phoenix.net
  13592. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13593.  
  13594.  
  13595. -------------------------------------------------------------------------------
  13596.  
  13597. From: Barry N Merenoff <110144.2274@compuserve.com>
  13598. Subject: (fractint) Re: Metaphor
  13599. Date: 19 Feb 1999 22:57:41 -0500
  13600.  
  13601. True, each color boundary is a natural contour, but only the limiting
  13602. contour (iteration infinity) is the true fractal. In terms of actual
  13603. graphics, a true RENDERNIG of the fractal could be defined by stipulating=
  13604.  a
  13605. minimum number of consecutive levels identical at a given zoom level.
  13606.  
  13607. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13608. Post Message:   fractint@lists.xmission.com
  13609. Get Commands:   majordomo@lists.xmission.com "help"
  13610. Administrator:  twegner@phoenix.net
  13611. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13612.  
  13613.  
  13614. -------------------------------------------------------------------------------
  13615.  
  13616. From: Ray Montgomery <elmont@cdsnet.net>
  13617. Subject: (fractint) Re: Single Layer Syndrome
  13618. Date: 19 Feb 1999 20:12:06 -0800
  13619.  
  13620.  
  13621.     Michael Traynor writes:
  13622.  
  13623.     "...I prefer...some...individual layers more interesting than the full UF
  13624. image....."
  13625.  
  13626.     I find the same thing.  Upon occasion I will delete a layer completely,
  13627. even after working on it for untold minutes, because the single layer is
  13628. great - can't, in my estimation, be improved upon with any addition.
  13629.     Whether it is the conditioning of Fractint, which I dearly love, or not,
  13630. it happens, and it has happened several times.  Occasionally I will end up
  13631. with a single layer that has no bearing, relationship or connection to the
  13632. original image brought up, that I have to laugh (well, I am mildly amused
  13633. by it) realizing that I have brought up perhaps three or four combined
  13634. images and end up with this single layer.
  13635.     Ah, well!  It is one of the diversions of this process we call 'living'
  13636. that occur once in a while.
  13637.     I was sort of glad to see that someone else had experienced the same thing. 
  13638.         Regards            Ray
  13639.  
  13640.  
  13641. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13642. Post Message:   fractint@lists.xmission.com
  13643. Get Commands:   majordomo@lists.xmission.com "help"
  13644. Administrator:  twegner@phoenix.net
  13645. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13646.  
  13647.  
  13648. -------------------------------------------------------------------------------
  13649.  
  13650. From: Barry N Merenoff <110144.2274@compuserve.com>
  13651. Subject: (fractint) Re: Metaphor
  13652. Date: 19 Feb 1999 23:06:27 -0500
  13653.  
  13654. But what if you could zoom in on the post-processed images? As long as
  13655. there is a dense set of points which when approached reveal endless detai=
  13656. l,
  13657. I would still consider the image a fractal, even if that detail is smooth=
  13658. ed
  13659. over.
  13660.  
  13661. The idea is that the amount of smoothing should be appropriate to the zoo=
  13662. m
  13663. level. A fractal contour may be smoothed slightly for aesthetic purposes,=
  13664.  
  13665. but when magnified the smooth curve should be replaced by a more
  13666. complicated smooth curve each time.
  13667.  
  13668. (I know, easier said than done...) :)
  13669.  
  13670. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13671. Post Message:   fractint@lists.xmission.com
  13672. Get Commands:   majordomo@lists.xmission.com "help"
  13673. Administrator:  twegner@phoenix.net
  13674. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13675.  
  13676.  
  13677. -------------------------------------------------------------------------------
  13678.  
  13679. From: Barry N Merenoff <110144.2274@compuserve.com>
  13680. Subject: (fractint) Re "Select Video Mode"
  13681. Date: 19 Feb 1999 23:10:37 -0500
  13682.  
  13683. Please refrain from using profane language. It is not appreciated by the
  13684. users of this mailing list, as I'm sure Tim will agree.
  13685.  
  13686. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13687. Post Message:   fractint@lists.xmission.com
  13688. Get Commands:   majordomo@lists.xmission.com "help"
  13689. Administrator:  twegner@phoenix.net
  13690. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13691.  
  13692.  
  13693. -------------------------------------------------------------------------------
  13694.  
  13695. From: Barry N Merenoff <110144.2274@compuserve.com>
  13696. Subject: (fractint) Re: Metaphor
  13697. Date: 19 Feb 1999 23:24:14 -0500
  13698.  
  13699. What is Linas Vepstas' formula?
  13700.  
  13701. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13702. Post Message:   fractint@lists.xmission.com
  13703. Get Commands:   majordomo@lists.xmission.com "help"
  13704. Administrator:  twegner@phoenix.net
  13705. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13706.  
  13707.  
  13708. -------------------------------------------------------------------------------
  13709.  
  13710. From: Kerry Mitchell <lkmitch@primenet.com>
  13711. Subject: Re: (fractint) Re: Metaphor
  13712. Date: 19 Feb 1999 21:35:21 -0700 (MST)
  13713.  
  13714. It's a way of getting continous tone images from iteration counts.
  13715. Basically, as |z| -> infinity, the "+c" can be ignored and |z| will
  13716. increase doubly-exponentially with iteration number.  That is, taking the
  13717. (appropriately scaled) log(log(|z|)) will give numbers that vary linearly
  13718. with iteration number.  In other words, a smooth gradation of color.
  13719. Damien and I have incorporated Linas' ideas into some of our coloring
  13720. schemes; if no one beats me to it, I can post the exact details.
  13721.  
  13722. Kerry
  13723.  
  13724. Kerry Mitchell
  13725. lkmitch@primenet.com    http://www.primenet.com/~lkmitch/
  13726.  
  13727. On Fri, 19 Feb 1999, Barry N Merenoff wrote:
  13728.  
  13729. > What is Linas Vepstas' formula?
  13730. > --------------------------------------------------------------
  13731. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  13732. > Post Message:   fractint@lists.xmission.com
  13733. > Get Commands:   majordomo@lists.xmission.com "help"
  13734. > Administrator:  twegner@phoenix.net
  13735. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13736.  
  13737.  
  13738. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13739. Post Message:   fractint@lists.xmission.com
  13740. Get Commands:   majordomo@lists.xmission.com "help"
  13741. Administrator:  twegner@phoenix.net
  13742. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13743.  
  13744.  
  13745. -------------------------------------------------------------------------------
  13746.  
  13747. From: Kerry Mitchell <lkmitch@primenet.com>
  13748. Subject: Re: (fractint) Re: Metaphor
  13749. Date: 19 Feb 1999 21:35:21 -0700 (MST)
  13750.  
  13751. It's a way of getting continous tone images from iteration counts.
  13752. Basically, as |z| -> infinity, the "+c" can be ignored and |z| will
  13753. increase doubly-exponentially with iteration number.  That is, taking the
  13754. (appropriately scaled) log(log(|z|)) will give numbers that vary linearly
  13755. with iteration number.  In other words, a smooth gradation of color.
  13756. Damien and I have incorporated Linas' ideas into some of our coloring
  13757. schemes; if no one beats me to it, I can post the exact details.
  13758.  
  13759. Kerry
  13760.  
  13761. Kerry Mitchell
  13762. lkmitch@primenet.com    http://www.primenet.com/~lkmitch/
  13763.  
  13764. On Fri, 19 Feb 1999, Barry N Merenoff wrote:
  13765.  
  13766. > What is Linas Vepstas' formula?
  13767. > --------------------------------------------------------------
  13768. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  13769. > Post Message:   fractint@lists.xmission.com
  13770. > Get Commands:   majordomo@lists.xmission.com "help"
  13771. > Administrator:  twegner@phoenix.net
  13772. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13773.  
  13774.  
  13775. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13776. Post Message:   fractint@lists.xmission.com
  13777. Get Commands:   majordomo@lists.xmission.com "help"
  13778. Administrator:  twegner@phoenix.net
  13779. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13780.  
  13781.  
  13782. -------------------------------------------------------------------------------
  13783.  
  13784. From: "Leon Duych" <leon_d@email.msn.com>
  13785. Subject: Re: (fractint) Re "Select Video Mode"
  13786. Date: 19 Feb 1999 23:37:48 -0800
  13787.  
  13788. Sorry.
  13789.  
  13790. -----Original Message-----
  13791.  
  13792.  
  13793. Please refrain from using profane language. It is not appreciated by the
  13794. users of this mailing list, as I'm sure Tim will agree.
  13795.  
  13796. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13797. Post Message:   fractint@lists.xmission.com
  13798. Get Commands:   majordomo@lists.xmission.com "help"
  13799. Administrator:  twegner@phoenix.net
  13800. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13801.  
  13802.  
  13803.  
  13804.  
  13805. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13806. Post Message:   fractint@lists.xmission.com
  13807. Get Commands:   majordomo@lists.xmission.com "help"
  13808. Administrator:  twegner@phoenix.net
  13809. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13810.  
  13811.  
  13812. -------------------------------------------------------------------------------
  13813.  
  13814. From: Paul Derbyshire <pderbysh@usa.net>
  13815. Subject: Re: (fractint) Fractint Thanks (long)
  13816. Date: 20 Feb 1999 03:34:35 -0500
  13817.  
  13818. At 10:40 PM 2/19/99 +1030, you wrote:
  13819. >Having just said the above, Fractint has saved me years of my life too!
  13820. After reading some articles
  13821. >by Pickover I tried to emulate his images using Basic in a few of its
  13822. variations.  I can hear all of
  13823. >the REAL programmers out there groaning, but it's all I had and my
  13824. programming skills are about on
  13825. >par with my maths, so not much point forking out for C++ or whatever.  I
  13826. didn't get to his images,
  13827. >but I produced fractals.  Firstly black and white only, but later I got to
  13828. colour.
  13829.  
  13830. Forking what out? There's a great C++ compiler available for free...
  13831.  
  13832.  
  13833. -- 
  13834.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  13835. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  13836.    `*'  straight line."    -------------------------------------------------
  13837.         -- B. Mandelbrot  |http://surf.to/pgd.net
  13838. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  13839. Programmer & Humanist|ICQ: 10423848|
  13840.  
  13841. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13842. Post Message:   fractint@lists.xmission.com
  13843. Get Commands:   majordomo@lists.xmission.com "help"
  13844. Administrator:  twegner@phoenix.net
  13845. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13846.  
  13847.  
  13848. -------------------------------------------------------------------------------
  13849.  
  13850. From: Paul Derbyshire <pderbysh@usa.net>
  13851. Subject: Re: (fractint) Fractint- Metaphor
  13852. Date: 20 Feb 1999 03:45:54 -0500
  13853.  
  13854. At 04:53 PM 2/19/99 -0600, you wrote:
  13855. >  Okay, 236. I was wrong; it's magnetization of of materials, not
  13856. >liquid/solid transtions. Here's the quote:
  13857. >
  13858. >  "Fractal basin boundaries addressed deep issues in theoretical physics.
  13859. >Phase transitions were matters of thresholds, and [Heinz-Otto] Peitgen and
  13860. >[Peter H.] Richter looked at one of the best-studied kinds of phase
  13861. >transitions, magnetization and nonmagnetization in materials. Their pictures
  13862. >of such boundaries displayed the peculiarly beautiful complexity that was
  13863. >coming to seem so natural, cauliflower shapes with progressively more
  13864. >tangled knobs and furrows. As they varied the parameters and increased their
  13865. >magnification of details, one picture seemed more and more random, until
  13866. >suddenly, unexpectedly, deep in the heart of a bewildering region, appeared
  13867. >a familiar oblate form, studded with buds: the Mandelbrot set, every tendril
  13868. >and every atom in place. It was another signpost of universality. 'Perhaps
  13869. >we should believe in magic,' they wrote."
  13870.  
  13871. BOF is the source of Gleick's reference. It also has actual pictures. The
  13872. "magnet" types in Fractint came from those investigations, hence their name.
  13873.  
  13874. -- 
  13875.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  13876. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  13877.    `*'  straight line."    -------------------------------------------------
  13878.         -- B. Mandelbrot  |http://surf.to/pgd.net
  13879. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  13880. Programmer & Humanist|ICQ: 10423848|
  13881.  
  13882. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13883. Post Message:   fractint@lists.xmission.com
  13884. Get Commands:   majordomo@lists.xmission.com "help"
  13885. Administrator:  twegner@phoenix.net
  13886. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13887.  
  13888.  
  13889. -------------------------------------------------------------------------------
  13890.  
  13891. From: Paul Derbyshire <pderbysh@usa.net>
  13892. Subject: Re: (fractint) Fractint- Metaphor
  13893. Date: 20 Feb 1999 04:15:02 -0500
  13894.  
  13895. At 11:34 AM 2/20/99 +1100, you wrote:
  13896. > I saw an extract from BOF on the web recently that sort of made this thing
  13897. >about finding the Mandelbrot set in fractals generated from other functions
  13898. >sound rather mundane: "The reason for this is that the family of functions
  13899. >f(z)=z*z+c captures the typical behavior of many high iterates of functions
  13900. >near places where the derivative is zero..."
  13901.  
  13902. I never saw any such phrase inmy copy of BOF.
  13903.  
  13904. Anyways, the mini-Mset will generally appear whenever these conditions are
  13905. met:
  13906. 1. The parameter z_0 is chosen where f' is zero.
  13907. 2. At that location f'' is non-zero.
  13908. 3. The set { z : |f'(z)| <= 1 } has a connected component containing
  13909.    z_0 and containing no other critical points, and is bounded.
  13910.  
  13911. If condition 3 is violated a mini Mset appears but may be distorted
  13912. and fused to others in a weird way, or even stretched infinitely.
  13913.  
  13914. If condition 2 is violated, the Mset is not quadratic, and you see a
  13915. degree-n Mset (3 or above) when f', ..., f(n-1) are zero at z_0 and f(n) is
  13916. non-zero. If all derivatives are zero at z_0 you get an exponential-family
  13917. Mandelbrot. (Note that for e^z, all derivatives tend to zero at -inf, and
  13918. the forward image of -inf is 0, so we get an exponential Mset for e^z+c and
  13919. z_0 = 0.)
  13920.  
  13921. If condition 1 is violated you get a perturbed set that has some M-set
  13922. properties, mostly determined by the nature of the critical point closest
  13923. to z_0.
  13924.  
  13925. >When I looked at the Magnet fractals before writing I noticed that as well
  13926. >as the Mandelbrot version producing copies of the Mandelbrot set, the Julia
  13927. >version produced copies of Julia sets--just like the formulas I posted the
  13928. >other day. I wonder if that holds true for any formula in which the
  13929. >Mandelbrot form appears.
  13930.  
  13931. Of course... they're part of the same 4 dimensional Mandel-Julia object
  13932. that occurs in the z_0xc parameter space near points where:
  13933.  
  13934. * f'z(z,c) = 0   (differentiating with respect to z)
  13935. * f(z,c) = z
  13936. * f''z(z,c) != 0 (for quadratic M/Jul)
  13937.  
  13938. and preimages of such points.
  13939.  
  13940. -- 
  13941.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  13942. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  13943.    `*'  straight line."    -------------------------------------------------
  13944.         -- B. Mandelbrot  |http://surf.to/pgd.net
  13945. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  13946. Programmer & Humanist|ICQ: 10423848|
  13947.  
  13948. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13949. Post Message:   fractint@lists.xmission.com
  13950. Get Commands:   majordomo@lists.xmission.com "help"
  13951. Administrator:  twegner@phoenix.net
  13952. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13953.  
  13954.  
  13955. -------------------------------------------------------------------------------
  13956.  
  13957. From: "J.P. Louvet" <louvet@iuta.u-bordeaux.fr>
  13958. Subject: Re: (fractint) The price of fractal software
  13959. Date: 20 Feb 1999 12:36:33 +1
  13960.  
  13961. le 14 Feb 99 a 13:50, Tim Wegner ecrivait (Tim Wegner wrote) :
  13962.  
  13963. > Where is there a full featured, open source program that is a 
  13964. > worthy successor to Fractint? There isn't one, as far as I know. 
  13965. > Actually I am very interested in Xaos, which runs on many 
  13966. > platforms, and has just been ported to Windows. I may shift my 
  13967. > efforts to working with Xaos, or merging some of Fractint's features with
  13968. > Xaos. Xaos, besides being open source, acknowledges Fractint generously.
  13969.  
  13970. I am very in late in this discussion because I have had too much work and 
  13971. time spent with such fascinating problems as "why does my new computer 
  13972. with NT does not detect my sound card, and one or two days after, why does 
  13973. it ignore my 2nd net card when it detect my sound card :-(". Problems 
  13974. solved now :-)
  13975.  
  13976. What do you think, to answer to your question, of Terry W. Gintz's 
  13977. Dofozon. Sources are available and it has a reasonably good compatibility 
  13978. with Fractint formula and parameter files.
  13979. Look at ftp://ftp-hs.iuta.u-bordeaux.fr/twggfa/dze1171b.zip dze1172.zip 
  13980. and dzsrc117.zip.
  13981. Terry admits that to make his parser faster it might be programmed 
  13982. in assembler but that he is not a specialist of this language.
  13983.  
  13984. Jean-Pierre louvet : louvet@iuta.u-bordeaux.fr
  13985. Fractal album :
  13986. http://graffiti.cribx1.u-bordeaux.fr/MAPBX/louvet/jpl0.html
  13987.  
  13988. Thanks for using Fractint, The Fractals and Fractint Discussion List
  13989. Post Message:   fractint@lists.xmission.com
  13990. Get Commands:   majordomo@lists.xmission.com "help"
  13991. Administrator:  twegner@phoenix.net
  13992. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  13993.  
  13994.  
  13995. -------------------------------------------------------------------------------
  13996.  
  13997. From: "J.P. Louvet" <louvet@iuta.u-bordeaux.fr>
  13998. Subject: (fractint) New pages about colors in fractals
  13999. Date: 20 Feb 1999 12:42:47 +1
  14000.  
  14001. Some time ago I sent the following message to the fractal art discussion 
  14002. list but I have had no comment (comments, good or bad, may help me to 
  14003. improve these pages).
  14004.  
  14005. Beginning of the message :
  14006.  
  14007. "I have added to my site a page (for readers who are not specialists) 
  14008. about fractal colouring. The URLs are
  14009.  
  14010. English : http://graffiti.u-bordeaux.fr/MAPBX/louvet/colors.html
  14011.  
  14012. French :  : http://graffiti.u-bordeaux.fr/MAPBX/louvet/couleurs.html
  14013.  
  14014. This page has links with a page with the texts of the thread about this
  14015. topic which was discussed in this list one year ago. The URL of this page
  14016. is
  14017.  
  14018. http://graffiti.u-bordeaux.fr/MAPBX/louvet/colorsfa.html
  14019.  
  14020. I hope that the layout of this page may made it readable in spite of the
  14021. great number of messages, replies etc. reproduced in it.
  14022.  
  14023. Any comment, suggestion, correction about my page will be welcome. Some of
  14024. you, who are theoricians, may help me by looking if there are not heresies
  14025. in my text or if it can be completed (or simplified).
  14026.  
  14027. Thank you for your attention. And may be this can initiate a new thread
  14028. because I think that some of you have new ideas (Earl for example ?)."
  14029.  
  14030. End of the message.
  14031.  
  14032. Jean-Pierre louvet : louvet@iuta.u-bordeaux.fr
  14033. Fractal album :
  14034. http://graffiti.cribx1.u-bordeaux.fr/MAPBX/louvet/jpl0.html
  14035.  
  14036. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14037. Post Message:   fractint@lists.xmission.com
  14038. Get Commands:   majordomo@lists.xmission.com "help"
  14039. Administrator:  twegner@phoenix.net
  14040. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14041.  
  14042.  
  14043. -------------------------------------------------------------------------------
  14044.  
  14045. From: Barry N Merenoff <110144.2274@compuserve.com>
  14046. Subject: (fractint) Re: New Pages About Colors in Fractals
  14047. Date: 20 Feb 1999 06:59:37 -0500
  14048.  
  14049. Sorry, my browser cannot connect to that site. When the site becomes
  14050. available, however, I will be glad to comment on it.
  14051.  
  14052. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14053. Post Message:   fractint@lists.xmission.com
  14054. Get Commands:   majordomo@lists.xmission.com "help"
  14055. Administrator:  twegner@phoenix.net
  14056. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14057.  
  14058.  
  14059. -------------------------------------------------------------------------------
  14060.  
  14061. From: "Mark Townsend" <marktown@netspace.net.au>
  14062. Subject: Re: (fractint) Fractint- Metaphor
  14063. Date: 20 Feb 1999 23:59:23 +1100
  14064.  
  14065. I wrote...
  14066.  
  14067. >> I saw an extract from BOF on the web recently that sort of made
  14068. >> this thing about finding the Mandelbrot set in fractals generated
  14069. >>.from other functions sound rather mundane: "The reason for this
  14070. >> is that the family of functions f(z)=z*z+c captures the typical behavior
  14071. >> of many high iterates of functions near places where the derivative is
  14072. >> zero..."
  14073.  
  14074. and Paul Derbyshire  wrote...
  14075.  
  14076. >I never saw any such phrase in my copy of BOF.
  14077.  
  14078. I can only go by my sources: "This page is an extraction of a small part of
  14079. Adrien Douady's excellent article Julia sets and the Mandelbrot set in The
  14080. beauty of fractals: images of complex dynamical systems by H.-O. Peitgen and
  14081. P. H. Richter, Springer-Verlag publ., 1986, pp. 161-173."
  14082.  
  14083. The page in question is at:
  14084.  
  14085. http://math.binghamton.edu/MATH/topics/mandel/mandel_why.html
  14086.  
  14087. >Anyways, the mini-Mset will generally appear whenever these conditions are
  14088. met: [snip]
  14089.  
  14090. Thanks for the explanation but I have to admit that I didn't understand a
  14091. word of it. Actually, that's not true: I understood "Anyways".
  14092.  
  14093. Mark Townsend
  14094. marktown@netspace.net.au
  14095.  
  14096.  
  14097.  
  14098.  
  14099. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14100. Post Message:   fractint@lists.xmission.com
  14101. Get Commands:   majordomo@lists.xmission.com "help"
  14102. Administrator:  twegner@phoenix.net
  14103. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14104.  
  14105.  
  14106. -------------------------------------------------------------------------------
  14107.  
  14108. From: "J.P. Louvet" <louvet@iuta.u-bordeaux.fr>
  14109. Subject: Re: (fractint) Re: New Pages About Colors in Fractals
  14110. Date: 20 Feb 1999 16:00:07 +1
  14111.  
  14112. le 20 Feb 99 a 6:59, Barry N Merenoff ecrivait (Barry N Merenoff wrote) :
  14113.  
  14114. > Sorry, my browser cannot connect to that site. When the site becomes
  14115. > available, however, I will be glad to comment on it.
  14116.  
  14117. Following a major electric problem in the neighboring of the campus 
  14118. several services of our network have suffered yesterday. I have a mirror 
  14119. site at http://www-hs.iuta.u-bordeaux.fr/louvet/
  14120. It seems that it works. I hope that all will be OK Monday.
  14121.  
  14122. Jean-Pierre louvet : louvet@iuta.u-bordeaux.fr
  14123. Fractal album :
  14124. http://graffiti.cribx1.u-bordeaux.fr/MAPBX/louvet/jpl0.html
  14125.  
  14126. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14127. Post Message:   fractint@lists.xmission.com
  14128. Get Commands:   majordomo@lists.xmission.com "help"
  14129. Administrator:  twegner@phoenix.net
  14130. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14131.  
  14132.  
  14133. -------------------------------------------------------------------------------
  14134.  
  14135. From: "Dean-Christian Strik" <dean2@bigfoot.com>
  14136. Subject: Re: (fractint) The Price of Fractal Software
  14137. Date: 20 Feb 1999 18:16:46 +0100
  14138.  
  14139. Fractint est most, vive UltraFractal!
  14140.  
  14141. Er.... sorry ;-)
  14142.  
  14143. --
  14144.  
  14145. Dean-Christian Strik
  14146.    ICQ: 11760568
  14147.  dean2@bigfoot.com
  14148. cstrik.isg@hetnet.nl
  14149.  
  14150. Real programmers like vending machine popcorn. Coders pop it in the
  14151. microwave oven. Real programmers use the heat given off by the CPU. They can
  14152. tell what job is running just by listening to the rate of popping.
  14153.  
  14154. -----Original Message-----
  14155.  
  14156.  
  14157. Tim wrote
  14158. > I don't think Fractint will "die"...
  14159.  
  14160. Viva Fractint!
  14161.  
  14162. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14163. Post Message:   fractint@lists.xmission.com
  14164. Get Commands:   majordomo@lists.xmission.com "help"
  14165. Administrator:  twegner@phoenix.net
  14166. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14167.  
  14168.  
  14169.  
  14170.  
  14171. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14172. Post Message:   fractint@lists.xmission.com
  14173. Get Commands:   majordomo@lists.xmission.com "help"
  14174. Administrator:  twegner@phoenix.net
  14175. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14176.  
  14177.  
  14178. -------------------------------------------------------------------------------
  14179.  
  14180. From: "Morgen H Bell" <morgenb@cobweb.net>
  14181. Subject: Re: (fractint) Fractint- Metaphor
  14182. Date: 20 Feb 1999 16:36:34 -0500
  14183.  
  14184. Ken Childress wrote:
  14185.  
  14186. I have to admit to being puzzled by this assessment.  What do you mean
  14187. by cheating and why would UF be cheating?  As Damien has pointed out,
  14188. things such as true color and layering can be done with Fractint, albeit
  14189. with more effort maybe.  So, what would make UF cheating when compared
  14190. to Fractint?
  14191.  
  14192. After another two days of experimenting, I think it's more like driving a
  14193. car with an automatic transmission.  I keep kicking the floor looking for
  14194. the clutch.
  14195.  
  14196. Most, not all certainly, but most of the images that people put on their
  14197. web sites are very visually (at least to me) pleasing images.  While
  14198. many are not exactly to my personal likes, I can see the effort that was
  14199. made to make the images as good as possible.  Are these images a
  14200. different class (for lack of a better word) from those that you like to
  14201. create?
  14202.  
  14203.  
  14204. Yes, a whole new category.  At least the ones in which there are two or more
  14205. completely different fractals layered onto each other.
  14206.  
  14207. Many of the FotD images, for example, I find are interesting from the
  14208. standpoint of the shapes and designs that they create.  However, I don't
  14209. find many of them visually pleasing.  That isn't a criticism, it's just
  14210. my reaction.
  14211.  
  14212. Visually, Ultra Fractal is stunning--it makes beautiful pictures!  But I'm
  14213. still new even to Fractint (I've only had my computer since October) so the
  14214. possibilities are overwhelming.  Probably, after another week of UF, I'll be
  14215. frustrated by Fractint and have to go through a sort of reverse
  14216. readjustment.
  14217.     Really, I wouldn't want to give up either program.  They complement each
  14218. other well.
  14219.                                                 Morgen
  14220.  
  14221.  
  14222.  
  14223.  
  14224. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14225. Post Message:   fractint@lists.xmission.com
  14226. Get Commands:   majordomo@lists.xmission.com "help"
  14227. Administrator:  twegner@phoenix.net
  14228. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14229.  
  14230.  
  14231.  
  14232. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14233. Post Message:   fractint@lists.xmission.com
  14234. Get Commands:   majordomo@lists.xmission.com "help"
  14235. Administrator:  twegner@phoenix.net
  14236. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14237.  
  14238.  
  14239. -------------------------------------------------------------------------------
  14240.  
  14241. From: "narada" <narada@hermes.net.au>
  14242. Subject: Re: (fractint) Metaphor
  14243. Date: 21 Feb 1999 13:02:22 +1100
  14244.  
  14245. Thanks Damien, Images the quality of these certainly make me enthused to
  14246. explore the posibilities of Ultrafractal further. I might even check out
  14247. their list for a while. The two programs do represent such different
  14248. qualities in the results they can achieve, and I guess I have become
  14249. somewhat conditioned to think in FractInt idealizations.
  14250.  
  14251. >The images I have produced with Ultra Fractal have a much wider range of
  14252. >coloring algorithms. I cannot emphasize enough, if FractInt is all your
  14253. >experience, I can see where you might think that layering means slapping
  14254. >any two fractals together. Yes, you can do this with Ultra Fractal, but in
  14255. >my opinion the best fractal images do not. Instead, they select from the
  14256. >wide variety of coloring algorithms and use them to reinforce elements of
  14257. >the fractal structure. I submit for your consideration these images:
  14258. >
  14259. >    http://www.fractalus.com/lure.jpg
  14260. >    http://www.fractalus.com/spade.jpg
  14261.  
  14262.  
  14263.  
  14264. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14265. Post Message:   fractint@lists.xmission.com
  14266. Get Commands:   majordomo@lists.xmission.com "help"
  14267. Administrator:  twegner@phoenix.net
  14268. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14269.  
  14270.  
  14271. -------------------------------------------------------------------------------
  14272.  
  14273. From: Tom Conally <conally@netpath.net>
  14274. Subject: (fractint) Another Par
  14275. Date: 20 Feb 1999 20:45:35 -0500
  14276.  
  14277.  
  14278. Hi all
  14279. Another of my old fashioned pars.
  14280. Dama, You like boundaries- hope you enjoy this one.
  14281.  
  14282. Julia on the web   { ; Thomas G. Conally, 1999
  14283.                      ; A Mandelbrot Julia
  14284.                      ; colormap by Tom Conally
  14285.                      ; SF7
  14286.   reset=1960 type=mandel passes=b 
  14287.   center-mag=-1.76973573913609700/+0.00481838584192349/30426.78
  14288.   params=0/0 float=y maxiter=50000 bailoutest=real fillcolor=555
  14289.   colors=000Ul4030<16>Dq1Et2Dt2<13>0z0<2>000<4>420030z30<5>z61w71zz0zy01x0\
  14290.   2w00v00u05s0<14>Kb10a1M`1<26>k53l43m24n05n15z35n55<13>nX7oZ8nY8<53>DPKCO\
  14291.   LCOLCOM<6>CQPDQPFQO<28>x_1z`0y`1w`3v`5<29>0z0Vl4
  14292.   }
  14293.  
  14294.  
  14295. Tom Conally
  14296. In every boomerang there is a perfect throw.
  14297. Your life, Grasshopper, is to practice  till you find that throw
  14298. and become one with that boomerang!
  14299.   Boomerangs        http://www.angelfire.com/nc/conally
  14300.    Paradise             http://www.netpath.net/~conally/
  14301.    Fractal Images   http://members.tripod.com/~afractal
  14302.  
  14303. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14304. Post Message:   fractint@lists.xmission.com
  14305. Get Commands:   majordomo@lists.xmission.com "help"
  14306. Administrator:  twegner@phoenix.net
  14307. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14308.  
  14309.  
  14310. -------------------------------------------------------------------------------
  14311.  
  14312. From: "narada" <narada@hermes.net.au>
  14313. Subject: Re: (fractint) Fractint- Metaphor
  14314. Date: 21 Feb 1999 13:36:28 +1100
  14315.  
  14316. Thanks for the interesting discusion about the mathematics of the mandel
  14317. brot shape. I think it was started by something I said regarding what
  14318. particular fractals model in the real world.
  14319.  
  14320. Can anyone explain further then: if mandel shapes have something to do with
  14321. magnetic fields- what else does this family of shapes model, and how does it
  14322. relate to the maths, (which I must admit I try to follow but is somewhat
  14323. beyond me- I do glean something from it though :-))? What is the
  14324. metaphorical meaning within its particular intriguing and so pleasing form?
  14325.  
  14326. I intuit that most simple algorithms that generate amazing patterns are
  14327. highly likely to be found to be useful metaphors or models for some 'real'
  14328. thing or process. I guess I will take this over to the philofractal list
  14329. though for now.
  14330.  
  14331. Thanks for the feedback.
  14332. Narada
  14333.  
  14334.  
  14335. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14336. Post Message:   fractint@lists.xmission.com
  14337. Get Commands:   majordomo@lists.xmission.com "help"
  14338. Administrator:  twegner@phoenix.net
  14339. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14340.  
  14341.  
  14342. -------------------------------------------------------------------------------
  14343.  
  14344. From: Damascena@aol.com
  14345. Subject: (fractint) The Sword in the Stone -- a .par file
  14346. Date: 21 Feb 1999 00:49:23 EST
  14347.  
  14348. Xcalibre           { ; Damascena Korwen
  14349.   reset=1960 type=barnsleyj3 passes=2
  14350.   center-mag=0.0977517/-0.0586701/0.9861933/1/34.999
  14351.   params=-0.3679599499374218/0.167779632721202 float=y maxiter=100
  14352.   bailout=8 bailoutest=and inside=bof60
  14353.   colors=ZE1UB1C26C26C26C26<3>46K37N38O<7>7GWA3A9KY9LY<3>FT`GVaHXbI_cJad<4\
  14354.   >PkgRmhSoiUrjXrf<3>frSirOlrKorGqrDtr9wr5<5>uh365G46K37N<4>5CSnV0<9>eM0dL\
  14355.   0bK0<12>L40K60I80000<8>7F27G38I39J4AL4<3>ET6FU7GW7IX7LY7<6>dg9fh9ij9llA<\
  14356.   2>upB<9>xwnyxryyvzzzyyzwxy<14>`bn_`nY_mXYmVXl<2>RSjPRiOPf<6>D6IC3EC4H<2>\
  14357.   C5OB6RB7TB8WB8YB9`AAc<9>Kmm<5>hu`mwZqxWvzUrxU<4>YqUUoUQmUMkUHiU<3>0bT<4>\
  14358.   0UK0SI2PF<3>AA0<2>K60N40Q20U00X40<9>zm0<6>xU0<3>dI1 cyclerange=0/255
  14359.   }
  14360.  
  14361. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14362. Post Message:   fractint@lists.xmission.com
  14363. Get Commands:   majordomo@lists.xmission.com "help"
  14364. Administrator:  twegner@phoenix.net
  14365. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14366.  
  14367.  
  14368. -------------------------------------------------------------------------------
  14369.  
  14370. From: Damascena@aol.com
  14371. Subject: (fractint) Subatomic Dancers?
  14372. Date: 21 Feb 1999 02:07:57 EST
  14373.  
  14374. Particles          { ; Damascena Korwen
  14375.   reset=1960 type=formula formulafile=fractint.frm
  14376.   formulaname=newton_z3_fn function=atanh passes=2
  14377.   center-mag=+0.00000000000151996/+0.00000000000009209/2.968797e+016/1/164\
  14378.   .999 params=0.0917/0 float=y maxiter=512 inside=bof60 outside=atan
  14379.   invert=1.25e-012/0/0 decomp=256 viewwindows=1/1/yes/0/0
  14380.   colors=iMCgJE<23>O2O213002Wq0Yn0<10>yLYyI`vGctDfqAjo8ll5jj2fg0ce0`<11>CI\
  14381.   0AJ0<2>3O90PC0RE2SH5UK7VN<7>RJj<11>t1Cv09y06y23v50t80<15>HpzFsvCvr<3>2jb\
  14382.   0hZ0eW<7>IJ0LH0<5>Z0M`0Q<5>nIlqLosOsuRvuUs<10>WyF<3>Nm0Lj0<7>2OS0LW0I_<5\
  14383.   >D0tF0q<14>kg0mj0om3qp7qsBovFmyI<10>QUv<7>86U000<9>000<14>um0<10>jOB
  14384.   cyclerange=0/255
  14385.  
  14386. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14387. Post Message:   fractint@lists.xmission.com
  14388. Get Commands:   majordomo@lists.xmission.com "help"
  14389. Administrator:  twegner@phoenix.net
  14390. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14391.  
  14392.  
  14393. -------------------------------------------------------------------------------
  14394.  
  14395. From: SKAristo@aol.com
  14396. Subject: Re: (fractint) Fractint- Metaphor
  14397. Date: 21 Feb 1999 07:55:25 EST
  14398.  
  14399. In a message dated 2/20/99 9:22:55 PM Eastern Standard Time,
  14400. narada@hermes.net.au writes:
  14401.  
  14402. << I intuit that most simple algorithms that generate amazing patterns are
  14403.  highly likely to be found to be useful metaphors or models for some 'real'
  14404.  thing or process. I guess I will take this over to the philofractal list
  14405.  though for now.
  14406.   >>
  14407. I've been enjoying your offerings, both visual and philosophical for a few
  14408. months now.......wish i had something to offer visually, but alas, i have not
  14409. taken the plunge to invest myself in learning how to use fractint.......
  14410. however, I have been interested for years in wondering what useful metaphors
  14411. fractals and chaos/complexity theory has to offer psychology.
  14412.  
  14413. I am a clinical psychologist in private practice, a professor of psychology at
  14414. Berklee College of Music in Boston, and a consultant for Dragon Systems, a
  14415. voice recognition software company here in Boston.
  14416. In psychology there's something called the "repetition compulsion", which
  14417. refers to the fact that many of us are compelled to repeat actions over and
  14418. over again.  This compulsion shows itself in "addictive" behavior.  Yet,
  14419. repetition is not just a problem.  Repetition matters when it comes to
  14420. learning new things, when it comes to establishing neural pathways-- actually
  14421. it matters in almost every realm of human endeavor or experience.
  14422.  
  14423. And so it is, I find myself living with patterns of repetition, whether it be
  14424. in the realm of music or in the realm of the study of neural pathways or in
  14425. the realm of providing therapy to people with various "compulsive" behaviors.
  14426. Not to mention, how I see patterns in my own life.
  14427.  
  14428. In any case, if there is a philosophical fractint list, how might I get on it?
  14429.  
  14430. Regards,
  14431. Stephen Wolf Foster
  14432.  
  14433. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14434. Post Message:   fractint@lists.xmission.com
  14435. Get Commands:   majordomo@lists.xmission.com "help"
  14436. Administrator:  twegner@phoenix.net
  14437. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14438.  
  14439.  
  14440. -------------------------------------------------------------------------------
  14441.  
  14442. From: Xylen <mctupper@holly.colostate.edu>
  14443. Subject: (fractint) philofractal discussions
  14444. Date: 21 Feb 1999 08:26:22 -0700
  14445.  
  14446. It seems like there are new people on this list that don't know about
  14447. another fractal related list---philofractal. Discussion on this list
  14448. range from the meaning of free will to debates over science and
  14449. religion. The only limiting factor is I ask you to somehow relate your
  14450. discussion to fractals. What they mean to you, how you think fractals
  14451. and chaos theory affect the universe, or whatever. If you are
  14452. interested, drop in for awhile and see what goes on. 
  14453. **An extra plus to the philofractal list is an expanded essay posting by
  14454. Jim Muth in his FOTD's. 
  14455.  
  14456. Just send the command "subscribe" (without the quotes) to
  14457. philofractal-request@icd.com
  14458.  
  14459. I look forward to seeing you.
  14460.  
  14461. Xylen
  14462. philofractal list administrator
  14463. -- 
  14464. Lottery---a tax on the mathematically illiterate
  14465. http://members.tripod.com/~Xylen
  14466. Fight Spam! Join CAUCE! == http://www.cauce.org/
  14467.  
  14468. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14469. Post Message:   fractint@lists.xmission.com
  14470. Get Commands:   majordomo@lists.xmission.com "help"
  14471. Administrator:  twegner@phoenix.net
  14472. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14473.  
  14474.  
  14475. -------------------------------------------------------------------------------
  14476.  
  14477. From: "Leon Duych" <leon_d@email.msn.com>
  14478. Subject: Re: (fractint) re: "Select Video Mode"
  14479. Date: 22 Feb 1999 10:33:17 -0800
  14480.  
  14481. This is a multi-part message in MIME format.
  14482.  
  14483. ------=_NextPart_000_000D_01BE5E4E.C23EACE0
  14484. Content-Type: multipart/related;
  14485.     boundary="----=_NextPart_001_000E_01BE5E4E.C23EACE0";
  14486.     type="multipart/alternative"
  14487.  
  14488.  
  14489. ------=_NextPart_001_000E_01BE5E4E.C23EACE0
  14490. Content-Type: multipart/alternative;
  14491.     boundary="----=_NextPart_002_000F_01BE5E4E.C23EACE0"
  14492.  
  14493.  
  14494. ------=_NextPart_002_000F_01BE5E4E.C23EACE0
  14495. Content-Type: text/plain;
  14496.     charset="iso-8859-1"
  14497. Content-Transfer-Encoding: quoted-printable
  14498.  
  14499. Hi Sylvie!
  14500.  
  14501. I have done as you instructed.
  14502. I ran VESA2CFG.EXE and thereby generated two files:
  14503. VESA2CFG and QPV.CFG.
  14504. You will find both attached to this e-mail.
  14505.  
  14506. Thank you very much for helping me!
  14507.  
  14508. Leon Duych
  14509. leon_d@msn.com
  14510.  
  14511.  
  14512. -----Original Message-----
  14513. <Blind.Copy.Receiver@compuserve.com>
  14514.  
  14515.  
  14516. Hi Leon,
  14517.  
  14518. >> For hi-res Fractint "Select Video Mode" choices all hell breaks =
  14519. loose.
  14520. >> Since Number Nine technology-based choices are not represented in the
  14521. >> "Select Video Mode" list, I'm wondering if someone out there has
  14522. >> knowledge of any compatible setting(s).
  14523.  
  14524.   Download the following file from my web site:
  14525.  
  14526.    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.zip
  14527.  
  14528.   Run vesa2cfg.exe, email me the file it will create (qpv.cfg) and I'll
  14529. write the entries for your Fractint.cfg file.
  14530.  
  14531.   Cheers,
  14532.  
  14533.         - Sylvie
  14534.  
  14535. E-mail:
  14536.    Sylvie_Gallet@CompuServe.com
  14537. Visit my exhibit at Museum of Computer Art:
  14538.    http://www.dorsai.org/~moca/
  14539. My Fractal Galleries:
  14540.    http://spanky.triumf.ca/www/fractint/sylvie/gallet.html
  14541.    http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  14542.  
  14543. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14544. Post Message:   fractint@lists.xmission.com
  14545. Get Commands:   majordomo@lists.xmission.com "help"
  14546. Administrator:  twegner@phoenix.net
  14547. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14548.  
  14549. ------=_NextPart_002_000F_01BE5E4E.C23EACE0
  14550. Content-Type: text/html;
  14551.     charset="iso-8859-1"
  14552. Content-Transfer-Encoding: quoted-printable
  14553.  
  14554. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  14555. <HTML>
  14556. <HEAD>
  14557.  
  14558. <META content=3Dtext/html;charset=3Diso-8859-1 =
  14559. http-equiv=3DContent-Type>
  14560. <META content=3D'"MSHTML 4.72.3612.1700"' name=3DGENERATOR>
  14561. <STYLE>BODY {
  14562.     FONT-FAMILY: Times New Roman, "Arial"; FONT-SIZE: 12pt; MARGIN-LEFT: =
  14563. 8em
  14564. }
  14565. </STYLE>
  14566.  
  14567. </HEAD>
  14568. <BODY background=3Dcid:000401be5e91$bb1a89a0$82c1fbd0@leon-d =
  14569. bgColor=3D#cc99cc>
  14570. <DIV><FONT color=3D#000000 size=3D2><STRONG>Hi =
  14571. Sylvie!</FONT></STRONG></DIV>
  14572. <DIV><FONT color=3D#000000 size=3D2><STRONG></FONT></STRONG> </DIV>
  14573. <DIV><FONT size=3D2><STRONG>I have done as you =
  14574. instructed.</STRONG></FONT></DIV>
  14575. <DIV><FONT size=3D2><STRONG>I ran VESA2CFG.EXE and thereby generated two =
  14576.  
  14577. files:</STRONG></FONT></DIV>
  14578. <DIV><FONT size=3D2><STRONG>V</FONT><FONT size=3D2>ESA2CFG and=20
  14579. QPV.CFG.</FONT></STRONG></DIV>
  14580. <DIV><STRONG><FONT size=3D2>You will find both attached to this=20
  14581. e-mail.</FONT></STRONG></DIV>
  14582. <DIV><FONT size=3D2><STRONG></FONT></STRONG> </DIV>
  14583. <DIV><FONT size=3D2><STRONG>Thank you very much for helping=20
  14584. me!</FONT></STRONG></DIV>
  14585. <DIV><FONT size=3D2><STRONG></FONT></STRONG> </DIV>
  14586. <DIV><FONT size=3D2><STRONG>Leon Duych</FONT></STRONG></DIV>
  14587. <DIV><FONT size=3D2><A=20
  14588. href=3D"mailto:leon_d@msn.com">leon_d@msn.com</A></FONT></DIV>
  14589. <DIV><FONT size=3D2></FONT> </DIV>
  14590. <DIV> </DIV>
  14591. <DIV><FONT face=3DArial size=3D2>-----Original Message-----<BR>From: =
  14592. Sylvie Gallet=20
  14593. <<A=20
  14594. href=3D"mailto:Sylvie_Gallet@compuserve.com">Sylvie_Gallet@compuserve.com=
  14595. </A>><BR>To:=20
  14596. <A=20
  14597. href=3D"mailto:Blind.Copy.Receiver@compuserve.com">Blind.Copy.Receiver@co=
  14598. mpuserve.com</A>=20
  14599. <<A=20
  14600. href=3D"mailto:Blind.Copy.Receiver@compuserve.com">Blind.Copy.Receiver@co=
  14601. mpuserve.com</A>><BR>Date:=20
  14602. Friday, February 19, 1999 10:19 AM<BR>Subject: (fractint) re: =
  14603. "Select Video=20
  14604. Mode"<BR><BR></DIV></FONT>Hi Leon,<BR><BR>>> For hi-res =
  14605. Fractint=20
  14606. "Select Video Mode" choices all hell breaks loose.<BR>>> =
  14607. Since=20
  14608. Number Nine technology-based choices are not represented in =
  14609. the<BR>>>=20
  14610. "Select Video Mode" list, I'm wondering if someone out there=20
  14611. has<BR>>> knowledge of any compatible setting(s).<BR><BR>  =
  14612. Download=20
  14613. the following file from my web site:<BR><BR>   <A=20
  14614. href=3D"http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.z=
  14615. ip">http://ourworld.compuserve.com/homepages/Sylvie_Gallet/vesa2cfg.zip</=
  14616. A><BR><BR> =20
  14617. Run vesa2cfg.exe, email me the file it will create (qpv.cfg) and =
  14618. I'll<BR>write=20
  14619. the entries for your Fractint.cfg file.<BR><BR> =20
  14620. Cheers,<BR><BR>        -=20
  14621. Sylvie<BR><BR>-----------------------------------------------------------=
  14622. -----------<BR>E-mail:<BR>  =20
  14623. <A=20
  14624. href=3D"mailto:Sylvie_Gallet@CompuServe.com">Sylvie_Gallet@CompuServe.com=
  14625. </A><BR>Visit=20
  14626. my exhibit at Museum of Computer Art:<BR>   <A=20
  14627. href=3D"http://www.dorsai.org/~moca/">http://www.dorsai.org/~moca/</A><BR=
  14628. >My=20
  14629. Fractal Galleries:<BR>   <A=20
  14630. href=3D"http://spanky.triumf.ca/www/fractint/sylvie/gallet.html">http://s=
  14631. panky.triumf.ca/www/fractint/sylvie/gallet.html</A><BR>  =20
  14632. <A=20
  14633. href=3D"http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.h=
  14634. tm">http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm</=
  14635. A><BR>-------------------------------------------------------------------=
  14636. ---<BR><BR>--------------------------------------------------------------=
  14637. <BR>Thanks=20
  14638. for using Fractint, The Fractals and Fractint Discussion List<BR>Post=20
  14639. Message:   <A=20
  14640. href=3D"mailto:fractint@lists.xmission.com">fractint@lists.xmission.com</=
  14641. A><BR>Get=20
  14642. Commands:   <A=20
  14643. href=3D"mailto:majordomo@lists.xmission.com">majordomo@lists.xmission.com=
  14644. </A>=20
  14645. "help"<BR>Administrator:  <A=20
  14646. href=3D"mailto:twegner@phoenix.net">twegner@phoenix.net</A><BR>Unsubscrib=
  14647. e:   =20
  14648. <A =
  14649. href=3D"mailto:majordomo@lists.xmission.com">majordomo@lists.xmission.com=
  14650. </A>=20
  14651. "unsubscribe fractint"</BODY></HTML>
  14652.  
  14653. ------=_NextPart_002_000F_01BE5E4E.C23EACE0--
  14654.  
  14655. ------=_NextPart_001_000E_01BE5E4E.C23EACE0
  14656. Content-Type: image/gif
  14657. Content-Transfer-Encoding: base64
  14658. Content-ID: <000401be5e91$bb1a89a0$82c1fbd0@leon-d>
  14659.  
  14660. R0lGODlhIANqANX/ANaEhNZjY4whIcYpKdYpKRAAANZaUqUpIdZCMWshGN5SKcZSKa1KIYQ5GDkY
  14661. CN57SlIpEOdzKe+MKWM5EKVjGLVrGEopAHNKEN6UGPelGL2EEMDAwGshY4xKhHs5c86UxnMpY86E
  14662. vcaEtaVjlIwxa3shUsZrnKVKe4QYUs6Mrc57pb1KhJQhUq0xY70pY70YUpwQQrUQSs5Se84hWnsA
  14663. KaUAObUAOc5CazkAEGMAGM4IMdZre85CSpwYIQAAAAAAACH5BAEAABsALAAAAAAgA2oAQAb/QJ9w
  14664. SCwaj8jkcMNsNlUdECjK6Yyc2Kx2y+16v+CweEwum8/otHrNbrvf8Lh8Tq/b73i8r1BD0mw1OEU5
  14665. NEpEODCJJQVDBTklKCcfYx0eeZeYmZqbnJ2en6ChoqOkpU1GOjY5hkM0gkgwr42FeywFYB8kLCOT
  14666. uCMcHFddIRymxsfIycrLzM3Oz6WoqkoFgIysrDFaJyFxKsVOv9Dj5OXm5+jp6utb2Dg6OrLY8zgt
  14667. IS0tvRs3K2MmKCY2nIjkJMQIEhxAlGDHsKHDhxAjSoyY5AACBPKO4CBEI1UqGyBDAqKRgxFJIVxe
  14668. qMCiYkWLRIlYtODmxcOuiThz6tzJs6dP/zNIGCiAICQBggUJ5vnA8YfGtSRYRNyIEbKGVav4Vmjd
  14669. 2oIFTBgsVnT7Sbas2bNo0y7zwaDCgggQniJpgFRpI3g1SNKokSNLiBcvRGxQ8aJLCxsr1SpezLix
  14670. 48dlhDiQoITBBLuHDhTZuETGDCwrXuj74mJswRYv+kFezbq169flhjjAoEGCAyUOIMTFzDYpEQcD
  14671. zvy1IViMS9jIkytfzvyNgwxKHThocOEC9QsQbhtxIJSB9iMbAgTAc6Nw8/Po06tX7gODBd6Ui1hY
  14672. gLvBhAQTtGMBgOCB6TTDJbbegAQWaCBZRlyQQQYaNKjBghR8d4QFFRxRAAVKbPBACqMd6P/hhyCG
  14673. qBhv2DhQQQYRFlHABBpEcAFKIsYo44w0UrRZDnnRoKNVrgjBFA1ffUUSDnJl6AQJAXkxgiU1Nunk
  14674. k1DascpmIGVkBFNKxHIEDCUs8cRAJJxwwghjekBCCR38F4YVW4gQTJRwxinnh4MAMg8hJBJBgzDb
  14675. CKjGLx0yIc6chBZqKGxI4FADPCAxmgNTOvBFIlOS+gBDFiO0QAkKJByEQgl8RgXCBh940MGhqKaq
  14676. 6ohJJDCADhLmuVlTfWHRwg1MmACDamCcAAMJXIRQgpqrFmvssRIlUYACCDBg1AAJFIkZjnvsJVJI
  14677. N5gWgjZnjMACCgAhK+645DJUxAILxMr/CgQJ9HBAD/DC+6i0RXxhQ64mqEBsufz26686e0QgQQRK
  14678. QMBAngPI8g4RTZhgw38qcPtFDf9WbPHFxgwxAcE+bJyiEBC4SAS6ShVwwAEFOCAAETzIIJUONwTq
  14679. xQfEffFBDLxirPPOPKPhw3MSQoCBBBfQOw8E6EroQAILXHQRAU5fNMAAPLQsgwzlpZKazGCs8FnP
  14680. YIctdhYOaEAix0ZYAJdSTHygwA50rPDw2HTX3bMQCiqFwYtFmHjEBHwjAUAAMqdgALMBAOAnSyvw
  14681. AI8M+9ot+eT/ynrEZOoWHAHlnHfuOReWh+5lQaBuUSoHXH+u+urGDqGolULgmGMfrDjC/wILJe2B
  14682. w0ZEwiho6k58sBDrxBe/Kmcq/kG7hTAYUgDuROTAgjwbiPBtkl2ogCYZH/zSwfceVFGc8eSXf96V
  14683. IBldRI8aNW8EI88LMkb3Z6LgwQgjqCAC/uEDkyapwNsAm8xHwAKypk42UIoN1OeDHMRAR0CSByJm
  14684. Fi40/CJUWQCHATfIwbQMIlLY2Ivo6rEFSbzBTcT6XgdXyEKfvA8vR8hBlfaAI5Dk5VG7210OCGED
  14685. kkjrUizR1BhUcAISmCp1A9zALyLXwiY6cR1KwYENdEAL0S1lL4sLARDDMAIU9IIEn+JCCThAggA+
  14686. 8YxohIYh3jGAKYkOR26swfhuwIJe4P+jDCJAAQs8cAI+jsAEvRjBqdJIyEKaIwkQQMAAVmbFK+0F
  14687. Z38UQTdEEINe6AoGLRjB+Bp2Aq+wYJMsQQEGDUnKUiKjIheRBwQEoAMC9MAVsCNCATZSg2vZUCxb
  14688. iAEoy/CBgaBgcaYMpjBFoawGXGQBDGQFHJEQgqmIxCozMIELRpk9EsTkk8PMpjaJWYQGKMA320nA
  14689. yS5ygAFAbQA9yIEDklmvLpigBi6opTxrAAN6wuAFLQDkNvfJz1BIJgIAzdx2BoAAAQjUdT3QgRvb
  14690. qQUVzIAqoBRBC2oQA+z186IYzYQQChCBtkSgAYlKF4leOUsdyAULL3CBE/gxsxhQM6P/MI0pGyQT
  14691. HyRwJ0/iLEIC3MgEr2EhBHPrmkVlStSiRkYIGCAKEZAG0AikywETEIpSsSEARhZFFinQgT5kUDMx
  14692. iEClXOglDIBp1LLGlAi1wUDmQgZQBrSVNzhw1rtORgB9mkEFNhhqWGugV7P6lZ9CsIAEGAEBCai1
  14693. kT9bgFWLQIAUkGEFqeirF1Ygsb9adp8+0ACGLlcBCUiAAvlJAlTp0tGp+gBpCkgtA5yVgATwJwA7
  14694. kEEAqia1qsmArGaAgWQvy1tSlo03FGCgW0HKig98AAFwq4PDmNjb5qbRAtDhTQXUdQFk2qVtHzAA
  14695. Aph7Bh2IxrngDaYPLIABzFTgMkWI/wC9IFABaUFAAQDIQgoQ8DbubiEEXH2BfcPL3yY2gja4wcBh
  14696. ExQ4Ikw3QxsynRNSkAIT7ODBOwCACTgEwP5aeJiIbc97MAOAB1z4w83N8M8+W6IIUADEKOatiEmk
  14697. BRF4AAT6nET3POCBXab4xoSkxu7WuOM8RaUENm7CB6aA4yIXUpY6stIsrWIDGOBQRbsrAVhckUwn
  14698. iGCQXiCGkbd8Rh8tbzM8uga16KFHsLCgBJA4cw5MY0YmfIPLcG6hD5xyhKv4YaGJQsGUEpGRgWAT
  14699. DN8IshdUIMiXxvnQOsOzEP6QQCXsUAlAMkIOUCCLtg3EA7hVQfgMbTpTYeEDHXgTov9HjTFp1bKK
  14700. Smh0+5LgZN8JmUw09qOfDFKJWNPYCovDshYGRepe98sIHUE1pGOJCI3ErhBi6CKacMuEK/vPvkvy
  14701. tbTJRaUFzoN9MaSzj2zRilp1wXom5F6oOb0BDU773Kv6oLCToCh39LgIMBD0BkjA7GRzIMhaRre+
  14702. U6XueUzDcjk4QZtytgYiY4pJ+044oaikA1ZIUdG8KcAWrUxuM9zv06JWuMbhBOxUKKuWEuQIkyH4
  14703. qCxpQYhxuLcTPL3xlkNJI3gp+e5qaYPdMdqHDpfdQifeU2CJQXuQ0GMZtxDt6mXc5UinkRJomU4i
  14704. deTflgNSDng+GJSDwVuTCMGnWHD/Xw6EwIhtTrrYB0SPGWa4ADEICxb+DIYQ3KR74GqoB0o39rrL
  14705. aF3wiGXocnCFXtqj2TAIu5tJEKZImKADJ1BICU6gP5/b/fEgMsTUVP1GHDmFD7YS4gd0S4aBGHpM
  14706. goe86JGjBIIOYMWL5osWWJAkXbWg3hsIgU3YnoXEj/72BUqCAKAGzijmcHf0qgEjpOmC4gvjOE2g
  14707. LEzw0ZWvhFsLQ/Yi7qevHlQOYK00SCijavDKHe7QWrYERO+4YAKrp6GTQ6e++pvTqoskpQCuIoAA
  14708. dhNxRtvyBSNQ0woEjoZ7gGu36xeAB6R7zIIA0RI6OjIr12IVpcEEMbBfLGFNXgGA/wJYgY+BBAUg
  14709. FHShSOwUQ3lhJB9gAi/wTNC0ArAnAivgFTGxAqFngS6IFu+zAEMhSwLQNA3QO1DWLlSEg4awBdL0
  14710. TIBgFfUUJIlwA3b1gkj4GkXwXgeDekhgL0wQAipgAluhArCXhFgIGUPAVuiFDRBgEQjQAwmAA9Lh
  14711. ADgAAdlHRerjBQ5DFS7QAvEET0eYhXToGlv4UdhgFAzQgT5iDbOEg1twAzbAgveiBSEQTxVXh4po
  14712. Fj7QWU3VUUlAFwelLD1QSwuFAxb1ASkVSGDFBSdQWYsYih4UMJehPgtgWkqRU0LwSgzTBOUxGrr0
  14713. BdIkirQIgx0TUElgXXB1ekTQA/+VRiqIgQUsBQYuIG+1eIw2EjIFQ1y80VpLyFM0szgzQHCGAUwm
  14714. YIzImI2xIQS2cTkN4FSrxQCo6DwI0DfgtAExIANOYAI6gI1OUIgtJhNXqI30qAxDwACb9TMVEAEV
  14715. QBTfuFQRMIlF4CxDMABPIQM80Gwz0FVi4ALUmAUuwHX1OJFqRFMQQAES0IVDAFCBA1B2AX+KZFDS
  14716. gQOKRAA3MI9ZQFlhoJIU2ZJrMQQNQDSi9RZNJZDvowAShABocDPmEQYt8JAuGZT+JAQVECGeZZOY
  14717. kYGLNQQ6iUcjmFzGAYpCOZWfQJT5WFjdKDoJ8E3bwS4IYAA8YABXoy+mIwMx4F3/KAkanUiVbNkJ
  14718. PnABZqMinSWTdjEdCnCKSyUUBRg1TkNQBEAAOvAqrwIPJ6kG09iWiMkJPpABG4aBEzCXEqABbUEB
  14719. +NhUCyCOSyiDC9AA6nJcaZkGImADLZiYpKkGz4F6GyNSGaICCjCaZVADQFmasgkHv4UZDpCPRvCN
  14720. 4/iE4YEArhkGN4MrszmcdFCb5pU5IsM2k7ADCvCZPzeIxBmdcrCYJKIB6rI219UEKaAABvCb0DeC
  14721. 7iid4ikGmRWXSmEB5jkEoIUEISOO0pEADJAuWcAfBuBYacCOOuCc47mfoNMeGmkIEJABRWKc6WU0
  14722. OBABi2NcAcCdOwCB1cNVOsCCm/w5oWswBA1SOxdqBIBzBBcwiR8QAfYZPG0DANrlNGAJllVjTi2j
  14723. nxTaolpABOiJAf85Xg+SnkVwAbg5BNiBYCFqMy76o3OABBZQHdXRmLhRU32zm0Lwod4JpE6qBhlG
  14724. ATmKDQ8QX096pZggYg3Chw4QAVaKpWB6Bys2GxrAQCGDIWGapnbghKdFAbWhARXQWSgyAU+hpnYq
  14725. B0EAADvjG+ZwDd6wGRoHDrpwKBkxCkumEQKwCfPYCJQwCUa4CJFgj3b5mBkTF+YAD97gYcWHC1Ik
  14726. ANqlRwGgC5hoCZ7wCcHVCKewNZDQlJjQCX/ACJDZmgljHgegYRqXO5b1C78ADBmhXQwRAKWQdSCR
  14727. CaCwIByBCVXpmsa5LkyTABWQANknEEKhOwwJC+jyD6FAIKCnW5mgYB2BCHB5nN6pLgkRAdH/s2tQ
  14728. ch6t8A6RBQ40uAxQgQ7OkAvEkAtFlgreBYapEGABAgurYCMJlmCvQFp+cJqY+J0EuiYSFj2WaWHm
  14729. cA+HsxvewJXJIA64IKHTgJFGc6FNFQzhABUdEQqp0hJiCAnLWKAkSjgIYQHRkydogAHKaQDm8JNJ
  14730. 8QvTEAzf8z3gUwzfMC4zohIB8AlU4ZslGqSNohAcgAIpKmZMQzJLsg3TAD5OqgqDkmImAZr9+VVC
  14731. eqUmahB0kAIVwAFqdAEwyjQ5NoWCZjqhQAzgg2bFIAzX2RABgAo3MiClkAoDiqV2CiRAoQMXQhBo
  14732. QGMhYA9K0IDgsADiwA/wMA7mkDJxwREe/zoULYJmauYyLXMLs/AyznAKI3qnmmqgBKEEv9KcwvIR
  14733. BfQP+hUKM4IK6NCmm7qqSiUQQXBnPPAbLiAeWmYBCICe7/AOGcCg3jAOBvUR6MAMusAMxBCfLpIL
  14734. Ocqqypqlr2ppr4MCQPQbn0YO23Oe8rQRqmAN2eAHo6oRAXBmJbes4pom/vAESIBv/BYDCQECmRZG
  14735. 63A4gQYcDycAxUAMg/ENpBYmujCu/HomAkEHTDBlaFBOMOBzUBIP8gAa/BCvzeQMf+IQ0KCqvvOh
  14736. /Vqx7uIPUiBBszcQMNB6oYEAB1AQ8uBhDCEAx5B1piYSxCCxFtuyHuMPsPY6RjA3FoABBf+BAEOD
  14737. HyZrbs9waiKhCtNJQoPpskTbXtNic1gkBDmQBDEQAzgQBEiaIRWwJAgQDwuhDuH6DeVGEr6QcLCg
  14738. ZEUbtrMxEE/QBJCSBEjwBErgDzhgd656A2sbGnRwAJ7iDwfwIfSQDiVbDtrAshnhDKoAEl8rtoTr
  14739. GpASBUTQBIjLFkcwBDObIUOQA+VpAR8QAiCQq+/gAm7UD/VgdSahCiYUEs2wr4VbupFBEF0QBc5a
  14740. EFOAJExwA0NgRlDyCxVgme+gDynhB9CALCKxCs1gusDbGAPxBWHgBGKQccXHACnAAVpaASchA6QS
  14741. rqLLu8FbvWUhEF+ABQNxBRi3sZtCBCX/ULeQ4gIoSgENsAH0IAEDkKkC8A3RcA3R4LklgSrWW79k
  14742. 4Q9VAAYG0TAY1wWoZylKW7AE4QJcmgMVYKRrlGXj0Q8ZFjv9gA/4AA/a4AxAShLEIAz2m8Fg4Q9e
  14743. gHwIgQZS8AQyFwVQ8AQmXARFgARDwARJ8LSbpAQwcAMwAAI25wcQIL82gQ3MUKca3MMq8UvNaQQ3
  14744. oAOyKywaUAGZChO+IL0+3MQ0MUjSMgVmixBCMASKtKj/wAJ7VxO6W59O/MU0EQdeJy1yp6VJsLpJ
  14745. 0RA2gAI4/BIK57NgHMcx4Q9t8L9JAQazdwRXvEgNsQIVcAJJbBKjsrVyXMgv4Q9u4AZz/0IG+lsQ
  14746. TSAnBxEEM/C0NEADPKADMKAEGnHEJwByKTEAx3AMQWvIpLwSAqEGcPAbvyRraHAtZmzHTnADtucQ
  14747. frBKJZB5IyED2aAN3pBHpfzLVyQQZzDGnAQGYIB6VAB7BUEF3isQfrADSSwAErABa0QBG9AA2NwA
  14748. +QAB/VAABFB5wBzOwSwQc3AGqPwuZJAGXmAGdtwF2msQVLDHDlh74lzP93sQZMAG+swGU2DHZyQG
  14749. COEEzXYQAnAEPGzPCN0SxYcF0jcnQLAECR3RXfF8X3DMtHIENiDRGq0T2We8YOCxA0EEWfAEdLDR
  14750. Jn0ToOoPU4AFXCAGYPAFX9BFXyAFYAd00jY9EwEBADs=
  14751.  
  14752. ------=_NextPart_001_000E_01BE5E4E.C23EACE0--
  14753.  
  14754. ------=_NextPart_000_000D_01BE5E4E.C23EACE0
  14755. Content-Type: application/octet-stream;
  14756.     name="VESA2CFG.PIF"
  14757. Content-Transfer-Encoding: base64
  14758. Content-Disposition: attachment;
  14759.     filename="VESA2CFG.PIF"
  14760.  
  14761. AHhWRVNBMkNGRwAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAgAAQzpcZG93bmxvYWRcRnJhY3RpbnQg
  14762. U3R1ZmYuVE1QXHJlIEZyYWN0aW50IFNlbGVjdCBWaWRlbyBNb2RlLlQAAAAAAAAAAAAAAAAAAAAA
  14763. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14764. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14765. AAABAP8ZUAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14766. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14767. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATUlDUk9TT0ZUIFBJRkVYAIcBAABxAVdJTkRPV1Mg
  14768. Mzg2IDMuMAAFAp0BaACAAgAAZAAyAP//AAD//wAAChACAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14769. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14770. AAAAAFdJTkRPV1MgVk1NIDQuMAD//xsCrAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14771. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14772. UElGTUdSLkRMTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14773. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAADIAAQEAAAAAAAAAAAAAAQAAAAUA
  14774. GQADAMgA6AMCAAoAAQAAAAAAAAAcAAAAAAAAAAgADABUZXJtaW5hbAAAAAAAAAAAAAAAAAAAAAAA
  14775. AAAAAAAAAEx1Y2lkYSBDb25zb2xlAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAUAAZAIACLAGMAm8B
  14776. FgAAAAEA//////////8sACwAuAKbAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  14777. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAA==
  14778.  
  14779. ------=_NextPart_000_000D_01BE5E4E.C23EACE0
  14780. Content-Type: application/octet-stream;
  14781.     name="QPV.CFG"
  14782. Content-Transfer-Encoding: quoted-printable
  14783. Content-Disposition: attachment;
  14784.     filename="QPV.CFG"
  14785.  
  14786. # QPV/386 / CDPEG configuration file
  14787. # created by VESA2CFG on Mon 22-Feb-1999, 10:17:39
  14788.  
  14789. VESA BGR      # perhaps RGB instead of BGR
  14790. #'VESA local
  14791. #"VESA configuration for "Number Nine Visual Technology Corporation - =
  14792. REVOLUTION(tm) IV"
  14793.  
  14794.   320  200   16     40 $0d 0
  14795.   640  480   16     80 $12 0
  14796.   320  200  256    320 $13 0
  14797.   640  480  256    640 $4f02 $0101
  14798.   800  600  256    800 $4f02 $0103
  14799.  1024  768  256   1024 $4f02 $0105
  14800.  1152  864  256   1152 $4f02 $0124
  14801.  1280 1024  256   1280 $4f02 $0107
  14802.  1600 1200  256   1600 $4f02 $0120
  14803.   640  480  32k   1280 $4f02 $0110
  14804.   800  600  32k   1600 $4f02 $0113
  14805.  1024  768  32k   2048 $4f02 $0116
  14806.  1152  864  32k   2304 $4f02 $0125
  14807.  1280 1024  32k   2560 $4f02 $0119
  14808.  1600 1200  32k   3200 $4f02 $0121
  14809.   640  480  64k   1280 $4f02 $0111
  14810.   800  600  64k   1600 $4f02 $0114
  14811.  1024  768  64k   2048 $4f02 $0117
  14812.  1152  864  64k   2304 $4f02 $0126
  14813.  1280 1024  64k   2560 $4f02 $011a
  14814.  1600 1200  64k   3200 $4f02 $0122
  14815.   640  480  16m   2560 $4f02 $0112 R
  14816.   800  600  16m   3200 $4f02 $0115 R
  14817.  1024  768  16m   4096 $4f02 $0118 R
  14818.  1152  864  16m   4608 $4f02 $0127 R
  14819.  1280 1024  16m   5120 $4f02 $011b R
  14820.  1600 1200  16m   6400 $4f02 $0123 R
  14821.  
  14822. ------=_NextPart_000_000D_01BE5E4E.C23EACE0--
  14823.  
  14824.  
  14825.  
  14826. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14827. Post Message:   fractint@lists.xmission.com
  14828. Get Commands:   majordomo@lists.xmission.com "help"
  14829. Administrator:  twegner@phoenix.net
  14830. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14831.  
  14832.  
  14833. -------------------------------------------------------------------------------
  14834.  
  14835. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  14836. Subject: Re: (fractint) re: "Select Video Mode"
  14837. Date: 22 Feb 1999 14:51:16 -0500
  14838.  
  14839. Hi Leon,
  14840.  
  14841. >> I have done as you instructed. I ran VESA2CFG.EXE and thereby generate=
  14842. d
  14843. >> two files: VESA2CFG and QPV.CFG. You will find both attached to this
  14844. >> e-mail.
  14845.  
  14846.   I didn't ask you to post them to the list! ;-)  Check out your private
  14847. mail.
  14848.  
  14849. >> Thank you very much for helping me!
  14850.  
  14851.   You're welcome!
  14852.  
  14853.   Cheers,
  14854.  
  14855.         - Sylvie
  14856.  
  14857. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14858. Post Message:   fractint@lists.xmission.com
  14859. Get Commands:   majordomo@lists.xmission.com "help"
  14860. Administrator:  twegner@phoenix.net
  14861. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14862.  
  14863.  
  14864. -------------------------------------------------------------------------------
  14865.  
  14866. From: wdecker@csc.com
  14867. Subject: (fractint) A woven theme
  14868. Date: 22 Feb 1999 15:20:44 -0500
  14869.  
  14870. Some varied textures.
  14871.  
  14872. Bill Decker
  14873.  
  14874. grill-bars-wire3   { ;  (c) Bill Decker Feb 19, 1999 t=  0:02:58.45
  14875.                      ;  on P100 1024x768
  14876.   reset=1960 type=formula formulafile=0bill.frm
  14877.   formulaname=delt2-ucpop function=sinh/acosh passes=1
  14878.   center-mag=2e-007/5e-008/0.04167969 params=10/2/20/50 maxiter=2000
  14879.   logmode=fly potential=255/200/0 rseed=-2436
  14880.   colors=00000D<10>002000000000<29>00k00m01m<29>0ky0mz1mz<30>zzz<46>2zz0zz\
  14881.   0yz<45>02z00z00y<47>00E
  14882.   }
  14883.  
  14884. scrunch            { ;  (c) Bill Decker Feb 19, 1999 t=  0:00:30.37
  14885.                      ;  on P100 1024x768
  14886.   reset=1960 type=formula formulafile=0bill.frm
  14887.   formulaname=delt2-ucpop function=asin/atanh passes=1
  14888.   center-mag=1.517e-005/-1.79e-006/0.2003831 params=10/-10/20/100
  14889.   maxiter=2000 logmode=fly potential=255/200/0 rseed=-2436
  14890.   colors=00000D<10>002000000000<29>00k00m01m<29>0ky0mz1mz<30>zzz<46>2zz0zz\
  14891.   0yz<45>02z00z00y<47>00E
  14892.   }
  14893.  
  14894. hot-tower2         { ;  (c) Bill Decker Feb 19, 1999 t=  0:02:30.22
  14895.                      ;  on P100 1024x768
  14896.   reset=1960 type=formula formulafile=0bill.frm
  14897.   formulaname=delt2-ucpop function=sqr/log passes=1
  14898.   center-mag=-1.93875/-2.5072/0.06165639/1/45 params=10/10/10/10
  14899.   maxiter=2000 logmode=fly potential=255/200/0 rseed=-2436
  14900.   colors=000E00<11>200000000000<29>k00m00m10<29>yk0zm0zm1<30>zzz<46>zz2zz0\
  14901.   zy0<45>z20z00y00<46>F00
  14902.   }
  14903.  
  14904. frm:delt2-UcPop {  ; Bill Decker mod 8-10-98
  14905.             ;5-29-98 kathy roth
  14906.             ;variant of Morgan Owens Uc03
  14907.             x=real(pixel), y=imag(pixel), h=imag(p2)
  14908.     t=p1, bailout = real(p2):
  14909.     newx = x+h*sin((y) - fn2(3*y))
  14910.     newy = y+h*sin((x) - fn2(3*x))
  14911.     x=newx, y=newy
  14912.     z=x-flip(y)
  14913.     x=real(z),y=imag(z)
  14914.     ax=4*x-2,ay=4*y-2
  14915.     Tx=fn1(ax*(ax*ax+2))
  14916.     Ty=fn1(ay*(ay*ay+2))
  14917.     x=x+t*Ty,y=y-t*Tx
  14918.     z=x-flip(y)
  14919.     |z|<=bailout
  14920.     }
  14921.  
  14922.  
  14923.  
  14924. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14925. Post Message:   fractint@lists.xmission.com
  14926. Get Commands:   majordomo@lists.xmission.com "help"
  14927. Administrator:  twegner@phoenix.net
  14928. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14929.  
  14930.  
  14931. -------------------------------------------------------------------------------
  14932.  
  14933. From: Mark Christenson <mchris@hooked.net>
  14934. Subject: (fractint) hi-res prints
  14935. Date: 22 Feb 1999 18:22:53 -0800
  14936.  
  14937. It has been a while since hi-res prints have been a hot 
  14938. topic, but I just had an experience I thought I should 
  14939. relate to the group(s).  The print technology is called 
  14940. "Metrum", and is photographic system which produces 
  14941. true color (non-dithered) output at 300 dpi and a maximum 
  14942. size of about 8x10.375".  I made a print of "Baroque" 
  14943.  <http://www.hooked.net/fractin3.htm> 
  14944. at 3200x2400, and was thrilled by the result.  I'm pretty 
  14945. sure they rescaled it to fit the "x" axis limit (even though 
  14946. I specifically asked them to truncate rather than muck 
  14947. with the pixels), because I detect artifacts and the y-axis
  14948. is short of 8 inches.  And if it were a production run rather 
  14949. than a test, I would work with them on color balance and
  14950. gamma.  But other than those minor glitches, I am quite 
  14951. impressed!
  14952.  
  14953. You can check out my local provider (less than 10 blocks 
  14954. away!!!), J.P. Digital Imaging in Mountain View, CA at 
  14955. <http://www.jplabs.com>.  Cost per print is $12 U.S. for 1-5, 
  14956. down to $5.50 for 11 or more.  For an extra fee you can get
  14957. your prints UV-laminated, either at your printer or elsewhere.
  14958.  
  14959. I hope this info is useful to *someone* out there! :o)
  14960.  
  14961.  
  14962. Aloha, Bud
  14963.  
  14964.  
  14965. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14966. Post Message:   fractint@lists.xmission.com
  14967. Get Commands:   majordomo@lists.xmission.com "help"
  14968. Administrator:  twegner@phoenix.net
  14969. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14970.  
  14971.  
  14972. -------------------------------------------------------------------------------
  14973.  
  14974. From: Mark Christenson <mchris@hooked.net>
  14975. Subject: (fractint) Speedy Mailer
  14976. Date: 22 Feb 1999 18:34:09 -0800
  14977.  
  14978. Tim:
  14979.  
  14980. Wow!
  14981.  
  14982. I always knew your mail server was fast, but I never knew
  14983. *how* fast, until tonight.  I got my message back in less than
  14984. three minutes thirty seconds (I checked at thirty second 
  14985. intervals). 
  14986.  
  14987. Bravo!
  14988.  
  14989.  
  14990. Bud
  14991.  
  14992.  
  14993. Thanks for using Fractint, The Fractals and Fractint Discussion List
  14994. Post Message:   fractint@lists.xmission.com
  14995. Get Commands:   majordomo@lists.xmission.com "help"
  14996. Administrator:  twegner@phoenix.net
  14997. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  14998.  
  14999.  
  15000. -------------------------------------------------------------------------------
  15001.  
  15002. From: Mark Christenson <mchris@hooked.net>
  15003. Subject: (fractint) hi-res prints / correction
  15004. Date: 22 Feb 1999 21:03:41 -0800
  15005.  
  15006. Sorry, I gave the wrong URL for the image's Web page.
  15007. It should have been:
  15008.  
  15009. >I made a print of "Baroque" 
  15010. > <http://www.hooked.net/~mchris/fractin3.htm>
  15011.  
  15012.  
  15013. Bud
  15014.  
  15015.  
  15016. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15017. Post Message:   fractint@lists.xmission.com
  15018. Get Commands:   majordomo@lists.xmission.com "help"
  15019. Administrator:  twegner@phoenix.net
  15020. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15021.  
  15022.  
  15023. -------------------------------------------------------------------------------
  15024.  
  15025. From: "Wayne Kiely" <kiely+co@riverland.net.au>
  15026. Subject: (fractint) A PAR  & FRM
  15027. Date: 23 Feb 1999 19:53:10 +1030
  15028.  
  15029. Hi all,
  15030.  
  15031. A modified version of the Epsilon Cross escape method.
  15032.  
  15033. Apologies if it's been published before.  I don't recall seeing a similar image - but it must have
  15034. been done???
  15035.  
  15036. wk990216b          { ; Wayne Kiely <kiely+co@riverland.net.au>
  15037.                      ; Feb 22, 1999
  15038.                      ; t=  0:00:30.05 on PII 350 MMX at 1024x768
  15039.   reset=1960 type=formula formulafile=wk.frm formulaname=Epsilon_Rot
  15040.   center-mag=-0.5/0/1.0 float=y inside=bof60
  15041.   outside=imag
  15042.   colors=z00<29>30000000z<30>0000z0<29>030000000<78>zzzzzzyyy<75>000JJfJJf
  15043.   }
  15044.  
  15045. Epsilon_Rot {;epsiloncross test rotated 45 degrees
  15046.     z=c=pixel:
  15047.     z=z*z+c
  15048.     r=real(z), i=imag(z)
  15049.     if ((((r-i)>-0.01) && ((r-i)<0.01)) || (((r+i)>-0.01) && ((r+i)<0.01)))
  15050.       z=1E6            ;forces escape
  15051.     endif
  15052.     |z| < 4
  15053.   }
  15054.  
  15055.  
  15056.  
  15057. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15058. Post Message:   fractint@lists.xmission.com
  15059. Get Commands:   majordomo@lists.xmission.com "help"
  15060. Administrator:  twegner@phoenix.net
  15061. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15062.  
  15063.  
  15064. -------------------------------------------------------------------------------
  15065.  
  15066. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  15067. Subject: (fractint) Website
  15068. Date: 23 Feb 1999 13:20:29 GMT
  15069.  
  15070. I've just revised my documentation. I've written a (rather long) page 
  15071. on how the Mandelbrot set works. I think it might even be better (not 
  15072. *simpler*, *better*) than Fractint's online help for the "mandel" 
  15073. type. If you want to check it out and email your comments on it 
  15074. (wether you understand it, wether you think it's too technical, 
  15075. wether you think it goes too rast, or too slow, etc), the page can be 
  15076. found at:
  15077.  
  15078.   http://www.mk.dmu.ac.uk/~khcm8ac/Full/Frac/Complex.html
  15079.  
  15080. You can then email me at:
  15081.  
  15082.   khcm8ac@dmu.ac.uk
  15083.  
  15084. If you really want, remove everythin after and including "Full" in 
  15085. the above URL to browes my entire web-site. I've got a page on 
  15086. Complex Number arithmatic (i.e. all the formulas you need), and I've 
  15087. got a few pages on how to program fractals (not language specific, 
  15088. but assumes you know how to program in something).
  15089.  
  15090. All comments egerly awaited. If you could put "WBFN" as the subject 
  15091. line (for my mail program's benifit). Thanks!
  15092.  
  15093. Nam et ipsa scientia potestus est!
  15094. (Sir Francis Bacon)
  15095. Andrew Orphi Coppin
  15096. DMU MK.
  15097.  
  15098. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15099. Post Message:   fractint@lists.xmission.com
  15100. Get Commands:   majordomo@lists.xmission.com "help"
  15101. Administrator:  twegner@phoenix.net
  15102. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15103.  
  15104.  
  15105. -------------------------------------------------------------------------------
  15106.  
  15107. From: Guy Marson <guy.marson@mnhn.lu>
  15108. Subject: Re: (fractint) The price of fractal software
  15109. Date: 23 Feb 1999 14:12:38 +0100
  15110.  
  15111. > I hadn't seen such colors and patterns since the late 60's early
  15112. >70's! :-)
  15113.  
  15114. Ha, haaa, haaaa!!!  (me too!!)
  15115.  
  15116.  
  15117. >I was stunned when I first ran across the works of Bob Carr, Sylvie Gallet,
  15118. >Les St.Clair and others on Compuserve.  
  15119.  
  15120. oh, yeahhhhhhh!!
  15121.  
  15122.  
  15123.  
  15124. PS: 3 more .par to send.. again: later, got too moch to do now! So, sorry
  15125. for replying that late..
  15126.  
  15127. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15128. Post Message:   fractint@lists.xmission.com
  15129. Get Commands:   majordomo@lists.xmission.com "help"
  15130. Administrator:  twegner@phoenix.net
  15131. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15132.  
  15133.  
  15134. -------------------------------------------------------------------------------
  15135.  
  15136. From: Guy Marson <guy.marson@mnhn.lu>
  15137. Subject: Re: (fractint) The price of fractal software
  15138. Date: 23 Feb 1999 14:12:31 +0100
  15139.  
  15140. At 22:16 16.02.1999 -0600, you wrote:
  15141.  
  15142. >I may even become a decent Windows programmer before I die :-)
  15143.  
  15144. I hope you're not dying before Windows ... 
  15145.  
  15146.   ):<
  15147.  
  15148. guy
  15149.  
  15150.  
  15151. PS: one more .frm/.par to send .. later!!
  15152.  
  15153. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15154. Post Message:   fractint@lists.xmission.com
  15155. Get Commands:   majordomo@lists.xmission.com "help"
  15156. Administrator:  twegner@phoenix.net
  15157. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15158.  
  15159.  
  15160. -------------------------------------------------------------------------------
  15161.  
  15162. From: Kerry Mitchell <lkmitch@primenet.com>
  15163. Subject: (fractint) Gravity formulas and pars
  15164. Date: 23 Feb 1999 12:39:27 -0700 (MST)
  15165.  
  15166. I was attempting to re-create an image I did several years ago, when
  15167. I was in the habit of not keeping parameter files.  I managed to rebuild
  15168. the formula, but the exact image is still eluding me.  Until I find it,
  15169. I offer these 2, along with their formulas.
  15170.  
  15171. The formulas are loosely baseed on a satellite in orbit around a planet
  15172. or a star.  Z represents the orbit's radius, and dt2 represents the time
  15173. step.  Making z close to 1 and keeping dt2 small will keep the satellite
  15174. in "orbit" longer (delaying bailout).  In the "gravity-dt2=pix" formula,
  15175. the time step is assigned to the pixel value and the initial z value is
  15176. input.  in the "gravity-z=pix" formula, the initial z value is assigned
  15177. to the pixel, and dt2 is input.
  15178.  
  15179. re-entry { ; copyright Kerry Mitchell 23feb99
  15180.   reset=1960 type=formula formulafile=fractint.frm passes=1 float=y
  15181.   formulaname=gravity-dt2=pix center-mag=-0.11394227162006830/\
  15182.   +0.11013412406947570/163.3133/1/-172.5 params=1/-0.03 maxiter=1000
  15183.   inside=0 periodicity=0 colors=y50<2>y20x00w00<11>`00000<23>0001003\
  15184.   00<30>x00z00z00<61>zy2zz3zz3zz4<112>zzz cyclerange=0/255
  15185.   }
  15186.  
  15187. into-the-abyss { ; copyright Kerry Mitchell 23feb99
  15188.   reset=1960 type=formula formulafile=fractint.frm passes=1 float=y
  15189.   formulaname=gravity-z=pix center-mag=+0.01027932659932658/+0.\
  15190.   10330465015210780/134.0573/1/-17.499/-40.475 params=0.01/0 inside=0
  15191.   maxiter=1000 logmap=yes periodicity=0 colors=xsx<54>i1ih0hh0hg0g\
  15192.   <61>000000100<60>y99zAAzAAzBB<61>zzzzzzzyz<4>yty cyclerange=0/255
  15193.   }
  15194.  
  15195. frm:gravity-z=pix { ; Kerry Mitchell 23feb99
  15196.         ;
  15197.         ; loosely based on gravitational attraction formula
  15198.         ;
  15199.         ; p1 = "time step", small in magnitude (about .1 or less)
  15200.         ; 
  15201.         z1=1, dt2=p1, z=pixel, bailout=1000:
  15202.         z0=z1, z1=z, f=1/z-1/sqr(z)
  15203.         z=2*z1-z0+f*dt2, |z| < bailout
  15204.         }
  15205.  
  15206. frm:gravity-dt2=pix { ; Kerry Mitchell 23feb99
  15207.         ;
  15208.         ; loosely based on gravitational attraction formula
  15209.         ;
  15210.         ; set p1 to about 1 in magnitude, e.g, (1.0,0.1)
  15211.         ; 
  15212.         z1=1, z=p1, dt2=pixel, bailout=1000:
  15213.         z0=z1, z1=z, f=1/z-1/sqr(z)
  15214.         z=2*z1-z0+f*dt2, |z| < bailout
  15215.         }
  15216.  
  15217. Kerry Mitchell
  15218. lkmitch@primenet.com    http://www.primenet.com/~lkmitch/
  15219.  
  15220.  
  15221. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15222. Post Message:   fractint@lists.xmission.com
  15223. Get Commands:   majordomo@lists.xmission.com "help"
  15224. Administrator:  twegner@phoenix.net
  15225. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15226.  
  15227.  
  15228. -------------------------------------------------------------------------------
  15229.  
  15230. From: "Leon Duych" <leon_d@email.msn.com>
  15231. Subject: (fractint) re:Fractal sites "auf deutsch"
  15232. Date: 23 Feb 1999 22:24:21 -0800
  15233.  
  15234. Can anybody recommend sites in German?
  15235.  
  15236. Leon
  15237. leon_d@msn.com
  15238.  
  15239.  
  15240.  
  15241.  
  15242.  
  15243. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15244. Post Message:   fractint@lists.xmission.com
  15245. Get Commands:   majordomo@lists.xmission.com "help"
  15246. Administrator:  twegner@phoenix.net
  15247. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15248.  
  15249.  
  15250. -------------------------------------------------------------------------------
  15251.  
  15252. From: "Jon Camp" <jcamp@cnspace.net>
  15253. Subject: (fractint) one gravijul par, two images
  15254. Date: 23 Feb 1999 23:45:54 -0800
  15255.  
  15256. I was hunting around the popular gravijul fractal late last night looking
  15257. for a flower to give to my girlfriend when I stummbled upon this one. I
  15258. usualy only modify fractals with a paint program once in a blue moon but
  15259. this one for some reason just screamed at me to be modified. So I have
  15260. included the original par as well as links to the orignal fractal and the
  15261. modified fractal.
  15262. Tell me what you think!
  15263.  
  15264. Thanks,
  15265.     Jon Camp
  15266.     chaotic n-space network @
  15267.     http://www.cnspace.net
  15268.  
  15269.  
  15270.  
  15271. Fractint gif: http://www.cnspace.net/ftp_cnspace/FRACT296.GIF
  15272. Modified: http://www.cnspace.net/ftp_cnspace/Fract296.jpg
  15273.  
  15274.  
  15275.  
  15276. jcamp110 { ; jon camp 1999
  15277.            ; chaotic n-space network
  15278.            ; http://www.cnspace.net
  15279.            ; jcamp@cnspace.net
  15280. reset=1960 type=formula formulafile=*.frm
  15281. formulaname=gravijul function=atan/recip/sin
  15282. center-mag=-1.7e-006/-0.0124754/0.3001137 params=1/0/0.1/0.1/12/0
  15283. maxiter=4096 inside=bof60 outside=atan decomp=256 biomorph=0
  15284. colors=000<109>00J00K01K12L<44>bkycmzcmz<84>111000000000<6>001
  15285. }
  15286.  
  15287.  
  15288. frm: gravijul {; r^(-2) Mark Christenson 1/25/98
  15289. ; defaults: p1 = (1,0) p2 = (0,0) p3 = (4,0)
  15290. z = pixel:
  15291. w = fn1(z)
  15292. z = fn3(p1/fn2(w*w)) + p2
  15293. |z| < p3
  15294. ;SOURCE: 98msg.frm
  15295. }
  15296.  
  15297.  
  15298.  
  15299.  
  15300. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15301. Post Message:   fractint@lists.xmission.com
  15302. Get Commands:   majordomo@lists.xmission.com "help"
  15303. Administrator:  twegner@phoenix.net
  15304. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15305.  
  15306.  
  15307. -------------------------------------------------------------------------------
  15308.  
  15309. From: "Andrew Coppin" <KHCM8AC@dmu.ac.uk>
  15310. Subject: (fractint) Prime Numbers
  15311. Date: 25 Feb 1999 16:05:58 GMT
  15312.  
  15313. For years Mathematitians have been trying to decypher the pattern of 
  15314. Prime Numbers. As far as I know, they still haven't managed to do it 
  15315. yet.
  15316.  
  15317. I have a vague idea that this pattern might be fractal (or at lease 
  15318. self-similar). If it's true, it could certainly explane why no one 
  15319. has yet solved the puzzle.
  15320.  
  15321. The reason for my idea comes from a sieving optimization I came up 
  15322. with. Start with a list of numbers, then cross off all the even ones. 
  15323. Now every other number is potentially prime (the odd numbers). Now we 
  15324. go to remove the multibles of 3, but every other one is already gone. 
  15325. Still, after removing the multibles of 3, we are left with so-called 
  15326. "twin Primes", which have the pattern 101000 101000 101000...
  15327. Now, we go to remove the multibles of 5, but some of them are already 
  15328. gone, in the pattern 101000 101000... Self simular? Or just my simple 
  15329. mind getting confused?
  15330.  
  15331. By the way, after removing the multibles of 5, the pattern stands at
  15332. 100000100010100010100010000010 100000100010100010100010000010
  15333.  
  15334. If anyone has a different interpretation, I'd love to hear it!
  15335.  
  15336. P. S. Has anyone else heard about the computer scientists reportedly 
  15337. using Chaos Theroy to create "Chaotic Lasers" that increase to 
  15338. bandwidth of fiber-optic cables? Far out!
  15339.  
  15340. Nam et ipsa scientia potestus est!
  15341. (Sir Francis Bacon)
  15342. Andrew Orphi Coppin
  15343. DMU MK.
  15344.  
  15345. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15346. Post Message:   fractint@lists.xmission.com
  15347. Get Commands:   majordomo@lists.xmission.com "help"
  15348. Administrator:  twegner@phoenix.net
  15349. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15350.  
  15351.  
  15352. -------------------------------------------------------------------------------
  15353.  
  15354. From: "Damien M. Jones" <dmj@fractalus.com>
  15355. Subject: Re: (fractint) Prime Numbers
  15356. Date: 25 Feb 1999 10:16:36 -0600
  15357.  
  15358. Andrew,
  15359.  
  15360.  - The reason for my idea comes from a sieving optimization I came up 
  15361.  - with.
  15362.  
  15363. (laugh) Congratulations, you've just re-invented the Sieve of Eratosthenes,
  15364. a well-known method for isolating prime numbers and a standard computer
  15365. benchmark for many years. :-)
  15366.  
  15367. Damien M. Jones   \\
  15368. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  15369.                     \\  http://www.fractalus.com/
  15370.  
  15371. Please do not post my e-mail address on a web site or
  15372. in a newsgroup.  Thank you.
  15373.  
  15374. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15375. Post Message:   fractint@lists.xmission.com
  15376. Get Commands:   majordomo@lists.xmission.com "help"
  15377. Administrator:  twegner@phoenix.net
  15378. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15379.  
  15380.  
  15381. -------------------------------------------------------------------------------
  15382.  
  15383. From: "Shauna Jones" <shauna@aloha.net>
  15384. Subject: (fractint) Fractint and ELSA GLoria Synergy card?
  15385. Date: 25 Feb 1999 10:49:09 -1000
  15386.  
  15387. I got an ELSA GLoria Synergy display adaptor (8MB SGRAM, 
  15388. hardware 2D and 3D acceleration, video-in/video-out 
  15389. capability). My desktops (OS/2 and W95) are running 
  15390. 1024x768 true color, the card can go up to 1920x1200x256 
  15391. colors. But when I run the VESA2CFG utility, the max 
  15392. resolution it reports is 640x480x256. Trying to select 
  15393. 1024x768x256 gives me the message that this video mode 
  15394. isn't available.
  15395.  
  15396. Anyone else using this card and figured out how to make 
  15397. it work with Fractint? Thanks ...
  15398.  
  15399. Another blast of bits from David
  15400. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  15401. For the best Hawaii & Pacific Basin surf forecast: http://www.surfreporthawaii.com
  15402.  
  15403. Random Thought for this Nanosecond
  15404. Is a Users Manual a guide to the care and feeding of users? (D.Jones)
  15405.  
  15406.  
  15407.  
  15408. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15409. Post Message:   fractint@lists.xmission.com
  15410. Get Commands:   majordomo@lists.xmission.com "help"
  15411. Administrator:  twegner@phoenix.net
  15412. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15413.  
  15414.  
  15415. -------------------------------------------------------------------------------
  15416.  
  15417. From: "Damien M. Jones" <dmj@fractalus.com>
  15418. Subject: Re: (fractint) Fractint and ELSA GLoria Synergy card?
  15419. Date: 25 Feb 1999 15:14:34 -0600
  15420.  
  15421. David,
  15422.  
  15423.  - But when I run the VESA2CFG utility, the max resolution it reports is
  15424.  - 640x480x256.
  15425.  
  15426. It's entirely possible your card's BIOS doesn't support higher resolutions
  15427. in VESA modes. With the decline of DOS, VESA support in video BIOSes is
  15428. becoming unimportant...
  15429.  
  15430. Damien M. Jones   \\
  15431. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  15432.                     \\  http://www.fractalus.com/
  15433.  
  15434. Please do not post my e-mail address on a web site or
  15435. in a newsgroup.  Thank you.
  15436.  
  15437. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15438. Post Message:   fractint@lists.xmission.com
  15439. Get Commands:   majordomo@lists.xmission.com "help"
  15440. Administrator:  twegner@phoenix.net
  15441. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15442.  
  15443.  
  15444. -------------------------------------------------------------------------------
  15445.  
  15446. From: "Justin Altman" <klalkih@hotmail.com>
  15447. Subject: (fractint) Area of fractals?
  15448. Date: 25 Feb 1999 20:17:57 PST
  15449.  
  15450. Does anyone know a reliable approximation of the area of the Mandlebrot 
  15451. set?   How about an exact number, or in terms of constants?
  15452. Did you Know?
  15453. ------If you let the test term for the Mandl. be z there is a polynomial 
  15454. approximation given by z+z^2+2z^3+5z^4+14z^5+42z^6..., and this is 
  15455. remarkingly similar to a Taylor/MacLauren Series, so I tried to find a 
  15456. funtion that would lead to this result.
  15457. f(0)=0
  15458. f'(0)=1
  15459. f"(0)=2
  15460. f(3)(0)=12
  15461. f(4)(0)=120
  15462. .
  15463. .
  15464. .
  15465. f(n)(0)=2^(n-1)* (the product of the first n-2 odds).
  15466.   
  15467. this  leads to:
  15468. f(0)=0
  15469. f'(0)=1, f(n)(0)=(4n-6)f(n-1)(0).
  15470.  
  15471. Anyone know where to go from here?
  15472. Just wondering.
  15473.  
  15474. Justin Altman
  15475.  
  15476.  
  15477.  
  15478. ______________________________________________________
  15479. Get Your Private, Free Email at http://www.hotmail.com
  15480.  
  15481. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15482. Post Message:   fractint@lists.xmission.com
  15483. Get Commands:   majordomo@lists.xmission.com "help"
  15484. Administrator:  twegner@phoenix.net
  15485. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15486.  
  15487.  
  15488. -------------------------------------------------------------------------------
  15489.  
  15490. From: "Jay Hill" <ehill1@san.rr.com>
  15491. Subject: Re: (fractint) Area of fractals?
  15492. Date: 25 Feb 1999 21:27:40 -0800
  15493.  
  15494. You can start your research here...
  15495.  
  15496. http://fractal.mta.ca/sci.fractals-faq/
  15497.  
  15498. and perhaps end it here ....    :-)
  15499.  
  15500. http://www.geocities.com/CapeCanaveral/Lab/3825/Period-Area-16.html
  15501.  
  15502. ----------
  15503. > From: Justin Altman <klalkih@hotmail.com>
  15504. > To: fractint@lists.xmission.com
  15505. > Subject: (fractint) Area of fractals?
  15506. > Date: Thursday, February 25, 1999 8:17 PM
  15507. > Does anyone know a reliable approximation of the area of the Mandlebrot 
  15508. > set?   How about an exact number, or in terms of constants?
  15509. > Did you Know?
  15510. > ------If you let the test term for the Mandl. be z there is a polynomial 
  15511. > approximation given by z+z^2+2z^3+5z^4+14z^5+42z^6..., and this is 
  15512. > remarkingly similar to a Taylor/MacLauren Series, so I tried to find a 
  15513. > funtion that would lead to this result.
  15514. > f(0)=0
  15515. > f'(0)=1
  15516. > f"(0)=2
  15517. > f(3)(0)=12
  15518. > f(4)(0)=120
  15519. > .
  15520. > .
  15521. > .
  15522. > f(n)(0)=2^(n-1)* (the product of the first n-2 odds).
  15523. >   
  15524. > this  leads to:
  15525. > f(0)=0
  15526. > f'(0)=1, f(n)(0)=(4n-6)f(n-1)(0).
  15527. > Anyone know where to go from here?
  15528. > Just wondering.
  15529. > Justin Altman
  15530.  
  15531.  
  15532. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15533. Post Message:   fractint@lists.xmission.com
  15534. Get Commands:   majordomo@lists.xmission.com "help"
  15535. Administrator:  twegner@phoenix.net
  15536. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15537.  
  15538.  
  15539. -------------------------------------------------------------------------------
  15540.  
  15541. From: "Shauna Jones" <shauna@aloha.net>
  15542. Subject: Re: (fractint) Fractint and ELSA GLoria Synergy card?
  15543. Date: 26 Feb 1999 15:26:20 -1000
  15544.  
  15545. On 25 Feb 99 at 15:14, Damien M. Jones wrote:
  15546.  
  15547. >  - But when I run the VESA2CFG utility, the max
  15548. >  resolution it reports is - 640x480x256.
  15549. > It's entirely possible your card's BIOS doesn't support
  15550. > higher resolutions in VESA modes. With the decline of
  15551. > DOS, VESA support in video BIOSes is becoming
  15552. > unimportant...
  15553.  
  15554. Thanks. Sounds like I need to check the ELSA support 
  15555. site and see what VESA capabilities it has. The only 
  15556. mention of it in the manual is in connection with 
  15557. supporting DDC1 and DDC2 for communicating with monitors.
  15558.  
  15559. For now, I guess I explore at 640x480, then render big 
  15560. images to disk/video (goes very fast when you tell the 
  15561. DOS session that it has a huge amount of extended memory 
  15562. - able to do that under OS/2, don't know about W95).
  15563.  
  15564. Another blast of bits from David
  15565. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  15566. For the best Hawaii & Pacific Basin surf forecast: http://www.surfreporthawaii.com
  15567.  
  15568. Random Thought for this Nanosecond
  15569. These are the voyages of the barship Enter-Hic, bearing a fully-loaded crew. (D.Jones)
  15570.  
  15571.  
  15572.  
  15573. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15574. Post Message:   fractint@lists.xmission.com
  15575. Get Commands:   majordomo@lists.xmission.com "help"
  15576. Administrator:  twegner@phoenix.net
  15577. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15578.  
  15579.  
  15580. -------------------------------------------------------------------------------
  15581.  
  15582. From: "Damien M. Jones" <dmj@fractalus.com>
  15583. Subject: Re: (fractint) Fractint and ELSA GLoria Synergy card?
  15584. Date: 26 Feb 1999 19:31:05 -0600
  15585.  
  15586. David,
  15587.  
  15588.  - For now, I guess I explore at 640x480, then render big 
  15589.  - images to disk/video (goes very fast when you tell the 
  15590.  - DOS session that it has a huge amount of extended memory 
  15591.  - - able to do that under OS/2, don't know about W95).
  15592.  
  15593. Yes, you can do it under Win95 too.
  15594.  
  15595. Damien M. Jones   \\
  15596. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  15597.                     \\  http://www.fractalus.com/
  15598.  
  15599. Please do not post my e-mail address on a web site or
  15600. in a newsgroup.  Thank you.
  15601.  
  15602. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15603. Post Message:   fractint@lists.xmission.com
  15604. Get Commands:   majordomo@lists.xmission.com "help"
  15605. Administrator:  twegner@phoenix.net
  15606. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15607.  
  15608.  
  15609. -------------------------------------------------------------------------------
  15610.  
  15611. From: Paul Derbyshire <pderbysh@usa.net>
  15612. Subject: Re: (fractint) Area of fractals?
  15613. Date: 27 Feb 1999 05:43:37 -0500
  15614.  
  15615. At 08:17 PM 2/25/99 PST, you wrote:
  15616. >this  leads to:
  15617. >f(0)=0
  15618. >f'(0)=1, f(n)(0)=(4n-6)f(n-1)(0).
  15619. >
  15620. >Anyone know where to go from here?
  15621.  
  15622. Nowhere. You'll never find a function with these derivatives, because if
  15623. you did, you'd have found a function whose Taylor series about 0 has a zone
  15624. of convergence shaped rather differently than a circle, which can't happen
  15625. according to a theorem in calculus.
  15626.  
  15627. -- 
  15628.    .*.  "Clouds are not spheres, mountains are not cones, coastlines are not
  15629. -()  <  circles, and bark is not smooth, nor does lightning travel in a
  15630.    `*'  straight line."    -------------------------------------------------
  15631.         -- B. Mandelbrot  |http://surf.to/pgd.net
  15632. _____________________ ____|________     Paul Derbyshire     pderbysh@usa.net
  15633. Programmer & Humanist|ICQ: 10423848|
  15634.  
  15635. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15636. Post Message:   fractint@lists.xmission.com
  15637. Get Commands:   majordomo@lists.xmission.com "help"
  15638. Administrator:  twegner@phoenix.net
  15639. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15640.  
  15641.  
  15642. -------------------------------------------------------------------------------
  15643.  
  15644. From: "Shauna Jones" <shauna@aloha.net>
  15645. Subject: Re: (fractint) Fractint and ELSA GLoria Synergy card?
  15646. Date: 27 Feb 1999 11:51:34 -1000
  15647.  
  15648. On 26 Feb 99 at 19:31, Damien M. Jones wrote:
  15649.  
  15650. >  - For now, I guess I explore at 640x480, then render
  15651. >  big - images to disk/video (goes very fast when you
  15652. >  tell the - DOS session that it has a huge amount of
  15653. >  extended memory - - able to do that under OS/2, don't
  15654. >  know about W95).
  15655. > Yes, you can do it under Win95 too.
  15656.  
  15657. Guess I'll have to try it out. Under our old Diamond 
  15658. card, we couldn't run Fractint under W95.
  15659.  
  15660. Another blast of bits from David
  15661. http://www.aloha.net/~shauna/   http://www.hawastsoc.org/
  15662. For the best Hawaii & Pacific Basin surf forecast: http://www.surfreporthawaii.com
  15663.  
  15664. Random Thought for this Nanosecond
  15665. How can you tell a politician's been in the room? You can feel the hot air. (D.Jones)
  15666.  
  15667.  
  15668.  
  15669. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15670. Post Message:   fractint@lists.xmission.com
  15671. Get Commands:   majordomo@lists.xmission.com "help"
  15672. Administrator:  twegner@phoenix.net
  15673. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15674.  
  15675.  
  15676. -------------------------------------------------------------------------------
  15677.  
  15678. From: Gedeon Peteri <gedeon@InfoAve.Net>
  15679. Subject: (fractint) Chebyshev page update
  15680. Date: 01 Mar 1999 00:38:37 -0500
  15681.  
  15682. I replaced all images on my Chebyshev Fractals -- Page 1 with new ones.
  15683. I hope you enjoy them.
  15684.  
  15685. Gedeon
  15686. --
  15687. Fractals: http://www.geocities.com/~gedeonp/index.html
  15688. Member Infinite Fractal Loop
  15689. Last updated: March 1, 1999 - updated page
  15690. Photography: http://members.xoom.com/gedeonp/index.html
  15691. Last updated: February 23, 1999 - three new pages
  15692.  
  15693.  
  15694.  
  15695. Thanks for using Fractint, The Fractals and Fractint Discussion List
  15696. Post Message:   fractint@lists.xmission.com
  15697. Get Commands:   majordomo@lists.xmission.com "help"
  15698. Administrator:  twegner@phoenix.net
  15699. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  15700.  
  15701.