home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractdev / archive / fractdev.200004 < prev    next >
Internet Message Format  |  2000-04-27  |  39KB

  1. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  2. Subject: Fractal Census 2000
  3. Date: 01 Apr 2000 23:26:49 -0600
  4.  
  5. Greetings,
  6.  
  7. It has been about two weeks since the request for the "Fractal Census"
  8. was made, and still receiving an occasional email.  I have been
  9. compiling this information into a Microsoft Excel spreadsheet, and was
  10. only entering the basic stats that was requested.  But, decided to
  11. expand with additional information (web sites, email addresses, physical
  12. addresses, telephone numbers, birthdates, spouses and family members,
  13. etc.).  It has gotten so large, that it now resembles a small database.
  14.  
  15. I have only taken six of the key fields:
  16.       Names
  17.       Various Products Used
  18.       Qty.
  19.       Best or Most Used
  20.       Email Addresses
  21.       Web Sites
  22. to use in the creation of a web page:
  23.       http://home.att.net/~Paul.N.Lee/Fractal_Census.html
  24.  
  25. This is not the completed census data, which will take a few more hours
  26. (or may be days) to finish.  But I thought I would publish what I have
  27. gathered so for.  If someone finds the information for them inaccurate
  28. or incomplete, then please reply to the following email address:
  29.  
  30.           MAILTO:ABPF_Bot@hotmail.com
  31.  
  32.  
  33. Sincerely,
  34. P.N.L.
  35. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  36.  
  37. Thanks for using Fractdev, The Fractint Developer's Discussion List
  38. Post Message:   fractdev@lists.xmission.com
  39. Get Commands:   majordomo@lists.xmission.com "help"
  40. Administrator:  twegner@fractint.org
  41. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  42.  
  43.  
  44. -------------------------------------------------------------------------------
  45.  
  46. From: "Damien M. Jones" <dmj@fractalus.com>
  47. Subject: Re: Fractal Census 2000
  48. Date: 03 Apr 2000 06:41:47 -0400
  49.  
  50. Hi Paul,
  51.  
  52. Please don't include my e-mail address on your census web page. Thanks.
  53.  
  54. Damien M. Jones   \\
  55. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  56.                     \\  http://www.fractalus.com/
  57.  
  58.  
  59.  
  60. Thanks for using Fractdev, The Fractint Developer's Discussion List
  61. Post Message:   fractdev@lists.xmission.com
  62. Get Commands:   majordomo@lists.xmission.com "help"
  63. Administrator:  twegner@fractint.org
  64. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  65.  
  66.  
  67. -------------------------------------------------------------------------------
  68.  
  69. From: Tim Wegner <twegner@swbell.net>
  70. Subject: Concatenated strings
  71. Date: 02 Apr 2000 17:51:31 -0600
  72.  
  73. Scott Boyd has submitted some Xfractint prompt cleanup of places where Xfractint is 
  74. reporting prompts that don't work in Xfractint. I am trying to simplify his suggestions, 
  75. which use  the XFRACT define whenever the Xfractint prompts are different from the 
  76. Fractint prompts.
  77.  
  78. I created a mechanism a long time ago for defines like
  79.  
  80. #ifndef XFRACT
  81. #define UPARR "\x18"
  82. #define DNARR "\x19"
  83. #define RTARR "\x1A"
  84. #define LTARR "\x1B"
  85. #else
  86. #define UPARR "K"
  87. #define DNARR "J"
  88. #define RTARR "L"
  89. #define LTARR "H"
  90. #endif
  91.  
  92. These were meant to be used like this:
  93.  
  94. static FCODE instr1[]  = {"Use " UPARR " and " DNARR " to select values to change"};
  95.  
  96. but are actually used like this:
  97.  
  98. #ifndef XFRACT
  99. static FCODE instr1[]  = {"Use " UPARR " and " DNARR " to select values to change"};
  100. #else
  101. /* Some compilers don't accept "a" "b", so we have to fill in UPARR ourself.  */
  102. static char far instr1[]  = {"Use up(K) and down(J) to select values to change"};
  103. #endif
  104.  
  105.  
  106. Note the comment. Do I still have to worry about compilers that don't support string 
  107. concatination like this:
  108.  
  109. printf("hello ""world\n");
  110.  
  111. The GCC compiler supports it. The reason I want to do this is that I am on a campaign 
  112. to eliminate the XFRACT define whenever possible.
  113.  
  114. Any ANSI-compatible compiler, including BSD and Linux GNU C compiler, should be 
  115. OK. 
  116.  
  117. Tim
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126. Thanks for using Fractdev, The Fractint Developer's Discussion List
  127. Post Message:   fractdev@lists.xmission.com
  128. Get Commands:   majordomo@lists.xmission.com "help"
  129. Administrator:  twegner@fractint.org
  130. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  131.  
  132.  
  133. -------------------------------------------------------------------------------
  134.  
  135. From: "Damien M. Jones" <dmj@fractalus.com>
  136. Subject: Re: Fractal Census 2000
  137. Date: 03 Apr 2000 09:05:20 -0400
  138.  
  139. Hi List,
  140.  
  141.  - Please don't include my e-mail address on your census web page. Thanks.
  142.  
  143. Whoops. This was supposed to go to Paul. I'm not at all sure how it ended
  144. up here! Sorry for the foul-up, folks.
  145.  
  146. Damien M. Jones   \\
  147. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  148.                     \\  http://www.fractalus.com/
  149.  
  150. Please do not post my e-mail address on a web site or
  151. in a newsgroup.  Thank you.
  152.  
  153.  
  154. Thanks for using Fractdev, The Fractint Developer's Discussion List
  155. Post Message:   fractdev@lists.xmission.com
  156. Get Commands:   majordomo@lists.xmission.com "help"
  157. Administrator:  twegner@fractint.org
  158. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  159.  
  160.  
  161. -------------------------------------------------------------------------------
  162.  
  163. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  164. Subject: Re: Fractal Census 2000
  165. Date: 02 Apr 2000 20:58:40 -0500
  166.  
  167. Damien M. Jones wrote:
  168. >
  169. > Hi Paul,
  170.  
  171. Hey there...   :-)
  172.  
  173. >
  174. > Please don't include my e-mail address 
  175. > on your census web page. Thanks.
  176.  
  177. No problem, I will have it removed the next time I update the data base,
  178. and upload as soon as possible.
  179.  
  180. BTW, you might wish to tell Tim Wegner to do the same for this URL:
  181.     http://www.xmission.com/pub/lists/fractint/archive/v01.n406
  182. You are listed there at least three times.
  183.  
  184. Then there are the various other URL's around the world, such as the
  185. following:
  186.     http://www.cs.colostate.edu/~dzubera/2600faq.txt
  187. which has a couple it it.
  188.  
  189. Sincerely,
  190. P.N.L.
  191. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  192.  
  193. Thanks for using Fractdev, The Fractint Developer's Discussion List
  194. Post Message:   fractdev@lists.xmission.com
  195. Get Commands:   majordomo@lists.xmission.com "help"
  196. Administrator:  twegner@fractint.org
  197. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  198.  
  199.  
  200. -------------------------------------------------------------------------------
  201.  
  202. From: Tim Wegner <twegner@swbell.net>
  203. Subject: Re: Fractal Census 2000
  204. Date: 02 Apr 2000 21:13:03 -0600
  205.  
  206. Paul wrote:
  207.  
  208. > BTW, you might wish to tell Tim Wegner to do the same for this URL:
  209. >     http://www.xmission.com/pub/lists/fractint/archive/v01.n406
  210. > You are listed there at least three times.
  211.  
  212. It's a side effect of majordomo lists that all email addresses are 
  213. exposed in the archive. If it's a problem I can probably turn off the 
  214. archiving feature.
  215.  
  216. Thanks for using Fractdev, The Fractint Developer's Discussion List
  217. Post Message:   fractdev@lists.xmission.com
  218. Get Commands:   majordomo@lists.xmission.com "help"
  219. Administrator:  twegner@fractint.org
  220. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  221.  
  222.  
  223. -------------------------------------------------------------------------------
  224.  
  225. From: "Damien M. Jones" <dmj@fractalus.com>
  226. Subject: Re: Fractal Census 2000
  227. Date: 03 Apr 2000 11:10:12 -0400
  228.  
  229. Tim,
  230.  
  231.  - It's a side effect of majordomo lists that all email addresses are 
  232.  - exposed in the archive. If it's a problem I can probably turn off the 
  233.  - archiving feature.
  234.  
  235. Well naturally I would prefer my e-mail address not be published in a
  236. web-accessible version of the list.
  237.  
  238. Paul,
  239.  
  240. I'm well aware that my address shows up in lots of places on the web. The
  241. 2600 FAQ lists it for a rather interesting reason, I think. :-) Usually I
  242. ask them all to be removed, just as I asked you. I've discovered that a
  243. fair bit of spam comes from web site harvesting, so that's why I ask. I
  244. doubt I'll eliminate all of it, but I sure cut out most of the spam sent to
  245. ifl@fractalus.com when I removed it from the IFL pages. So, removing as
  246. many as I can helps.
  247.  
  248. Now that I think about it, though, I don't recall submitting information to
  249. your fractal census. Why am I listed at all? I never thought for a moment
  250. you would personally identify all the participants, either. Certainly when
  251. I think of "census" I don't think of "directory listing".
  252.  
  253. Damien M. Jones   \\
  254. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  255.                     \\  http://www.fractalus.com/
  256.  
  257. Please do not post my e-mail address on a web site or
  258. in a newsgroup.  Thank you.
  259.  
  260.  
  261. Thanks for using Fractdev, The Fractint Developer's Discussion List
  262. Post Message:   fractdev@lists.xmission.com
  263. Get Commands:   majordomo@lists.xmission.com "help"
  264. Administrator:  twegner@fractint.org
  265. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  266.  
  267.  
  268. -------------------------------------------------------------------------------
  269.  
  270. From: Phil McRevis <legalize@xmission.com>
  271. Subject: Re: Concatenated strings 
  272. Date: 03 Apr 2000 12:41:36 -0600
  273.  
  274.  
  275. In article <38E788A3.31071.3EB4F7@localhost>,
  276.     Tim Wegner <twegner@swbell.net>  writes:
  277.  
  278. > Note the comment. Do I still have to worry about compilers that
  279. > don't support string concatination like this:
  280. > printf("hello ""world\n");
  281.  
  282. No.  This has been standard in ANSI C and ANSI C++ for quite some
  283. time.  Any compiler that doesn't support this is a very old compiler.
  284. --
  285. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  286.     ``Ain't it funny that they all fire the pistol,     
  287.       at the wrong end of the race?''--PDBT     
  288. legalize@xmission.com    <http://www.xmission.com/~legalize/who/>
  289.  
  290. Thanks for using Fractdev, The Fractint Developer's Discussion List
  291. Post Message:   fractdev@lists.xmission.com
  292. Get Commands:   majordomo@lists.xmission.com "help"
  293. Administrator:  twegner@fractint.org
  294. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  295.  
  296.  
  297. -------------------------------------------------------------------------------
  298.  
  299. From: Tim Wegner <twegner@swbell.net>
  300. Subject: Re: Fractal Census 2000
  301. Date: 03 Apr 2000 17:46:33 -0600
  302.  
  303. Damien wrote:
  304.  
  305. > Well naturally I would prefer my e-mail address not be published in a
  306. > web-accessible version of the list.
  307.  
  308. I feel that way too. I am investigating whether this can be turned off 
  309. without turning off the digest. It might be a simple as changing read 
  310. permission on the archive directory. I'll do this if possible. I don't 
  311. see a way to do it in the majordomo config file.
  312.  
  313. Tim
  314.  
  315.  
  316. Thanks for using Fractdev, The Fractint Developer's Discussion List
  317. Post Message:   fractdev@lists.xmission.com
  318. Get Commands:   majordomo@lists.xmission.com "help"
  319. Administrator:  twegner@fractint.org
  320. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  321.  
  322.  
  323. -------------------------------------------------------------------------------
  324.  
  325. From: Tim Wegner <twegner@swbell.net>
  326. Subject: Re: Concatenated strings
  327. Date: 03 Apr 2000 20:13:54 -0600
  328.  
  329. Rich wrote:
  330.  
  331. > No.  This has been standard in ANSI C and ANSI C++ for quite some
  332. > time.  Any compiler that doesn't support this is a very old compiler.
  333.  
  334. I knew that, but I needed someone to give me permission :-)
  335.  
  336. This makes a much cleaner way to do the platform-specific user 
  337. interface via defines with strings like:
  338.  
  339.    "To get help press"FK_F1
  340.  
  341. Of course this will be moot when we do the GUI, but for now it is 
  342. useful.
  343.  
  344. If nobody complains, I will massage Scott's user interface changes 
  345. using defines and string concatenation.
  346.  
  347. Tim
  348.  
  349.  
  350. Thanks for using Fractdev, The Fractint Developer's Discussion List
  351. Post Message:   fractdev@lists.xmission.com
  352. Get Commands:   majordomo@lists.xmission.com "help"
  353. Administrator:  twegner@fractint.org
  354. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  355.  
  356.  
  357. -------------------------------------------------------------------------------
  358.  
  359. From: "Jonathan Osuch" <osuchj@uswest.net>
  360. Subject: Xfractint julia off by one
  361. Date: 03 Apr 2000 20:51:39 -0500
  362.  
  363. Tim,
  364.  
  365. I've fixed the off by one problem with Xfractint's julia type.  Now I have
  366. two minor fixes.  I was thinking about starting to incorporate some of
  367. Rich's file/routine reorganization.  The ones that don't break anything.
  368.  
  369. Jonathan
  370.  
  371.  
  372.  
  373. Thanks for using Fractdev, The Fractint Developer's Discussion List
  374. Post Message:   fractdev@lists.xmission.com
  375. Get Commands:   majordomo@lists.xmission.com "help"
  376. Administrator:  twegner@fractint.org
  377. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  378.  
  379.  
  380. -------------------------------------------------------------------------------
  381.  
  382. From: "Scott D. Boyd" <sdboyd@fastlane.net>
  383. Subject: Re: Concatenated strings
  384. Date: 04 Apr 2000 21:58:13 -0500
  385.  
  386. On Mon, 03 Apr 2000, you wrote:
  387.  
  388. I have no complaints Tim, go ahead.
  389.  
  390. Scott
  391.  
  392.  
  393. >    "To get help press"FK_F1
  394. > Of course this will be moot when we do the GUI, but for now it is 
  395. > useful.
  396. > If nobody complains, I will massage Scott's user interface changes 
  397. > using defines and string concatenation.
  398. -- 
  399. email:  sdboyd@fastlane.net
  400. http://www.fastlane.net/~sdboyd/
  401. Introducing Windows 2000 !! -- Reduced to only 65,000 bugs !!
  402.  
  403.  
  404.  
  405. Thanks for using Fractdev, The Fractint Developer's Discussion List
  406. Post Message:   fractdev@lists.xmission.com
  407. Get Commands:   majordomo@lists.xmission.com "help"
  408. Administrator:  twegner@fractint.org
  409. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  410.  
  411.  
  412. -------------------------------------------------------------------------------
  413.  
  414. From: Tim Wegner <twegner@swbell.net>
  415. Subject: Re: Concatenated strings
  416. Date: 08 Apr 2000 13:42:34 -0600
  417.  
  418. I was about to upload patch 10 with my version of Scott's Xfractint 
  419. keystroke prompts, when I realized we have made  a big oversight.
  420.  
  421. On my Linux system, Xfractint uses all the Fractint keys, so all the 
  422. new prompts are wrong!!
  423.  
  424. Fortunately, the way I am doing this is via defines for the prompts 
  425. in fractint.h, so I just need to investigate where the keystroke 
  426. choice is selected, and then make the right set of defines to be 
  427. active in fractint.h.
  428.  
  429. I'm just alerting folks because so you know I am working on this. I 
  430. have also promised Paul de Leeuw that I'd look at the fRAc chunk. 
  431. So much to do, so little time :-)
  432.  
  433. Tim
  434.  
  435.  
  436. Thanks for using Fractdev, The Fractint Developer's Discussion List
  437. Post Message:   fractdev@lists.xmission.com
  438. Get Commands:   majordomo@lists.xmission.com "help"
  439. Administrator:  twegner@fractint.org
  440. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  441.  
  442.  
  443. -------------------------------------------------------------------------------
  444.  
  445. From: Tim Wegner <twegner@swbell.net>
  446. Subject: Patch 10
  447. Date: 08 Apr 2000 15:39:04 -0600
  448.  
  449. I've put patch 10 at ftp.fractint.org.
  450.  
  451. The diff is: 
  452.  
  453. ftp.fractint.org/2000p10.zip
  454.  
  455. I have also updated various other files for patch 10. I have punted 
  456. on the Xfractint prompts for now. Patch 10 implements the 
  457. alterntative prompts - e.g. shift-1 for F1, even though they may not 
  458. be needed. We need to make a define that allows the DOS 
  459. function key prompts to be used with Xfravtint if appropriate.
  460.  
  461. Thanks to Scott Boyd for helping with this patch. The xfractint 
  462. source files has been updated so you can try it.
  463.  
  464. Tim
  465.  
  466.  
  467. Thanks for using Fractdev, The Fractint Developer's Discussion List
  468. Post Message:   fractdev@lists.xmission.com
  469. Get Commands:   majordomo@lists.xmission.com "help"
  470. Administrator:  twegner@fractint.org
  471. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  472.  
  473.  
  474. -------------------------------------------------------------------------------
  475.  
  476. From: "Scott D. Boyd" <sdboyd@fastlane.net>
  477. Subject: Re: Concatenated strings
  478. Date: 08 Apr 2000 18:22:32 -0500
  479.  
  480. Tim,
  481.  
  482. On Sat, 08 Apr 2000, you wrote:
  483. > I was about to upload patch 10 with my version of Scott's Xfractint 
  484. > keystroke prompts, when I realized we have made  a big oversight.
  485. > On my Linux system, Xfractint uses all the Fractint keys, so all the 
  486. > new prompts are wrong!!
  487. That's really strange! Specially since you are running Redhat Linux, upon which
  488. Linux-Mandrake is based. I thought that all the standard English-language PC
  489. keyboards would use the Shift-F* prompts. Possibly a different keyboard-map
  490. file?
  491.  
  492. > Fortunately, the way I am doing this is via defines for the prompts 
  493. > in fractint.h, so I just need to investigate where the keystroke 
  494. > choice is selected, and then make the right set of defines to be 
  495. > active in fractint.h.
  496. >
  497. I saw where the keystroke choice is selected while I was making the mods, but
  498. now I don't remember which source file I saw it in. (Possibly fractint.c)
  499.  
  500. > So much to do, so little time :-)
  501. >
  502. I know that feeling! 
  503.  
  504. Scott
  505. -- 
  506. email:  sdboyd@fastlane.net
  507. http://www.fastlane.net/~sdboyd/
  508. Introducing Windows 2000 !! -- Reduced to only 65,000 bugs !!
  509.  
  510.  
  511.  
  512. Thanks for using Fractdev, The Fractint Developer's Discussion List
  513. Post Message:   fractdev@lists.xmission.com
  514. Get Commands:   majordomo@lists.xmission.com "help"
  515. Administrator:  twegner@fractint.org
  516. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  517.  
  518.  
  519. -------------------------------------------------------------------------------
  520.  
  521. From: Tim Wegner <twegner@swbell.net>
  522. Subject: Re: Concatenated strings
  523. Date: 08 Apr 2000 23:09:38 -0600
  524.  
  525. Scott wrote:
  526.  
  527. > That's really strange! Specially since you are running Redhat Linux, upon which
  528. > Linux-Mandrake is based. I thought that all the standard English-language PC
  529. > keyboards would use the Shift-F* prompts. Possibly a different keyboard-map
  530. > file?
  531.  
  532. I just did a vanilla Mandrake install, so I'm not sure.
  533.  
  534. The shift-1 etc. keys still work, but so do the function keys, the 
  535. cursor keys, and the pageup etc. keys. However the "arrow" 
  536. characters aren't the same, so the character set is different from 
  537. the DOS character set, so some of the fractint.h defines still need 
  538. to be different from Linux.
  539.  
  540. I suggest you grab my patch 10 sources and look at the defines I 
  541. created in fractint.h (FK_F1 etc.). We will need to set up a system 
  542. to use the correct defines.
  543.  
  544. BTW  I saw a bug - when one cursor's around the fractal type list, 
  545. sometimes the type name is written too far to the right, I need to 
  546. look into this.
  547.  
  548. Tim
  549.  
  550.  
  551.  
  552.  
  553. Thanks for using Fractdev, The Fractint Developer's Discussion List
  554. Post Message:   fractdev@lists.xmission.com
  555. Get Commands:   majordomo@lists.xmission.com "help"
  556. Administrator:  twegner@fractint.org
  557. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  558.  
  559.  
  560. -------------------------------------------------------------------------------
  561.  
  562. From: "Scott D. Boyd" <sdboyd@fastlane.net>
  563. Subject: Re: Concatenated strings
  564. Date: 09 Apr 2000 01:23:40 -0500
  565.  
  566. Tim,
  567.  
  568. On Sun, 09 Apr 2000, you wrote:
  569.  
  570. > BTW  I saw a bug - when one cursor's around the fractal type list, 
  571. > sometimes the type name is written too far to the right, I need to 
  572. > look into this.
  573. >
  574. This doesn't happen to me in either 20.0.7 or 20.0.10. Does this happen to
  575. you only in Xfractint? If so, it might be the terminal session you're using.
  576. What terminal session are you using?
  577.  
  578. I have discovered what might be a bug in both Xfractint 20.0.7 and 20.0.10. In
  579. the fractal-type list, select mandelcloud. Just leave the next parameter screen
  580. as is and press Enter. Xfractint promptly exits and closes both windows without
  581. even so much as a "Goodbye"!
  582.  
  583. Scott Boyd
  584.  
  585.  -- 
  586. email:  sdboyd@fastlane.net
  587. http://www.fastlane.net/~sdboyd/
  588. Introducing Windows 2000 !! -- Reduced to only 65,000 bugs !!
  589.  
  590.  
  591.  
  592. Thanks for using Fractdev, The Fractint Developer's Discussion List
  593. Post Message:   fractdev@lists.xmission.com
  594. Get Commands:   majordomo@lists.xmission.com "help"
  595. Administrator:  twegner@fractint.org
  596. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  597.  
  598.  
  599. -------------------------------------------------------------------------------
  600.  
  601. From: "Jonathan Osuch" <osuchj@uswest.net>
  602. Subject: Re: Concatenated strings
  603. Date: 09 Apr 2000 20:31:55 -0500
  604.  
  605. Scott,
  606.  
  607. > I have discovered what might be a bug in both Xfractint 20.0.7 and
  608. 20.0.10. In
  609. > the fractal-type list, select mandelcloud. Just leave the next parameter
  610. screen
  611. > as is and press Enter. Xfractint promptly exits and closes both windows
  612. without
  613. > even so much as a "Goodbye"!
  614.  
  615. Yes, that's a bug.  The cellular type does this also, when you press the
  616. space bar twice.  I tried to find my list of known Xfractint problems to see
  617. if this was on it, but it appears to be lost in the mists of time.  I'll
  618. start a new list.  That way I'm sure to find the old one.
  619.  
  620. (later)  Yep, I found it while looking for something to respond to a
  621. different email.  The type=mandelcloud isn't on it.
  622.  
  623. Jonathan
  624.  
  625.  
  626.  
  627.  
  628. Thanks for using Fractdev, The Fractint Developer's Discussion List
  629. Post Message:   fractdev@lists.xmission.com
  630. Get Commands:   majordomo@lists.xmission.com "help"
  631. Administrator:  twegner@fractint.org
  632. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  633.  
  634.  
  635. -------------------------------------------------------------------------------
  636.  
  637. From: "Scott D. Boyd" <sdboyd@fastlane.net>
  638. Subject: Bugs found in Xfractint 20.0.10
  639. Date: 14 Apr 2000 00:44:27 -0500
  640.  
  641. These bugs may or may not be local to my computer. Will someone 
  642. please try these on their Linux system? I am using Linux-Mandrake 6.1 with
  643. kernel 2.0.13
  644.  
  645. Bug #1 only happens in Xfractint 20.0.10.
  646. Bug #2 happens in both Xfractint 3.11 (Fractint 20.0.7) and Xfractint 20.0.10.
  647.  
  648. 1: When ever I press Shift-2 (or '@') Xfractint shuts down.
  649.    (This keypress works OK in Xfractint 3.11 (aka 20.0.7)).
  650.  
  651. 2: Start Xfractint and draw the default fractal.
  652.    Go back to the main menu
  653.    Shell to Linux, then type exit to get back to Xfractint.
  654.    "Press operation key, or <Esc> to return to Main Menu" 
  655.     will be messed up. (displayed as garbage characters)
  656.    Press Esc to return to main menu
  657.    Press 't' - Xfractint will shut down.
  658.    Or press 'x' and change a parameter, then press 'Enter' - 
  659.    Xfractint will shut down.
  660. Other menu keys will also cause Xfractint to shut down, 
  661. sometimes immediately, sometimes within 2-3 keypresses.
  662.  
  663. I thought this might be something wrong with my computer, so I re-booted into 
  664. Linux and KDE. Still encountered the two bugs. I also tried the above steps
  665. while at the prompt (running Xfractint in diskvideo mode). Xfractint would shut
  666. down, and also print "Segmentation fault" as the error message to the screen.
  667.  
  668.  
  669.  Scott Boyd
  670. -- 
  671. email:  sdboyd@fastlane.net
  672. http://www.fastlane.net/~sdboyd/
  673. Introducing Windows 2000 !! -- Reduced to only 65,000 bugs !!
  674.  
  675.  
  676.  
  677. Thanks for using Fractdev, The Fractint Developer's Discussion List
  678. Post Message:   fractdev@lists.xmission.com
  679. Get Commands:   majordomo@lists.xmission.com "help"
  680. Administrator:  twegner@fractint.org
  681. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  682.  
  683.  
  684. -------------------------------------------------------------------------------
  685.  
  686. From: "Jonathan Osuch" <osuchj@uswest.net>
  687. Subject: Re: Bugs found in Xfractint 20.0.10
  688. Date: 14 Apr 2000 13:10:02 -0500
  689.  
  690. Scott,
  691.  
  692. > These bugs may or may not be local to my computer. Will someone
  693. > please try these on their Linux system? I am using Linux-Mandrake 6.1 with
  694. > kernel 2.0.13
  695.  
  696. > Bug #1 only happens in Xfractint 20.0.10.
  697. > Bug #2 happens in both Xfractint 3.11 (Fractint 20.0.7) and Xfractint
  698. 20.0.10.
  699.  
  700. Neither problem shows up on mine.  I'm using Linux-Mandrake 7.0 with kernel
  701. 2.0.14.
  702.  
  703. Jonathan
  704.  
  705.  
  706.  
  707. Thanks for using Fractdev, The Fractint Developer's Discussion List
  708. Post Message:   fractdev@lists.xmission.com
  709. Get Commands:   majordomo@lists.xmission.com "help"
  710. Administrator:  twegner@fractint.org
  711. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  712.  
  713.  
  714. -------------------------------------------------------------------------------
  715.  
  716. From: "Damien M. Jones" <dmj@fractalus.com>
  717. Subject: Re: Bugs found in Xfractint 20.0.10
  718. Date: 15 Apr 2000 23:07:49 -0400
  719.  
  720. Hey gang,
  721.  
  722.  - > Bug #1 only happens in Xfractint 20.0.10.
  723.  - > Bug #2 happens in both Xfractint 3.11 (Fractint 20.0.7) and Xfractint
  724.  - 20.0.10.
  725.  - 
  726.  - Neither problem shows up on mine.  I'm using Linux-Mandrake 7.0 with
  727.  - kernel 2.0.14.
  728.  
  729. I just got Caldera's eDesktop (OpenLinux) installed on my home system as a
  730. dual-boot with Windows 2000. If I get a chance this weekend, I'll give
  731. Xfractint a shot and see what happens.
  732.  
  733. Damien M. Jones   \\
  734. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  735.                     \\  http://www.fractalus.com/
  736.  
  737. Please do not post my e-mail address on a web site or
  738. in a newsgroup.  Thank you.
  739.  
  740.  
  741. Thanks for using Fractdev, The Fractint Developer's Discussion List
  742. Post Message:   fractdev@lists.xmission.com
  743. Get Commands:   majordomo@lists.xmission.com "help"
  744. Administrator:  twegner@fractint.org
  745. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  746.  
  747.  
  748. -------------------------------------------------------------------------------
  749.  
  750. From: "Jonathan Osuch" <osuchj@uswest.net>
  751. Subject: Allegro Graphics Package
  752. Date: 17 Apr 2000 20:48:25 -0500
  753.  
  754. Tim,
  755.  
  756. I'm looking seriously at the Allegro Graphics Package for use with Fractint.
  757. The main reason is portability.  It has ports to djgpp, some Windows
  758. compilers (Borland), Unix/Linux, and BEOS.  It includes drivers for mice,
  759. sound, keyboard, and a high precision timer.
  760.  
  761. The svgalib package has specific video drivers (not VESA) which appears to
  762. be very limiting.  OTOH, Allegro can use FreeBE/AF, a low level video driver
  763. interface with all the features of VESA 3.0.
  764.  
  765. Are there any other packages we should look at?  Are there other
  766. considerations?
  767.  
  768. Jonathan
  769.  
  770.  
  771.  
  772. Thanks for using Fractdev, The Fractint Developer's Discussion List
  773. Post Message:   fractdev@lists.xmission.com
  774. Get Commands:   majordomo@lists.xmission.com "help"
  775. Administrator:  twegner@fractint.org
  776. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  777.  
  778.  
  779. -------------------------------------------------------------------------------
  780.  
  781. From: Tim Wegner <twegner@swbell.net>
  782. Subject: Re: Allegro Graphics Package
  783. Date: 17 Apr 2000 22:01:50 -0600
  784.  
  785. Jonathan wrote:
  786.  
  787. > I'm looking seriously at the Allegro Graphics Package for use with Fractint.
  788. > The main reason is portability.  It has ports to djgpp, some Windows
  789. > compilers (Borland), Unix/Linux, and BEOS.  It includes drivers for mice,
  790. > sound, keyboard, and a high precision timer.
  791.  
  792. Yes, Allegro is very portable, and as you said it has additional stuff 
  793. like sound we can use. It is meant for game programmers, but even 
  794. though we don't need it all, we can use it to good advantage.
  795.  
  796. > The svgalib package has specific video drivers (not VESA) which appears to
  797. > be very limiting.
  798.  
  799. I didn't realize it wasn't VESA. That about rules it out IMHO. 
  800. Console graphics have to be VESA or we're dead. Although VESA 
  801. support for the higher resolutions is problematic on some boards 
  802. these days ...
  803.  
  804. >  OTOH, Allegro can use FreeBE/AF, a low level video driver
  805. > interface with all the features of VESA 3.0.
  806.  
  807. That sounds good.
  808.  
  809. > Are there any other packages we should look at?  Are there other
  810. > considerations?
  811.  
  812. I think that's about it for non-X operation. Going this route is just to 
  813. get us permanently into a 32 bit platform. The non-graphics 
  814. console itself will be getting more rare. However I still think this 
  815. would be a good step for us even if just a transition. And I'll bet the 
  816. console will be with us for a while yet. Does Allegro have an X 
  817. incarnation that can run in an Xterm?  
  818.  
  819. The other relevant packages would be portable GUIs. The main 
  820. choices are WxWindows and GTK toolkit. But you don't have to 
  821. worry about that just yet. I think making a simple-minded port of 
  822. the DOS Fractint (maybe the float-only version) to djgpp/Linux 
  823. would be a good step, and not impossibly hard. These should be 
  824. maintained in synch with Xfractint, but leave the medium model 
  825. fractint behind. 
  826.  
  827. Once accomplished, there are all kinds of global 
  828. cleanup/restructuring/rearchitecting that could be done. I hope we 
  829. can make use of some of Rich's X massage work.
  830.  
  831. I have two more Kalman filter classes, this Thursday and next,  
  832. then I hope I can free up some time for this. The perpetual dream 
  833. :-) 
  834.  
  835. BTW Kalman filters are amazing. A Kalman filter is an algorithm for 
  836. taking measurements on the fly to calculate a state vector (as in 
  837. position and velocity of a spacecraft), but it is smart enough to 
  838. keep track of how good the measurements are, and to use the 
  839. better ones more, as well as keeping track of how good it's current 
  840. estimate of the state is, and factor that in along with the 
  841. measurements. This is, quite literally, rocket science :-). Wonderful 
  842. for orbit determination software.
  843.  
  844. Tim
  845.  
  846.  
  847. Thanks for using Fractdev, The Fractint Developer's Discussion List
  848. Post Message:   fractdev@lists.xmission.com
  849. Get Commands:   majordomo@lists.xmission.com "help"
  850. Administrator:  twegner@fractint.org
  851. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  852.  
  853.  
  854. -------------------------------------------------------------------------------
  855.  
  856. From: kragen@pobox.com (Kragen Sitaker)
  857. Subject: Re: Allegro Graphics Package
  858. Date: 18 Apr 2000 09:08:24 -0400 (EDT)
  859.  
  860. Tim Wegner writes:
  861. > > The svgalib package has specific video drivers (not VESA) which appears to
  862. > > be very limiting.
  863. > I didn't realize it wasn't VESA. That about rules it out IMHO. 
  864. > Console graphics have to be VESA or we're dead. Although VESA 
  865. > support for the higher resolutions is problematic on some boards 
  866. > these days ...
  867.  
  868. IIRC, there are problems running real-mode VESA drivers in
  869. protected-mode Linux.  svgalib and X are Linux's answers to VESA.
  870.  
  871. About running Allegro in an xterm: xterm is more or less limited to
  872. displaying text.  I've displayed graphics in xterms by using a small
  873. font and displaying text, but this is slow and not recommended.
  874. XwinAlleg opens a new window IIRC.
  875.  
  876. -- 
  877. <kragen@pobox.com>       Kragen Sitaker     <http://www.pobox.com/~kragen/>
  878. The Internet stock bubble didn't burst on 1999-11-08.  Hurrah!
  879. <URL:http://www.pobox.com/~kragen/bubble.html>
  880. The power didn't go out on 2000-01-01 either.  :)
  881.  
  882.  
  883. Thanks for using Fractdev, The Fractint Developer's Discussion List
  884. Post Message:   fractdev@lists.xmission.com
  885. Get Commands:   majordomo@lists.xmission.com "help"
  886. Administrator:  twegner@fractint.org
  887. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  888.  
  889.  
  890. -------------------------------------------------------------------------------
  891.  
  892. From: Phil McRevis <legalize@xmission.com>
  893. Subject: Re: Allegro Graphics Package 
  894. Date: 18 Apr 2000 11:39:22 -0600
  895.  
  896.  
  897. Whatever you decide to use PLEASE introduce an abstraction layer that
  898. is *not* allegro.  I feel this is very important if you really want to
  899. keep portability.  Once you tie yourself to a particular package --
  900. even one that claims to be portable and I've looked at allegro and its
  901. not bad -- you also tie yourself to its weaknesses.  Please don't
  902. design in another round of dependency weaknesses (like our current
  903. dependency on DOS/VGA specifics), or we'll just have to fight this
  904. battle again at some later date.  This was my intention behind the
  905. driver abstraction that I massaged into the code.  It is not dependent
  906. on anything specifically, it merely provides abstract function.
  907. --
  908. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  909.     ``Ain't it funny that they all fire the pistol,     
  910.       at the wrong end of the race?''--PDBT     
  911. legalize@xmission.com    <http://www.xmission.com/~legalize/who/>
  912.  
  913. Thanks for using Fractdev, The Fractint Developer's Discussion List
  914. Post Message:   fractdev@lists.xmission.com
  915. Get Commands:   majordomo@lists.xmission.com "help"
  916. Administrator:  twegner@fractint.org
  917. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  918.  
  919.  
  920. -------------------------------------------------------------------------------
  921.  
  922. From: Phil McRevis <legalize@xmission.com>
  923. Subject: Re: Allegro Graphics Package 
  924. Date: 18 Apr 2000 11:41:08 -0600
  925.  
  926.  
  927. You really don't want to try and do graphics in an xterm!  Xterm is
  928. not meant for that!  Its for text!
  929.  
  930. Unless you intend to provide a text-driver a la XaoS, I would advise
  931. forgetting completely about anything running in an xterm.
  932.  
  933. One of the biggest kludges in xfractint right now is that you *must*
  934. run it in an xterm and the code has all this crap littered everywhere
  935. to deal with both curses *and* Xlib!  All that curses code needs to be
  936. removed and text I/O should be done with xlib.  If that approach had
  937. been taken originally, the xfractint code would be much simpler and
  938. would support the PC key mappings better.
  939. --
  940. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  941.     ``Ain't it funny that they all fire the pistol,     
  942.       at the wrong end of the race?''--PDBT     
  943. legalize@xmission.com    <http://www.xmission.com/~legalize/who/>
  944.  
  945. Thanks for using Fractdev, The Fractint Developer's Discussion List
  946. Post Message:   fractdev@lists.xmission.com
  947. Get Commands:   majordomo@lists.xmission.com "help"
  948. Administrator:  twegner@fractint.org
  949. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  950.  
  951.  
  952. -------------------------------------------------------------------------------
  953.  
  954. From: "Jonathan Osuch" <osuchj@uswest.net>
  955. Subject: Re: Allegro Graphics Package
  956. Date: 18 Apr 2000 17:01:56 -0500
  957.  
  958. Tim wrote,
  959.  
  960. > Although VESA support for the higher resolutions is problematic on some
  961. boards
  962. > these days ...
  963.  
  964. That is the purpose of FreeBE/AF.  I believe it is similar (identical?) to
  965. univbe.
  966.  
  967. > Does Allegro have an X incarnation that can run in an Xterm?
  968.  
  969. Allegro can use either X or svgalib under Linux.
  970.  
  971. > A Kalman filter is an algorithm for taking measurements on the fly to
  972. calculate a state
  973. > vector (as in position and velocity of a spacecraft), but it is smart
  974. enough to keep track
  975. > of how good the measurements are, and to use the better ones more, as well
  976. as
  977. > keeping track of how good it's current estimate of the state is, and
  978. factor that in along
  979. > with the measurements. This is, quite literally, rocket science :-).
  980.  
  981. Cool!  What are you going to do with this knowledge when you are done with
  982. the class?
  983.  
  984. Jonathan
  985.  
  986.  
  987.  
  988. Thanks for using Fractdev, The Fractint Developer's Discussion List
  989. Post Message:   fractdev@lists.xmission.com
  990. Get Commands:   majordomo@lists.xmission.com "help"
  991. Administrator:  twegner@fractint.org
  992. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  993.  
  994.  
  995. -------------------------------------------------------------------------------
  996.  
  997. From: Tim Wegner <twegner@swbell.net>
  998. Subject: Re: Allegro Graphics Package
  999. Date: 18 Apr 2000 20:36:42 -0600
  1000.  
  1001.  
  1002. > Cool!  What are you going to do with this knowledge when you are done with
  1003. > the class?
  1004.  
  1005. I use it directly at work. I am working with GPS receiver models 
  1006. that contain Kalman filters, and we use Kalman filters to do orbit 
  1007. determination for the space shuttle and the space station.
  1008.  
  1009. Kalman filters can be used in almost any situation where 
  1010. measurements are youse to calculate something.
  1011.  
  1012. I haven't figured out any application to fractals ...  yet :-)
  1013.  
  1014. Tim
  1015.  
  1016.  
  1017. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1018. Post Message:   fractdev@lists.xmission.com
  1019. Get Commands:   majordomo@lists.xmission.com "help"
  1020. Administrator:  twegner@fractint.org
  1021. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1022.  
  1023.  
  1024. -------------------------------------------------------------------------------
  1025.  
  1026. From: "Scott D. Boyd" <sdboyd@fastlane.net>
  1027. Subject: Xfractint 20.0.10
  1028. Date: 19 Apr 2000 16:20:30 -0500
  1029.  
  1030. I have been looking thru the source of Xfractint-20.0.10 trying to find the
  1031. reason why it crashes with a segfault whenever I press Shift-2 from the main
  1032. menu. I have discovered that the modified version of 20.0.9 that I worked on
  1033. (which I called xfractint-dev) doesn't crash. I had submitted the changes to Tim
  1034. Wegner, which he changed somewhat, and posted to the ftp server as
  1035. xfractint-20.0.10. I still need to go through the 20.0.9 source and apply my
  1036. original changes one-by-one, compile, and test.
  1037.  
  1038. Anyway.... Here's something interesting I have discovered:
  1039. When I run Xfractint in an xterm window, I can't use the Function keys. I need 
  1040. to use the Shift-n keys as indicated in the man page. *But*, when I run
  1041. Xfractint in a Konsole window (KDE's version of xterm), the function keys work
  1042. fine. Apparently there are some differences in the way Konsole and Xterm map
  1043. the keyboard. 
  1044.  
  1045. Tim - you told me that the Function keys worked fine in your Xfractint. Are you
  1046. running it from an xterm session, or something else?
  1047.  
  1048. Scott Boyd
  1049.  
  1050. -- 
  1051. email:  sdboyd@fastlane.net
  1052. http://www.fastlane.net/~sdboyd/
  1053.  
  1054. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1055. Post Message:   fractdev@lists.xmission.com
  1056. Get Commands:   majordomo@lists.xmission.com "help"
  1057. Administrator:  twegner@fractint.org
  1058. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1059.  
  1060.  
  1061. -------------------------------------------------------------------------------
  1062.  
  1063. From: Tim Wegner <twegner@swbell.net>
  1064. Subject: Re: Xfractint 20.0.10
  1065. Date: 19 Apr 2000 17:45:56 -0600
  1066.  
  1067. Scott wrote:
  1068.  
  1069. > I had submitted the changes to Tim
  1070. > Wegner, which he changed somewhat, 
  1071.  
  1072. Actually, I changed them a lot! I hope I didn't mess things up, by I 
  1073. guess I did. The intent of my changes was just to eliminate many 
  1074. of the #ifdef's. I didn't intend to actually change the executable 
  1075. code from what you had. I guess I should look through the changes.
  1076.  
  1077. > Tim - you told me that the Function keys worked fine in your Xfractint. Are you
  1078. > running it from an xterm session, or something else?
  1079.  
  1080. KDE/Xterm session. I have a lot of trouble with 
  1081. Gnome/Enlightenment. I am using Linux-Mandrake 7.0.
  1082.  
  1083. Tim
  1084.  
  1085.  
  1086. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1087. Post Message:   fractdev@lists.xmission.com
  1088. Get Commands:   majordomo@lists.xmission.com "help"
  1089. Administrator:  twegner@fractint.org
  1090. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1091.  
  1092.  
  1093. -------------------------------------------------------------------------------
  1094.  
  1095. From: "Jonathan Osuch" <osuchj@uswest.net>
  1096. Subject: Patch 2000P11
  1097. Date: 21 Apr 2000 15:10:31 -0500
  1098.  
  1099. Tim,
  1100.  
  1101. I put patch 11 on the ftp site, along with a DOS executable.  This patch is
  1102. so small for two reasons.  I intend to start the process of interfacing with
  1103. the Allegro package.  Using Rich's work as a starting point, of course.  I
  1104. don't want any bug fixes lost in the muck.
  1105.  
  1106. The second reason is that business will be taking me to Arkansas for the
  1107. next week or two and I won't be online.  I'll be around until Sunday
  1108. evening.
  1109.  
  1110. Jonathan
  1111.  
  1112.  
  1113.  
  1114. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1115. Post Message:   fractdev@lists.xmission.com
  1116. Get Commands:   majordomo@lists.xmission.com "help"
  1117. Administrator:  twegner@fractint.org
  1118. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1119.  
  1120.  
  1121. -------------------------------------------------------------------------------
  1122.  
  1123. From: "Rupert Millard" <rupertam@hotmail.com>
  1124. Subject: (fractint) 3d transform doesn't work in float only version
  1125. Date: 28 Apr 2000 09:52:59 GMT
  1126.  
  1127. Hello,
  1128.  
  1129. I thought about putting this on the buglist but I think it's a fundamental 
  1130. problem with float-only:
  1131.  
  1132. In the float-only version of Fractint 3d transforms don't work.
  1133.  
  1134. From,
  1135.  
  1136. Rupert
  1137.  
  1138. website: http://www.geocities.com/kangarupert
  1139. ________________________________________________________________________
  1140. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
  1141.  
  1142.  
  1143. Thanks for using Fractdev, The Fractint Developer's Discussion List
  1144. Post Message:   fractdev@lists.xmission.com
  1145. Get Commands:   majordomo@lists.xmission.com "help"
  1146. Administrator:  twegner@fractint.org
  1147. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractdev"
  1148.  
  1149.