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

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #273
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest        Monday, August 17 1998        Volume 01 : Number 273
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Fri, 14 Aug 1998 16:51:40 -0700 (PDT)
  18. From: Ken Childress <kchildre@uccs.jpl.nasa.gov>
  19. Subject: Re: (fractint) Looking for a PAR parser
  20.  
  21. > Like many Fractint users, I have zillions of PARs in various files. Way too
  22. > may PARS and way too many files. I?d like to get some insight (from my
  23. > entire collection) into which particular formulas and their primary
  24. > parameters are giving me the best results. So here's a request for folks on
  25. > the Fractint list.
  26. > Does anyone know of a utility that will parse PARs? I?d like to extract a
  27. > flat-file from PARs that would contain the PARname, formulaname, P1/P2/P3,
  28. > fn1/fn2/fn3/fn4, and maybe one or two other parameters.
  29.  
  30. Whaddaya know, I found one.  :-)
  31.  
  32. Following is a very crude PERL script (since I'm not a PERL expert)
  33. that will take a list of .PAR files, and spit out the contents of
  34. the individual pars like:
  35.  
  36. jo_we_01.par,jowe0101,formula,_k.frm,wiltetrate,0/0/0/0/0/0
  37.  
  38. which is
  39.  
  40. filename, par name, type, formula file, formula, params
  41.  
  42. Those familiar with PERL could easily change the script to output
  43. different fields, change the order, etc.
  44.  
  45. I did not extensively test it, so I can't guarantee there won't be any
  46. problems.  It should run on a Win version of PERL, but I can't test that
  47. option.  All the rest of the standard disclaimers apply, use at your own
  48. risk, unsupported, no implied or actual warranties, etc.
  49.  
  50. If anyone decides to improve it, feel free to do so.  Just please send
  51. me a copy if you do.  Other than that, have fun with it.  I hope it can
  52. be found useful.
  53.  
  54.  
  55. Ken...
  56.  
  57. ===================
  58.  
  59.  
  60. #!/usr/local/bin/perl
  61. #
  62. # parsePar.pl
  63. #
  64. # Parse .PAR files into a format that could be imported to a spreadsheet
  65. #
  66.  
  67. $pars = "";
  68.  
  69. #
  70. # Parse command line arguments.
  71. #
  72. while (@ARGV) {
  73.  
  74.     $_ = shift (@ARGV);
  75.     print $_ . "\n";
  76.     if (/^-v/)
  77.     {
  78.     $verbose = 1;
  79.     next;
  80.     }
  81.     elsif (/^-f/) {
  82.     $outfile = shift @ARGV;
  83.     next;
  84.     }
  85.     else {
  86.     push @parFiles, $_;
  87.     }
  88. }
  89.  
  90. #
  91. # Open Outputfile
  92. #
  93. if ($outfile) {
  94.     open (OUTFILE, ">>$outfile") || die "Error opening: $outfile.\n";
  95. }
  96.  
  97. #
  98. # Process each .PAR file.
  99. #
  100. while (@parFiles) {
  101.  
  102.     $parFile = $_;
  103.  
  104.     if (length ($parFile) > 0) {
  105.  
  106.     if ($verbose) {
  107.         print "Processing PAR file, $parFile.\n";
  108.     }
  109.  
  110.     ReadPARFile ($parFile);
  111.  
  112.     ParsePARFile ($pars);
  113.     }
  114.     else {
  115.     close (OUTFILE);
  116.     exit 1;
  117.     }
  118. }
  119.  
  120.  
  121. sub ReadPARFile {
  122.     local ($parFile) = @_;
  123.  
  124.     $pars = "";
  125.  
  126.     open (PARFILE, "<$parFile") || die "Error opening $parFile.\n";
  127.  
  128.     while (<PARFILE>) {
  129.  
  130.     # Ignore blank and comment lines.
  131.     #
  132.     if (!/^(\s*;.*|\s*\/\/.*|\s*)$/) {
  133.         # Remove any comments from end of line.
  134.         #
  135.         if (/.*\/\//) {
  136.         ($_) = /(.*)\/\//;
  137.         $_ .= "\n";
  138.         }
  139.         $pars .= $_;
  140.     }
  141.     }
  142.     close (PARFILE);
  143.  
  144.     return;
  145. }
  146.  
  147. sub ParsePARFile {
  148.  
  149.     local ($pars) = @_;
  150.  
  151.     @par = split /\s*}/i, $pars;
  152.  
  153.     foreach $p (@par) {
  154.  
  155.     ($parName, $parameters) = split /\s*\s{/, $p;
  156.     $parName =~ s/\s*//;
  157.  
  158.     if (length ($parName) > 0) {
  159.         $_ = $parameters;
  160.         $status = ($reset) = /.*reset\s*=\s*(\w+)\s*/;
  161.  
  162.         $_ = $parameters;
  163.         $status = ($type) = /.*type\s*=\s*(\w+)\s*/;
  164.  
  165.         $_ = $parameters;
  166.         $status = ($formulafile) = /.*formulafile\s*=\s*(\w+\.\w+)\s*/;
  167.  
  168.         $_ = $parameters;
  169.         $status = ($formulaname) = /.*formulaname\s*=\s*(\w+)\s*/;
  170.  
  171.         $_ = $parameters;
  172.         $status = ($centermag) =
  173.         /.*center\-mag\s*=\s*([\-\d\/\.]*)\s*/;
  174.  
  175.         $_ = $parameters;
  176.         $status = ($params) = /.*params\s*=\s*([\-\w\/]*)\s*/;
  177.  
  178.         $_ = $parameters;
  179.         $status = ($maxiter) = /.*maxiter\s*=\s*(\w+)\s*/;
  180.  
  181.         $_ = $parameters;
  182.         $status = ($inside) = /.*inside\s*=\s*(\w+)\s*/;
  183.  
  184.         $_ = $parameters;
  185.         $status = ($outside) = /.*outside\s*=\s*(\w+)\s*/;
  186.  
  187.         print OUTFILE
  188.         $parFile . "," .
  189.         $parName . "," .
  190.         $type . "," .
  191.         $formulafile . "," .
  192.         $formulaname . "," .
  193.         $params . "\n";
  194.  
  195.         $_ = "";
  196.     }
  197.     }
  198. }
  199.  
  200.  
  201.  
  202. - --------------------------------------------------------------
  203. Thanks for using Fractint, The Fractals and Fractint Discussion List
  204. Post Message:   fractint@lists.xmission.com
  205. Get Commands:   majordomo@lists.xmission.com "help"
  206. Administrator:  twegner@phoenix.net
  207. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  208.  
  209. ------------------------------
  210.  
  211. Date: Sat, 15 Aug 1998 07:36:15 -0700
  212. From: "Angela Wilczynski" <wizzle@beachnet.com>
  213. Subject: (fractint) Batch Processing
  214.  
  215. Does anyone know of a Win95 program that will reduce the size of jpg's
  216. in a batch process? I want to be able to convert my pics to thumbnails
  217. as quickly and easily as possible.  
  218.  
  219. Currently I have PSP and Corel's Photopaint.
  220.  
  221. Angela
  222.  
  223. - --------------------------------------------------------------
  224. Thanks for using Fractint, The Fractals and Fractint Discussion List
  225. Post Message:   fractint@lists.xmission.com
  226. Get Commands:   majordomo@lists.xmission.com "help"
  227. Administrator:  twegner@phoenix.net
  228. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  229.  
  230. ------------------------------
  231.  
  232. Date: Sat, 15 Aug 1998 09:43:11 -0700
  233. From: "Jay Hill" <ehill1@san.rr.com>
  234. Subject: Re: (fractint) first message
  235.  
  236. Please post the location of gallet-6-01.frm. Your web page 
  237. does not (that I could find) reference your formula files. 
  238. Spanky has only a few.
  239. Thanks,
  240. Jay
  241. - ----------
  242. > Hi Gilbert,
  243. >   Welcome aboard!
  244. > >> Here are some pars from Sylvie Gallet formula :
  245. >   Thanks for sharing.  Very nice images!
  246. >   Cheers,
  247. >         - Sylvie
  248.  
  249.  
  250. - --------------------------------------------------------------
  251. Thanks for using Fractint, The Fractals and Fractint Discussion List
  252. Post Message:   fractint@lists.xmission.com
  253. Get Commands:   majordomo@lists.xmission.com "help"
  254. Administrator:  twegner@phoenix.net
  255. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  256.  
  257. ------------------------------
  258.  
  259. Date: Sat, 15 Aug 1998 12:28:56 -0500
  260. From: Bob Margolis <rttyman@wwa.com>
  261. Subject: (fractint) Re: Gallet-6-01
  262.  
  263. Hi Jay;
  264.  
  265. Here 'tis from my collection.
  266.  
  267.  
  268.  
  269. Gallet-6-01 { ; Sylvie Gallet [101324,3444], 1996
  270.   z = pixel , x = real(z) , y = imag(z) :
  271.    x1 = x - p1*fn1(y + p2*fn2(x - p3*fn3(y)))
  272.    y1 = y - p1*fn1(x + p2*fn2(y - p3*fn3(x)))
  273.    x = x1 , y = y1
  274.    z = x + flip(y)
  275.     |z| <= 32
  276.   }
  277.  
  278. Bob Margolis
  279.  
  280.  
  281.  
  282. Jay Hill wrote:
  283. > Please post the location of gallet-6-01.frm. Your web page
  284. > does not (that I could find) reference your formula files.
  285. > Spanky has only a few.
  286.  
  287. - --------------------------------------------------------------
  288. Thanks for using Fractint, The Fractals and Fractint Discussion List
  289. Post Message:   fractint@lists.xmission.com
  290. Get Commands:   majordomo@lists.xmission.com "help"
  291. Administrator:  twegner@phoenix.net
  292. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  293.  
  294. ------------------------------
  295.  
  296. Date: Sat, 15 Aug 1998 15:15:32 -0400
  297. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  298. Subject: Re: (fractint) first message
  299.  
  300. Hi Jay,
  301.  
  302. >> Please post the location of gallet-6-01.frm. Your web page does not
  303. >> (that I could find) reference your formula files.  Spanky has only a
  304. >> few.
  305.  
  306.   All my formula files are available on my wob page; Gallet-6.frm is in
  307. gallet-b.zip.
  308.  
  309.   Cheers,
  310.  
  311.         - Sylvie
  312.  
  313. - --------------------------------------------------------------
  314. Thanks for using Fractint, The Fractals and Fractint Discussion List
  315. Post Message:   fractint@lists.xmission.com
  316. Get Commands:   majordomo@lists.xmission.com "help"
  317. Administrator:  twegner@phoenix.net
  318. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  319.  
  320. ------------------------------
  321.  
  322. Date: Sat, 15 Aug 1998 17:16:04 -0700
  323. From: "Jay Hill" <ehill1@san.rr.com>
  324. Subject: Re: (fractint) first message
  325.  
  326. I'll try one more time. I looked at the only page I know of for you:
  327. http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  328.  
  329. http://ourworld.compuserve.com/homepages/Sylvie_Gallet/gallet-b.zip 
  330. gets page not found.
  331.  
  332. So where is this file? Please give exact URL.
  333. Thanks,
  334. Jay
  335.  
  336. > Hi Jay,
  337. > >> Please post the location of gallet-6-01.frm. Your web page does not
  338. > >> (that I could find) reference your formula files.  Spanky has only a
  339. > >> few.
  340. >   All my formula files are available on my wob page; Gallet-6.frm is in
  341. > gallet-b.zip.
  342. >   Cheers,
  343. >         - Sylvie
  344.  
  345.  
  346. - --------------------------------------------------------------
  347. Thanks for using Fractint, The Fractals and Fractint Discussion List
  348. Post Message:   fractint@lists.xmission.com
  349. Get Commands:   majordomo@lists.xmission.com "help"
  350. Administrator:  twegner@phoenix.net
  351. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  352.  
  353. ------------------------------
  354.  
  355. Date: Sat, 15 Aug 1998 06:05:05 -0700
  356. From: cindy mitchell <cindym@vegasnet.net>
  357. Subject: Re: (fractint) first message
  358.  
  359. Hi,
  360. The page you are looking for is - 
  361. http://ourworld.compuserve.com/homepages/Sylvie_Gallet/page_1_e.htm
  362.  
  363.         Cindy
  364. At 05:16 PM 8/15/98 -0700, you wrote:
  365. >I'll try one more time. I looked at the only page I know of for you:
  366. >http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  367. >
  368. >http://ourworld.compuserve.com/homepages/Sylvie_Gallet/gallet-b.zip 
  369. >gets page not found.
  370. >
  371. >So where is this file? Please give exact URL.
  372. >Thanks,
  373. >Jay
  374. >
  375. >> 
  376. >> Hi Jay,
  377. >> 
  378. >> >> Please post the location of gallet-6-01.frm. Your web page does not
  379. >> >> (that I could find) reference your formula files.  Spanky has only a
  380. >> >> few.
  381. >> 
  382. >>   All my formula files are available on my wob page; Gallet-6.frm is in
  383. >> gallet-b.zip.
  384. >> 
  385. >>   Cheers,
  386. >> 
  387. >>         - Sylvie
  388. >
  389. >
  390. >--------------------------------------------------------------
  391. >Thanks for using Fractint, The Fractals and Fractint Discussion List
  392. >Post Message:   fractint@lists.xmission.com
  393. >Get Commands:   majordomo@lists.xmission.com "help"
  394. >Administrator:  twegner@phoenix.net
  395. >Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  396. >
  397. >
  398.  
  399. - --------------------------------------------------------------
  400. Thanks for using Fractint, The Fractals and Fractint Discussion List
  401. Post Message:   fractint@lists.xmission.com
  402. Get Commands:   majordomo@lists.xmission.com "help"
  403. Administrator:  twegner@phoenix.net
  404. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  405.  
  406. ------------------------------
  407.  
  408. Date: Sat, 15 Aug 1998 19:18:24 -0700
  409. From: "Jay Hill" <ehill1@san.rr.com>
  410. Subject: Re: (fractint) first message
  411.  
  412. Thank you! I see the zip file has '_' not '-'.
  413. Found them. 
  414.  
  415. And thank you Bob Margolis for posting the formula.
  416.  
  417. Now as I drop back into warp and hit Fractint.....
  418. Jay
  419.  
  420. > Hi,
  421. > The page you are looking for is - 
  422. > http://ourworld.compuserve.com/homepages/Sylvie_Gallet/page_1_e.htm
  423. >  
  424. >         Cindy
  425. > At 05:16 PM 8/15/98 -0700, you wrote:
  426. > >I'll try one more time. I looked at the only page I know of for you:
  427. > >http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  428. > >
  429. > >http://ourworld.compuserve.com/homepages/Sylvie_Gallet/gallet-b.zip 
  430. > >gets page not found.
  431. > >
  432. > >So where is this file? Please give exact URL.
  433. > >Thanks,
  434. > >Jay
  435. > >
  436. > >> 
  437. > >> Hi Jay,
  438. > >> 
  439. > >> >> Please post the location of gallet-6-01.frm. Your web page does not
  440. > >> >> (that I could find) reference your formula files.  Spanky has only a
  441. > >> >> few.
  442. > >> 
  443. > >>   All my formula files are available on my wob page; Gallet-6.frm is in
  444. > >> gallet-b.zip.
  445. > >> 
  446. > >>   Cheers,
  447. > >> 
  448. > >>         - Sylvie
  449. > >
  450.  
  451.  
  452. - --------------------------------------------------------------
  453. Thanks for using Fractint, The Fractals and Fractint Discussion List
  454. Post Message:   fractint@lists.xmission.com
  455. Get Commands:   majordomo@lists.xmission.com "help"
  456. Administrator:  twegner@phoenix.net
  457. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  458.  
  459. ------------------------------
  460.  
  461. Date: Sat, 15 Aug 1998 22:41:02 EDT
  462. From: <GregJ56590@aol.com>
  463. Subject: (fractint) Continuous color histrogram fractals.
  464.  
  465. I found the answer to my question about how to get RGB, or at least
  466. "continuous color histogram" fractals. 
  467.  
  468. Download Tierazon!
  469.  
  470. See
  471.  
  472. http://home.hiwaay.net/~stephenf/
  473.  
  474. I'm sure this is un-PC, kind of like telling a CorelDream3D conference about
  475. POV-Ray.  But if I had the question, I'm sure others would have. 
  476.  
  477. - --------------------------------------------------------------
  478. Thanks for using Fractint, The Fractals and Fractint Discussion List
  479. Post Message:   fractint@lists.xmission.com
  480. Get Commands:   majordomo@lists.xmission.com "help"
  481. Administrator:  twegner@phoenix.net
  482. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  483.  
  484. ------------------------------
  485.  
  486. Date: Sun, 16 Aug 1998 03:53:18 -0500
  487. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  488. Subject: Re: (fractint) Batch Processing
  489.  
  490. Angela Wilczynski wrote:
  491. > Does anyone know of a Win95 program that will reduce the size of jpg's
  492. > in a batch process? I want to be able to convert my pics to thumbnails
  493. > as quickly and easily as possible.
  494. > Currently I have PSP and Corel's Photopaint.
  495. >
  496.  
  497. The same people that brought you PSP (JASC at http://www.jasc.com/ )
  498. have a couple of items available at their website.
  499.  
  500. Then there is "ThumbsPlus" by Cerious Software Inc., which may be found
  501. at http://www.cerious.com/ .
  502.  
  503. And at least a half dozen others are available.
  504.  
  505. P.N.L.
  506. - -------------------------------------------------
  507.      Why do most folks hate cynics so much?
  508.        Because we're almost always right.
  509. - -------------------------------------------------
  510. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  511.  
  512. - --------------------------------------------------------------
  513. Thanks for using Fractint, The Fractals and Fractint Discussion List
  514. Post Message:   fractint@lists.xmission.com
  515. Get Commands:   majordomo@lists.xmission.com "help"
  516. Administrator:  twegner@phoenix.net
  517. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  518.  
  519. ------------------------------
  520.  
  521. Date: Sun, 16 Aug 1998 09:45:28 +0200
  522. From: gilbert Donchez <gdonchez@club-internet.fr>
  523. Subject: Re: (fractint) first message
  524.  
  525. Hello,
  526.  I have forgotten to write the formula with the pars ...
  527. Sorry
  528.         Gilbert
  529.  
  530. Jay Hill a =E9crit:
  531.  
  532. > Please post the location of gallet-6-01.frm. Your web page
  533. > does not (that I could find) reference your formula files.
  534. > Spanky has only a few.
  535. > Thanks,
  536. > Jay
  537. > ----------
  538. > >
  539. > > Hi Gilbert,
  540. > >
  541. > >   Welcome aboard!
  542. > >
  543. > > >> Here are some pars from Sylvie Gallet formula :
  544. > >
  545. > >   Thanks for sharing.  Very nice images!
  546. > >
  547. > >   Cheers,
  548. > >
  549. > >         - Sylvie
  550. >
  551. > --------------------------------------------------------------
  552. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  553. > Post Message:   fractint@lists.xmission.com
  554. > Get Commands:   majordomo@lists.xmission.com "help"
  555. > Administrator:  twegner@phoenix.net
  556. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  557.  
  558.  
  559.  
  560. - --------------------------------------------------------------
  561. Thanks for using Fractint, The Fractals and Fractint Discussion List
  562. Post Message:   fractint@lists.xmission.com
  563. Get Commands:   majordomo@lists.xmission.com "help"
  564. Administrator:  twegner@phoenix.net
  565. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  566.  
  567. ------------------------------
  568.  
  569. Date: Sun, 16 Aug 1998 04:36:38 -0400
  570. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  571. Subject: Re: (fractint) first message
  572.  
  573. Hi Jay,
  574.  
  575. >> Thank you! I see the zip file has '_' not '-'. Found them.  =
  576.  
  577.  
  578.   Sorry for the typo!
  579.  
  580.   Cheers,
  581.  
  582.         - Sylvie
  583.  
  584. - --------------------------------------------------------------
  585. Thanks for using Fractint, The Fractals and Fractint Discussion List
  586. Post Message:   fractint@lists.xmission.com
  587. Get Commands:   majordomo@lists.xmission.com "help"
  588. Administrator:  twegner@phoenix.net
  589. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  590.  
  591. ------------------------------
  592.  
  593. Date: Sun, 16 Aug 1998 10:07:23 +0100 (BST)
  594. From: "Iain.Stirling" <nau96158@ccsun.strath.ac.uk>
  595. Subject: Re: (fractint) Disk-video takes longer?
  596.  
  597. Hi folks,
  598.  
  599. Here's an idea I used to use when I had my 24mB 486 - make a RAMdisk with 
  600. RAMDRIVE.SYS, copy the whole of FRACTINT onto it, and then run it from 
  601. that disk, and create your disk-video images there! This obviously 
  602. provides a considerable increase in speed.
  603.  
  604. I don't know how well that will work under 95 or 98 though, as I haven't 
  605. tried it...
  606.  
  607.  
  608. Iain G. Stirling
  609.  
  610.  
  611. - --------------------------------------------------------------
  612. Thanks for using Fractint, The Fractals and Fractint Discussion List
  613. Post Message:   fractint@lists.xmission.com
  614. Get Commands:   majordomo@lists.xmission.com "help"
  615. Administrator:  twegner@phoenix.net
  616. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  617.  
  618. ------------------------------
  619.  
  620. Date: Sun, 16 Aug 1998 11:50:28 +0200
  621. From: "Dean-Christian Strik" <cstrik.isg@hetnet.nl>
  622. Subject: Re: (fractint) Disk-video takes longer?
  623.  
  624. Iain wrote:
  625.  
  626. >Hi folks,
  627. >
  628. >Here's an idea I used to use when I had my 24mB 486 - make a RAMdisk with
  629. >RAMDRIVE.SYS, copy the whole of FRACTINT onto it, and then run it from
  630. >that disk, and create your disk-video images there! This obviously
  631. >provides a considerable increase in speed.
  632. >
  633. >I don't know how well that will work under 95 or 98 though, as I haven't
  634. >tried it...
  635. >
  636. >
  637. >Iain G. Stirling
  638.  
  639.  
  640. I already posted this approach. Ramdrive.sys does work fine with win95. I
  641. guess it works with 98 as well, but haven't tested it yet.
  642.  
  643. Christian
  644.  
  645.  
  646.  
  647.  
  648. - --------------------------------------------------------------
  649. Thanks for using Fractint, The Fractals and Fractint Discussion List
  650. Post Message:   fractint@lists.xmission.com
  651. Get Commands:   majordomo@lists.xmission.com "help"
  652. Administrator:  twegner@phoenix.net
  653. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  654.  
  655. ------------------------------
  656.  
  657. Date: Sun, 16 Aug 1998 21:10:44 +0100 (BST)
  658. From: "Iain.Stirling" <nau96158@ccsun.strath.ac.uk>
  659. Subject: Re: (fractint) Disk-video takes longer?
  660.  
  661. > Iain wrote:
  662. > >Hi folks,
  663. > >
  664. > >Here's an idea I used to use when I had my 24mB 486 - make a RAMdisk with
  665. > >RAMDRIVE.SYS, copy the whole of FRACTINT onto it, and then run it from
  666. > >that disk, and create your disk-video images there! This obviously
  667. > >provides a considerable increase in speed.
  668. > >
  669. > >I don't know how well that will work under 95 or 98 though, as I haven't
  670. > >tried it...
  671. > >
  672. > >
  673. > >Iain G. Stirling
  674. > I already posted this approach. Ramdrive.sys does work fine with win95. I
  675. > guess it works with 98 as well, but haven't tested it yet.
  676. > Christian
  677.  
  678. Oops! Sorry Christian - I must have missed that message, as I only get to 
  679. check my mail here once a fortnight, and as you know there are easily 200 
  680. messages in that time!
  681.  
  682. Iain. 
  683.  
  684. > --------------------------------------------------------------
  685. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  686. > Post Message:   fractint@lists.xmission.com
  687. > Get Commands:   majordomo@lists.xmission.com "help"
  688. > Administrator:  twegner@phoenix.net
  689. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  690.  
  691.  
  692. - --------------------------------------------------------------
  693. Thanks for using Fractint, The Fractals and Fractint Discussion List
  694. Post Message:   fractint@lists.xmission.com
  695. Get Commands:   majordomo@lists.xmission.com "help"
  696. Administrator:  twegner@phoenix.net
  697. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  698.  
  699. ------------------------------
  700.  
  701. Date: Sun, 16 Aug 1998 16:02:33 -0700
  702. From: "Mike and Linda Allison" <gumbycat@ix.netcom.com>
  703. Subject: Re: (fractint) Continuous color histrogram fractals.
  704.  
  705. Greg wrote:
  706. >  Tierazon . . . I'm sure this is un-PC, kind of like telling a
  707. CorelDream3D conference about
  708. >POV-Ray.  But if I had the question, I'm sure others would have.
  709.  
  710.  
  711. Actually, discussions about other fractal programs come up periodically.
  712. I don't think anyone minds!
  713. Linda
  714.  
  715.  
  716. - --------------------------------------------------------------
  717. Thanks for using Fractint, The Fractals and Fractint Discussion List
  718. Post Message:   fractint@lists.xmission.com
  719. Get Commands:   majordomo@lists.xmission.com "help"
  720. Administrator:  twegner@phoenix.net
  721. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  722.  
  723. ------------------------------
  724.  
  725. Date: Sun, 16 Aug 1998 19:25:17 -0500
  726. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  727. Subject: Re: (fractint) plagiarism
  728.  
  729. Kragen wrote:
  730. >
  731. > For now.  If Congress passes the current "WIPO implementation"
  732. > bill, fair use will be dead.
  733. >
  734.  
  735. U.S. House passes Internet copyright bill
  736. - -----------------------------------------
  737.   (Posted at 6:28 PM PT, Aug 4, 1998)
  738.  
  739. The U.S. House of Representatives on Tuesday approved by a voice vote a
  740. bill that extends copyright protection to material on the Internet. 
  741.  
  742. The bill, based on treaties drafted by the World Intellectual Property
  743. Organization (WIPO) in December of 1996, covers written material and
  744. sound recordings.  Its intent is to protect copyright holders, including
  745. software developers, recording artists, and publishers, from illegal
  746. electronic distribution of intellectual property. 
  747.  
  748. The U.S. Senate in May approved its version of the bill.  The House and
  749. Senate bills will be sent to a conference committee to work out the
  750. differences between the two versions.  The Senate is in recess until
  751. Sept. 1 and the House is on break from Aug. 10 to Sept. 8, so the
  752. conference committee will not meet until both return.
  753.  
  754. (further information at following URL)
  755. http://www.infoworld.com/cgi-bin/displayStory.pl?98084.wicopyright.htm
  756.  
  757. P.N.L.
  758. - -------------------------------------------------
  759.      Why do most folks hate cynics so much?
  760.        Because we're almost always right.
  761. - -------------------------------------------------
  762. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  763.  
  764. - --------------------------------------------------------------
  765. Thanks for using Fractint, The Fractals and Fractint Discussion List
  766. Post Message:   fractint@lists.xmission.com
  767. Get Commands:   majordomo@lists.xmission.com "help"
  768. Administrator:  twegner@phoenix.net
  769. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  770.  
  771. ------------------------------
  772.  
  773. Date: Sun, 16 Aug 1998 20:03:03 
  774. From: "Nhan Nguyen" <nguy0505@tc.umn.edu>
  775. Subject: Re: (fractint) Continuous color histrogram fractals.
  776.  
  777. On Sun, 16 Aug 1998 16:02:33 -0700,
  778. fractint@lists.xmission.com wrote...
  779. >Greg wrote:
  780. >>  Tierazon . . . I'm sure this is un-PC, kind of like telling a
  781. >CorelDream3D conference about
  782. >>POV-Ray.  But if I had the question, I'm sure others would have.
  783. >
  784. >
  785. >Actually, discussions about other fractal programs come up periodically.
  786. >I don't think anyone minds!
  787. >Linda
  788. >
  789. >
  790. Tiera-Zon rocks! I love using it. If you like to see some samples, go to 
  791. this site
  792.  
  793. http://www.tc.umn.edu/~nguy0505/Fractals.htm
  794.  
  795.  
  796.  
  797.  
  798.  
  799.  
  800. - --------------------------------------------------------------
  801. Thanks for using Fractint, The Fractals and Fractint Discussion List
  802. Post Message:   fractint@lists.xmission.com
  803. Get Commands:   majordomo@lists.xmission.com "help"
  804. Administrator:  twegner@phoenix.net
  805. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  806.  
  807. ------------------------------
  808.  
  809. Date: Sun, 16 Aug 1998 20:29:01 -0600
  810. From: "Tim Wegner" <twegner@phoenix.net>
  811. Subject: Re: (fractint) Continuous color histrogram fractals.
  812.  
  813. Linda wrote:
  814.  
  815. > Actually, discussions about other fractal programs come up periodically.
  816. > I don't think anyone minds!
  817.  
  818. The charter for this list allows fractal-related discussion involving any program. 
  819. We don't have to apologize for dominance of fractint talk, which is not always 
  820. welcome elsewhere (understandably), but discussion related to other fractal 
  821. programs is certainly welcome here.
  822.  
  823. Tim
  824.  
  825.  
  826.  
  827. - --------------------------------------------------------------
  828. Thanks for using Fractint, The Fractals and Fractint Discussion List
  829. Post Message:   fractint@lists.xmission.com
  830. Get Commands:   majordomo@lists.xmission.com "help"
  831. Administrator:  twegner@phoenix.net
  832. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  833.  
  834. ------------------------------
  835.  
  836. Date: Sun, 16 Aug 1998 22:46:16 EDT
  837. From: <RParracho@aol.com>
  838. Subject: (fractint) quickie pars
  839.  
  840. Just a few images for your perusal.
  841. Just want to thank everyone involved for:
  842.     alt-tabing into and out of windows without scambled soup display
  843.     I can now use all the vesa modes on my computer (SF7 fantastic high
  844. resolution...need a bigger monitor)
  845.  
  846. Has anyone had any problems with Fractint in win98?  I loaded Fractint on my
  847. computer at work and all it does is abort and tell me I don't have enough
  848. memory!  its a pentiumII 300mhz 64mb ram.  I've tried in dos mode also and the
  849. same problem occurs (thank God for my travel laptop..just imagine work w/o
  850. Fractals).  This could just be a intranet set up issue but I can't ask my ITM
  851. to reconfigure the computer for fractint.  My big fear is; if I upgrade at
  852. home and I can't run fractint I'll loose my mind not to mention withdrawl
  853. pains.
  854.  
  855. Old_Man100         { ; (c) R Parracho Aug 16, 1998 t=  0:01:26.46 66mhz
  856.   reset=1960 type=formula formulafile=rspf007.frm formulaname=rsp_7150
  857.   center-mag=0.721753/0.937891/34.36426 float=y maxiter=256 inside=0
  858.   periodicity=0 rseed=-2436
  859.   colors=000DTP<11>ohh<15>www<14>kTWjQUjPV<13>j2ui0wg2w<14>CWn<14>dWafV`fW\
  860.   `<13>ZifYjgZje<14>v_0<11>740310000`QVYOT<13>TA_S8`S9`<11>PPZPRZPSZOUYQUY\
  861.   SUY<13>zVW<12>j8Nh7Ng5Me3Le5N<13>kjukmxjmw<13>`mk_mjYli<14>0OJ<2>9RN
  862.   }
  863.  
  864. Old_Man101             { ; (c) R Parracho Aug 16, 1998 t=  0:04:09.64 66mhz
  865.   reset=1960 type=formula formulafile=rspf007.frm formulaname=rsp_7150
  866.   center-mag=+0.60250391236306800/+0.35855949895615850/77.51938
  867.   float=y maxiter=256 inside=0 logmap=8 periodicity=0
  868.   colors=CCCzbO<3>zv4wz0<4>7z00z3<4>0zs3wz<6>w3zz2x<8>zlEzt6zy1qz0<4>2z00z\
  869.   9<4>0zx7sz<4>kFzs7zz0z<7>zeLzjGznCzt6zy1qz0<4>2z00z9<4>0zx7sz<4>kFzs7zz0\
  870.   z<7>zeLzjGznCzt6zy1qz0<4>2z00z9<3>0zn60t<6>z00z60<6>zy0tz0<4>Hz0Ex5<4>0g\
  871.   Z0Sh0Jn08u20x<6>v04z20<5>zm0zu0xz0<3>Tz0Lz0Fy2<4>2jW0bb0Sh0Jn08u20x<6>v0\
  872.   4z20<5>zm0zu0xz0<3>Tz0Lz0Fy2<4>2jW0bb0Sh0Eq03x60t<6>z00z60<6>zy0tz0<4>Hz\
  873.   0Ex5<4>0gZ0Ye0Nk0Eq03x60t3wz<6>w3zz2x<5>zYT
  874.   }
  875.  
  876. Cara_Colinha        { ; (c) R Parracho Aug 14, 1998 t=  0:01:08.26 66mhz
  877.   reset=1960 type=formula formulafile=rspf006.frm formulaname=rsp_6010
  878.   passes=b
  879.   center-mag=-0.84975366056201220/+0.19807835526681440/899.6512/1/-114.999
  880.   float=y maxiter=512 periodicity=0
  881.   colors=000_UW<28>fkPfkPeiQ<37>48`<21>nEB<32>AMl<59>GCMGCMHDN<35>eTWr``fT\
  882.   W<11>oY_WI_<16>_TW
  883.   }
  884.  
  885. Jeweled_Spiral     { ; (c) R Parracho Aug 16, 1998 t=  0:11:44.47 66mhz
  886.              ; using Jay Hill's colorit-3f formula
  887.              ; Colors are a perversion of skittles.map (owner unknown)
  888.              ; I swear it's a P.Carlson map but don't know for sure
  889.   reset=1960 type=formula formulafile=_c.frm formulaname=colorit-3f
  890.   passes=t
  891.   center-mag=+0.48291805946791840/+0.04620864300626323/4108.632
  892.   params=0.5/0 float=y maxiter=512 inside=0 outside=summ periodicity=0
  893.   colors=000A40<3>W40`40d40i40<2>s40v40x40y40z40z40<2>x40<2>p40m40i40d40`4\
  894.   0<4>A40440040<15>0z0<15>0403444645856A67D89FAAHDBJHCMKDOPDQUESY<4>Gby<3>\
  895.   FVcESYDQUDOPCMKBJHAHD9FA7D86A6585464344450<4>WD0`F0dG0iI0<2>sN0vP0xR0yS0\
  896.   zU0zV0<2>xR0<2>pM0mK0iI0dG0`F0<4>A6045006606607708808A09C09F0AI<2>0CV0DZ\
  897.   0Dd<2>0Ft0Gy0Ft<2>0Dd0DZ0CV0BQ0BM0AI09F09C08A0880770660662679A7ED8KH9PKB\
  898.   VOD_SGdVJhZNmaR<2>vldxpiysozwtzzy<2>xpi<2>peWmaRhZNdVJ_SGVODPKBKH9ED89A7\
  899.   267376<2>KH7PL7VO8`S9dVAiZB<2>siFvlHxpI<2>zzN<2>xpI<2>peEmbCiZBdVA`S9VO8\
  900.   <4>376365865D66I67N69S6BW6E_7Ic7Lg7Qj7Vm7Zo7cq7h<2>s8ys8tr7nq7ho7cm7Z<2>\
  901.   c7L
  902.   }
  903.  
  904. Spider_Vision      { ; (c) R Parracho Aug 16, 1998 t=  0:00:53.50 66mhz
  905.   reset=1960 type=formula formulafile=rspf007.frm formulaname=rsp_7160
  906.   center-mag=0.502097/-0.0019666/6.592827 float=y maxiter=512 inside=0
  907.   periodicity=0 rseed=-2436
  908.   colors=000000065<8>0zy<9>r0q<9>000<5>221221221332332332<212>zzy
  909.   }
  910.  
  911. Kelp_Garden        { ; (c) R Parracho Aug 16, 1998 t=  0:04:31.22 66mhz
  912.   reset=1960 type=formula formulafile=rspf006.frm formulaname=rsp_6011
  913.   center-mag=-0.464626/0.708804/9.453583 float=y maxiter=256 inside=0
  914.   periodicity=0 rseed=-2436
  915.   colors=070dBP<5>j1S<16>9n_<13>wxF<23>q6i<26>sbBpmNmyZ<25>R6t<25>L`VKaUKb\
  916.   TJcSJdRIfP<21>AZUAZU9YV9XV<19>C6VC5VE8U<15>hqK<20>ODKMBJMBI<5>Q7BQ69R58R\
  917.   56S45T33<9>N75
  918.   }
  919.  
  920. Qatar              { ; (c) R Parracho Aug 16, 1998 t=  0:02:23.42 66mhz
  921.   reset=1960 type=formula formulafile=rspf006.frm formulaname=rsp_6040
  922.   center-mag=-0.225352/0/0.6666667 params=1.25/0/2/0 float=y
  923.   maxiter=256 inside=0 periodicity=0 rseed=-2436
  924.   colors=000Q9T<4>94`ZIT<4>WolVvpWDV<3>KLrXCS<3>P9gZCP<6>dFTXIS<4>NojZEO<5\
  925.   >ZTF_WDaIP<5>sqPZFSZIWZM_JWD3p1dOM<2>wyDJ7qZBO<4>U5JZIR<5>`wcWIP<3>JgOXK\
  926.   U<2>QgicQXhcemrnGKzcN`hYlnhxfWJnoD_EU<5>iWy_IN<5>iv8VHN<5>1n5RMM<2>3pCZH\
  927.   R<5>XldWrgUBV<2>F8oM7e82vaFP<5>onN<5>VQv<4>cOheNehOf<4>wUk<6>wBI<6>Hvo<7\
  928.   >ckG<7>6h6<7>dOa<4>l6mn2pmAj<3>ffJRcaA`udYYghajsf`CR<6>oAicTThiXnzaaKJ<2\
  929.   >mg1ZHO<3>ZaH_BW`Aba9i2K6ZNW_Yb`iiZIP<5>XuL_CP<6>m8TWBQTAS
  930.   }
  931.  
  932. Qatar_1            { ; (c) R Parracho Aug 16, 1998 t=  0:02:32.81 66mhz
  933.   reset=1960 type=formula formulafile=rspf006.frm formulaname=rsp_6040
  934.   center-mag=0.0346667/0.118497/22.5347 params=1.25/0/2/0 float=y
  935.   maxiter=256 inside=0 periodicity=0 rseed=-2436
  936.   colors=000<6>ADOCFSFFS<10>oB`wAc<23>ryF<8>FJH<71>bdacebbeb<17>JnLIoKImK<\
  937.   17>7Ea6Bb6Bb<27>PMaQMaRN`SN`UM_VMZ<14>qEOsDNsEO<34>www_WJWUE
  938.   }
  939.  
  940. Water_Colors       { ; (c) R Parracho Aug 16, 1998 t=  0:05:35.27 66mhz
  941.   reset=1960 type=formula formulafile=rspf006.frm formulaname=rsp_6050
  942.   center-mag=+0.71076127385740650/-0.06190258334781629/836.4882/1/57.499
  943.   params=-2/0.5 float=y maxiter=1000 logmap=11 periodicity=0
  944.   rseed=-2436
  945.   colors=070dBP<5>j1S<16>9n_<13>wxF<23>q6i<26>sbBpmNmyZ<25>R6t<29>JdRIfPIf\
  946.   P<20>AZUAZU9YV9XV<20>C5V<15>fnLhqKgpK<19>ODKMBJMBI<9>S45T33T33<8>N75
  947.   }
  948.  
  949. frm:rsp_7150{;rsp 16aug98
  950. ;z=(.537285,.537285),
  951. z=.015625
  952. c=pixel:
  953. z=z^5+z^2+c
  954. |z|<=164}
  955.  
  956. frm:rsp_6010  {;rsp 14AUG98
  957. z=sqrt(-pixel),n=1, c=pixel:
  958. n=n+1, z=(z-c)*(z+c)*(z+1),
  959. |z|<=(256/n)}
  960.  
  961. frm:rsp_6011  {;rsp 15AUG98
  962. z=-1/(2*pixel), c=pixel:
  963. f=z*z+c, oz=z, z=1/z, z=1-z, 
  964. z=1/(1-z), z=(z-1)/z, 
  965. z=z/(z-1), z=z*z*c+z,
  966. fz=2*c*z+1
  967. real(f*fz/z)<=1000}
  968.  
  969. frm:rsp_6040{;rsp 16aug98
  970. z=c=p2*pixel:
  971. f=sin(z*z+z+1),
  972. g=(2*z+1)*cos(z*z+z+1),
  973. z=z-p1*f/g,
  974. .00001<=|f|,}
  975.  
  976. frm:rsp_6050 {;rsp 16aug98
  977. x=pixel,  c=real(pixel), d=imag(pixel), y=p1:
  978. g=x*x*x/(x-1), z=(g)+c+(d*y), y=x, x=z,
  979. |z|<=4}
  980.  
  981. - --------------------------------------------------------------
  982. Thanks for using Fractint, The Fractals and Fractint Discussion List
  983. Post Message:   fractint@lists.xmission.com
  984. Get Commands:   majordomo@lists.xmission.com "help"
  985. Administrator:  twegner@phoenix.net
  986. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  987.  
  988. ------------------------------
  989.  
  990. Date: Sun, 16 Aug 1998 20:45:56 -0700
  991. From: "Angela Wilczynski" <wizzle@beachnet.com>
  992. Subject: Re: (fractint) quickie pars
  993.  
  994. RParracho@aol.com wrote:
  995. > Just a few images for your perusal.
  996. > Just want to thank everyone involved for:
  997. >         alt-tabing into and out of windows without scambled soup display
  998. >         I can now use all the vesa modes on my computer (SF7 fantastic high
  999. > resolution...need a bigger monitor)
  1000. > Has anyone had any problems with Fractint in win98?  I loaded Fractint on my
  1001. > computer at work and all it does is abort and tell me I don't have enough
  1002. > memory!  its a pentiumII 300mhz 64mb ram.  I've tried in dos mode also and the
  1003. > same problem occurs (thank God for my travel laptop..just imagine work w/o
  1004. > Fractals).  This could just be a intranet set up issue but I can't ask my ITM
  1005. > to reconfigure the computer for fractint.  My big fear is; if I upgrade at
  1006. > home and I can't run fractint I'll loose my mind not to mention withdrawl
  1007. > pains.
  1008. >
  1009. <<snipped>>
  1010.  
  1011. I just installed win98 here at chez wizzle and have had no problems
  1012. running fractint by starting right out with a dos prompt with win98 up
  1013. and running. 
  1014.  
  1015. Angela
  1016.  
  1017. - --------------------------------------------------------------
  1018. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1019. Post Message:   fractint@lists.xmission.com
  1020. Get Commands:   majordomo@lists.xmission.com "help"
  1021. Administrator:  twegner@phoenix.net
  1022. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1023.  
  1024. ------------------------------
  1025.  
  1026. Date: Mon, 17 Aug 1998 00:53:47 -0400
  1027. From: Barry Bluestein <barryblue@mindspring.com>
  1028. Subject: Re: (fractint) Running FRACTINT in WIN95
  1029.  
  1030. Fliguer, Miguel wrote:
  1031.  
  1032. > > Turner Rentz[SMTP:treyr@atr.net] wrote :
  1033. > >
  1034. > >>>Fractint 19.6 DOS does not run under NT; I could only
  1035. > >>>get it to draw in the background to disk.
  1036. >
  1037. > I got Fractint for DOS v19.6 happily running under NT 4.0 (on a HP
  1038. > Vectra)
  1039. > BTW, did anybody try to run Fractint for DOS on Alpha NT (with FX32) ?
  1040. >
  1041. > OK, here=B4s my first contribution to this list. A bit depressing...
  1042.  
  1043. [snip]
  1044.  
  1045. HOW!!! I have never heard of anyone who is able to get Fractint to run un=
  1046. der
  1047. NT4.0 , onscreen, at any res other than 320 or so. Certainly never 800x60=
  1048. 0
  1049. or 1024x768.
  1050.  
  1051. How did you accomplish this miracle?
  1052.  
  1053. Will it color-cycle?
  1054.  
  1055. May I kiss your feet?
  1056. - --
  1057. Barry Bluestein
  1058. President - The Lapis Group
  1059. Information Technology Consulting - Internet Strategic Planning
  1060. 11629 Deborah DR, Potomac, MD 20854
  1061. 301-299-0083
  1062.  
  1063.  
  1064.  
  1065. - --------------------------------------------------------------
  1066. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1067. Post Message:   fractint@lists.xmission.com
  1068. Get Commands:   majordomo@lists.xmission.com "help"
  1069. Administrator:  twegner@phoenix.net
  1070. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1071.  
  1072. ------------------------------
  1073.  
  1074. Date: Mon, 17 Aug 1998 13:46:12 +0200
  1075. From: "Dean-Christian Strik" <cstrik.isg@hetnet.nl>
  1076. Subject: Re: (fractint) Running FRACTINT in WIN95
  1077.  
  1078. Barry wrote:
  1079.  
  1080. >>>>
  1081. HOW!!! I have never heard of anyone who is able to get Fractint to run under
  1082. NT4.0 , onscreen, at any res other than 320 or so. Certainly never 800x600
  1083. or 1024x768.
  1084.  
  1085. How did you accomplish this miracle?
  1086. <<<<
  1087.  
  1088. I'm afraid he never did - at any res > 360x480. WinNT doesn't support dos VESA
  1089. modes.
  1090. The effects of SDD under winNT can actually be quite weird... completely wrong
  1091. card detection, from 50 to 12 modes, pallette screwing up, etc.
  1092.  
  1093. Christian
  1094.  
  1095.  
  1096.  
  1097.  
  1098. - --------------------------------------------------------------
  1099. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1100. Post Message:   fractint@lists.xmission.com
  1101. Get Commands:   majordomo@lists.xmission.com "help"
  1102. Administrator:  twegner@phoenix.net
  1103. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1104.  
  1105. ------------------------------
  1106.  
  1107. Date: Mon, 17 Aug 1998 13:49:21 +0200
  1108. From: "Dean-Christian Strik" <cstrik.isg@hetnet.nl>
  1109. Subject: Re: (fractint) quickie pars
  1110.  
  1111. Rui wrote:
  1112.  
  1113.  
  1114. >Just a few images for your perusal.
  1115. >Just want to thank everyone involved for:
  1116. > alt-tabing into and out of windows without scambled soup display
  1117. > I can now use all the vesa modes on my computer (SF7 fantastic high
  1118. >resolution...need a bigger monitor)
  1119.  
  1120.  
  1121. SF7 (1024x768x256)a fantastic resolution?? Where have you been :-)
  1122.  
  1123. >Has anyone had any problems with Fractint in win98?  I loaded Fractint on my
  1124. >computer at work and all it does is abort and tell me I don't have enough
  1125. >memory!  its a pentiumII 300mhz 64mb ram.  I've tried in dos mode also and
  1126. the
  1127. >same problem occurs (thank God for my travel laptop..just imagine work w/o
  1128. >Fractals).
  1129.  
  1130. Guess Win98 screwed up your startup files. Loading too much stuff in low
  1131. memory area.
  1132.  
  1133. Christian
  1134.  
  1135.  
  1136.  
  1137.  
  1138. - --------------------------------------------------------------
  1139. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1140. Post Message:   fractint@lists.xmission.com
  1141. Get Commands:   majordomo@lists.xmission.com "help"
  1142. Administrator:  twegner@phoenix.net
  1143. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1144.  
  1145. ------------------------------
  1146.  
  1147. Date: Mon, 17 Aug 1998 07:58:41 -0400
  1148. From: wdecker@csc.com
  1149. Subject: Re: (fractint) Looking for a PAR parser
  1150.  
  1151. Thanks, Ken. I guess I'll have to warm up my search engine and go looking
  1152. for PERL for Windows.
  1153.  
  1154. Bill Decker
  1155.  
  1156. > Whaddaya know, I found one.  :-)
  1157. > Following is a very crude PERL script (since I'm not a PERL expert)
  1158. > that will take a list of .PAR files, and spit out the contents of
  1159. > the individual pars like:
  1160. >
  1161. > jo_we_01.par,jowe0101,formula,_k.frm,wiltetrate,0/0/0/0/0/0
  1162. >
  1163. > which is
  1164. >
  1165. > filename, par name, type, formula file, formula, params
  1166. >
  1167. > Those familiar with PERL could easily change the script to output
  1168. > different fields, change the order, etc.
  1169. >
  1170. > I did not extensively test it, so I can't guarantee there won't be any
  1171. > problems.  It should run on a Win version of PERL, but I can't test that
  1172. > option.  All the rest of the standard disclaimers apply, use at your own
  1173. > risk, unsupported, no implied or actual warranties, etc.
  1174. >
  1175. > If anyone decides to improve it, feel free to do so.  Just please send
  1176. > me a copy if you do.  Other than that, have fun with it.  I hope it can
  1177. > be found useful.
  1178. >
  1179. > Ken...
  1180. [snip PERL script]
  1181.  
  1182.  
  1183.  
  1184. - --------------------------------------------------------------
  1185. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1186. Post Message:   fractint@lists.xmission.com
  1187. Get Commands:   majordomo@lists.xmission.com "help"
  1188. Administrator:  twegner@phoenix.net
  1189. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1190.  
  1191. ------------------------------
  1192.  
  1193. Date: Mon, 17 Aug 1998 15:40:58 +0200
  1194. From: Joe Pearson <joe.pearson@didata.co.za>
  1195. Subject: RE: (fractint) Batch Processing
  1196.  
  1197. >Does anyone know of a Win95 program that will reduce the size of jpg's
  1198. >in a batch process? I want to be able to convert my pics to thumbnails
  1199. >as quickly and easily as possible.  
  1200.  
  1201. Angela, 
  1202. depending on whether you really want JPGs you could think about doing
  1203. this within fractint.  The following worked for me:
  1204.  
  1205. fractint filename=aug1601.gif viewwindows=yes savename=redtest1
  1206. batch=yes
  1207.  
  1208. or viewwindows=5 for a specific reduction ratio
  1209. or viewwindows=/0.75//100/0 for an exact thumbnail size (100 pixels
  1210. wide, preserving 0.75 aspect ratio)
  1211.  
  1212. These are perfect thumbnails and the great thing about this is it keeps
  1213. the parameters in the same file so you don't have to worry about
  1214. matching filenames to par entries to re-generate them.
  1215.  
  1216. I haven't tested the following but something like this should allow you
  1217. to reduce all images in a directory:
  1218.  
  1219. for %g in (*.gif) do fractint filename=%g viewwindows=yes savename=%g
  1220. overwrite=yes batch=yes
  1221.  
  1222. You could copy the images to another directory, or include a path in the
  1223. savename= (is this possible?) to avoid writing over the originals ...
  1224.  
  1225. Joe
  1226.  
  1227. - --------------------------------------------------------------
  1228. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1229. Post Message:   fractint@lists.xmission.com
  1230. Get Commands:   majordomo@lists.xmission.com "help"
  1231. Administrator:  twegner@phoenix.net
  1232. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1233.  
  1234. ------------------------------
  1235.  
  1236. Date: Mon, 17 Aug 1998 10:02:10 -0400
  1237. From: Lee Skinner <LeeHSkinner@compuserve.com>
  1238. Subject: (fractint) quickie pars
  1239.  
  1240. Rui,
  1241.  
  1242. >> Spider_Vision      { ; (c) R Parracho Aug 16, 1998 t=3D  0:00:53.50 66=
  1243. mhz
  1244. >>  reset=3D1960 type=3Dformula formulafile=3Drspf007.frm formulaname=3Dr=
  1245. sp_7160
  1246.                                                                 ^^^^^^^^
  1247.  
  1248. Could you please post the rsp_7160 formula?  Thanks!
  1249.  
  1250. Lee
  1251.  
  1252. - --------------------------------------------------------------
  1253. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1254. Post Message:   fractint@lists.xmission.com
  1255. Get Commands:   majordomo@lists.xmission.com "help"
  1256. Administrator:  twegner@phoenix.net
  1257. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1258.  
  1259. ------------------------------
  1260.  
  1261. End of fractint-digest V1 #273
  1262. ******************************
  1263.  
  1264.