Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > sci.physics > #533978

Re: The Case For Quick Basic In The 21st Century.

From jimp@specsol.spam.sux.com
Newsgroups sci.physics
Subject Re: The Case For Quick Basic In The 21st Century.
Date 2015-11-18 19:39 +0000
Organization A noiseless patient Spider
Message-ID <kn0vhc-rda.ln1@mail.specsol.com> (permalink)
References <f8d516e4-c84d-4ea1-a440-6398fedd211c@googlegroups.com> <Ye2dnemJ5rgaONnLnZ2dnUU7-I2dnZ2d@giganews.com> <3df133e9-145b-48e9-90a4-ffee6e284f40@googlegroups.com> <s82lhc-5g6.ln1@mail.specsol.com> <74d12771-4846-4eba-90fc-cd1ea56868f1@googlegroups.com>

Show all headers | View raw


Max Keon <mskeon@optusnet.com.au> wrote:
> On Sunday, November 15, 2015 at 12:16:05 PM UTC+11, ji...@specsol.spam.sux.com wrote:
>> Max Keon <msk...@optusnet.com.au> wrote: 
>>>> Sam Wormley wrote: 
>>>>> On 11/11/15 9:50 PM, Max Keon wrote: 
>>>>> I was given verbal permission in a phone conversation with a Microsoft 
>>>>> representative. He said the software was obsolete and of no further use 
>>>>> to Microsoft. I couldn't expect more than a verbal OK in this case. 
>>>> 
>>>> What part of "the software is obsolete" did you miss? 
>>> 
>>> The "obsolete" part needs to be addressed, and that can only be 
>>> done by attracting the attention of the Microsoft hierarchy. 
>>> 
>>>> Anybody that wants to download can do so here: 
>>>>> http://sourceforge.net/projects/quickbasic/ 
>>> 
>>> What was wrong with my link? 
>>> http://members.optusnet.com.au/mskeon/qbastest.html 
>>> 
>>>> But, as the jimp points out 99% have no interest. 
>>>> 
>>>> Modern computers come with the tools to compile all manner of code 
>>>> such as FORTRAN, C, C+, Objective C, Swift, etc. 
>>> 
>>> Quick Basic was included as part of the Windows package in 
>>> Windows 95 and 98. Everyone had direct access to a copy. Programs 
>>> could be written and freely shared across the internet. But at 
>>> the time it's full potential as a simple communication tool was 
>>
>> Quick BASIC is incapable of communicating with anything other than 
>> a pipe through the command line. 
>>
>>> not realized. None of your software listed above comes **anywhere 
>>> near** comparing with Qbasic. They are not included in any 
>>> operating system software. 
>>
>> All are optional on most OS's, even Microsoft. 
> 
> So you think I should post multiple programs to cover every 
> possible software option? That would be absolutely ridiculous. 

I never said any such thing.

What I did say is there are LOTS of languages available for free.

>>> GM/r^2^(2.02) causes a rapid perihelion advance in the eccentric 
>>
>> Today done with a $10.00 calculator. 
> 
> The same calculator could handle this as well; (t^2*f/2)^2 . 
> 't' is the time over a half orbit cycle. f is a proposed change 
> in the gravity force that's generated by the radial velocity 
> between objects in eccentric orbits. i.e. Sun-Mercury, Sun-Pluto. 
> The only problem is in determining a value for 'f'. Due to the 
> number of variables involved a simple formula doesn't seem 
> possible. The force 'f' is time dependent and needs to be 
> calculated in set time segments. A program can be set up to do 
> this. But which programming language should I choose for this 
> program? **The one that's freely available on everyone's computer 
> of course.** 

Take your pick.

> These are the result from one such program. The average 
> anisotropic force generated in the Sun-Pluto system is 
> f = -3.214181344702657D-17 and +3.214181344702657D-17 m/sec^2. 
> The latter is required to determine the perihelion advance. 
> t = 3948440000 sec half orbit cycle time.
> (t^2*f/2)^2 = 62774.45 meter advance per orbit (248 years).
> 
> 37326885490844.26 meter average orbit circumference.
> 62774.45234128569 / 37326885490844.26 * 360 * 3600 =
> 2.179546703789729D-03 arcsec advance per orbit.
> 
> The program can obviously be used for any elliptical orbit. 
> 
> '--the program----
> DEFDBL A-Z
> SCREEN 12
> CLS
> CIRCLE (230, 240), 7, 14
> c = 299792458#
> G = .0000000000667#
> M = 1.99D+30
> pi = 3.14159#
> ' ---Pluto data -------------------------------------
> '49.5 AU aphelion 29.7 AU perihelion
> x = 7.425E+12: vy = 3662 ' Aphelion start.
> '3662 was derived through trial and error until the 
> 'correct perihelion radius was found. I would need to 
> 'wait until the year 2113 to observe the orbital speed 
> 'at aphelion.
> ' -------------------------------
> xm = x
> lastrad = x
> dt = 40000     'seconds per segment
> 
> aa:
> inc = inc + 1
> radius = SQR(x ^ 2 + y ^ 2)
> rv = (radius - lastrad) / dt  ' rv = radial velocity
> lastrad = radius
> gforce = -G * M / radius ^ 2#
> anis = rv ^ 2 / c ^ 2 * (G * M / radius ^ 2)
> acceleration = gforce + anis
> ani2 = ani2 + anis
> ax = acceleration * (x / radius)
> ay = acceleration * (y / radius)
> vx = vx + dt * ax
> vy = vy + dt * ay
> x = x + dt * vx
> y = y + dt * vy
> CIRCLE (230 + x * 8E-12, 240 + y * 8E-12), 0, 11
> IF rv > 0 AND f1 = 1 THEN GOTO ab
> IF rv < 0 AND f1 = 0 THEN f1 = 1
> GOTO aa
> 
> ab:
> aniav = ani2 / inc
> PRINT "f ="; aniav; "average anisotropic force."
> t = inc * dt
> PRINT "t ="; t; "sec half orbit cycle time."
> adv = (t ^ 2 * aniav / 2) ^ 2
> PRINT "(t^2*f/2)^2 ="; adv; "meter advance per orbit (248 years)."
> PRINT
> circ = (xm + radius) * pi
> PRINT circ; "meter average orbit circumference."
> PRINT adv; "/"; circ; "* 360 * 3600 ="
> PRINT adv / circ * 360 * 3600; "arcsec advance per orbit."
> '---end---
> 
> It takes only one minute to, start Qbasic, copy the program, 
> paste it into Qbasic, run it and generate the value for 'f'. 
> 
> Your $10 dollar calculator is fairly useless in this case. 

Yes, for this problem one would need to spend another 10 or 20 dollars
for a programable calculator, or use just about any programming language
of the many that are available for free.


-- 
Jim Pennino

Back to sci.physics | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-11 19:50 -0800
  Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-12 04:22 +0000
    Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-12 10:05 -0500
      Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-12 19:10 +0000
        Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-13 05:52 -0500
          Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-13 19:13 +0000
            Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-13 19:38 -0500
              Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-14 01:27 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-14 15:55 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-14 21:28 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-15 10:30 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-15 20:23 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-16 05:42 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-16 19:29 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-17 05:08 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-17 20:22 +0000
                Re: The Case For Quick Basic In The 21st Century. "nuny@bid.nes" <Alien8752@gmail.com> - 2015-11-17 14:16 -0800
              Re: The Case For Quick Basic In The 21st Century. gilber34 <fafa@invalid.com> - 2015-12-13 16:11 -0600
  Re: The Case For Quick Basic In The 21st Century. Sam Wormley <swormley1@gmail.com> - 2015-11-12 08:43 -0600
    Re: The Case For Quick Basic In The 21st Century. gilber34 <fafa@invalid.com> - 2015-11-12 11:06 -0600
      Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-12 19:01 +0000
    Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-14 15:52 -0800
      Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-15 01:03 +0000
        Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-18 02:09 -0800
          Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-18 19:39 +0000
            Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-19 00:27 -0500
              Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-19 05:40 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-19 07:50 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-19 18:37 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-19 11:47 -0800
                Re: The Case For Quick Basic In The 21st Century. "Sam Gordon" <invalid@examplll.com> - 2015-11-19 11:58 -0800
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-19 12:21 -0800
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-19 23:35 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-20 07:22 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-20 09:20 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-20 17:47 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-20 15:31 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-20 21:56 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-21 08:18 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-21 19:02 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-22 09:17 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-22 19:07 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-23 08:11 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-23 18:24 +0000
                Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-24 21:37 -0500
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-24 19:08 -0800
                Re: The Case For Quick Basic In The 21st Century. benj <none@gmail.com> - 2015-11-24 23:33 -0500
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-25 13:44 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-25 06:25 -0800
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-26 15:19 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-26 08:51 -0800
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-27 14:06 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-27 20:10 -0800
                Re: The Case For Quick Basic In The 21st Century. gilber34 <fafa@invalid.com> - 2015-12-15 10:00 -0600
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-12-15 10:21 -0800
                Re: The Case For Quick Basic In The 21st Century. gilber34 <fafa@invalid.com> - 2015-12-15 14:18 -0600
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 20:08 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-25 19:12 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-26 15:19 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-24 22:35 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-25 06:08 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-21 14:37 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-21 18:49 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-22 14:50 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-22 19:17 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-23 14:13 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-23 18:32 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-24 13:20 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-24 19:38 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-25 13:43 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-25 19:25 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-22 11:03 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-22 19:19 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-22 11:46 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-22 20:27 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-22 12:58 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-22 21:04 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-22 19:05 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-23 00:59 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-22 18:46 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-23 06:07 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-23 04:00 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-23 18:37 +0000
                Re: The Case For Quick Basic In The 21st Century. Mahipal <mahipal7638@gmail.com> - 2015-11-23 20:17 -0800
            Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-19 16:07 -0800
              Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-20 00:37 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-22 16:28 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-23 01:10 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-25 14:13 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-25 23:37 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-29 16:17 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-30 01:22 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-12-03 15:12 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-04 00:15 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-03 23:34 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-04 05:14 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-12-05 17:01 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-06 02:37 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-06 00:55 -0500
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-12-06 15:07 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-06 10:15 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-06 18:51 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-07 03:23 -0500
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-12-07 13:46 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-07 19:20 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-12-07 15:53 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-06 18:44 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-12-14 15:12 +0000
                Re: The Case For Quick Basic In The 21st Century. Jason Wyome <jasonw@hotmail.org> - 2015-12-14 16:56 +0000
                Re: The Case For Quick Basic In The 21st Century. gilber34 <fafa@invalid.com> - 2015-12-14 13:13 -0600
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 19:32 +0000
                Re: The Case For Quick Basic In The 21st Century. Jason Wyome <jasonw@hotmail.org> - 2015-12-14 20:47 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 21:36 +0000
                Re: The Case For Quick Basic In The 21st Century. Jason Wyome <jasonw@hotmail.org> - 2015-12-14 22:33 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 00:09 +0000
                Re: The Case For Quick Basic In The 21st Century. gilber34 <fafa@invalid.com> - 2015-12-14 21:57 -0600
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 05:00 +0000
                Re: The Case For Quick Basic In The 21st Century. Jürgen Großenbuch <jurgengb@adenauer.org> - 2015-12-15 15:02 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 19:13 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-12-15 13:06 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 19:31 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-14 22:11 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 03:44 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-14 23:04 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 05:01 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-15 06:36 -0500
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-12-12 02:43 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-12 19:18 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 00:48 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-13 06:08 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 03:21 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-13 19:13 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 14:37 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-13 20:36 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 15:48 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-13 21:06 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 19:58 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 01:32 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 20:54 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 03:15 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 19:55 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 01:52 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-13 22:38 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-14 06:07 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-14 22:38 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 05:04 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-15 06:50 -0500
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-12-15 13:06 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-15 08:53 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 19:52 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 19:48 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-12-15 22:12 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-16 03:44 +0000
                Re: The Case For Quick Basic In The 21st Century. Jason Wyome <jasonw@hotmail.org> - 2015-12-13 20:15 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-13 20:20 +0000
                Re: The Case For Quick Basic In The 21st Century. Jason Wyome <jasonw@hotmail.org> - 2015-12-13 20:37 +0000
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-13 21:06 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-12-15 02:24 -0800
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-12-15 20:03 +0000
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-26 15:18 +0000
                Re: The Case For Quick Basic In The 21st Century. Max Keon <mskeon@optusnet.com.au> - 2015-11-27 01:32 -0800
                Re: The Case For Quick Basic In The 21st Century. jmfbahciv <See.above@aol.com> - 2015-11-27 14:06 +0000
  Re: The Case For Quick Basic In The 21st Century. Double-A <double-a3@hush.com> - 2015-11-12 15:17 -0800
    Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-12 23:34 +0000
      Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-13 05:57 -0500
        Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-13 19:23 +0000
          Re: The Case For Quick Basic In The 21st Century. dvus <dven1@adelphia.net> - 2015-11-13 19:53 -0500
  Re: The Case For Quick Basic In The 21st Century. emptypost@hotmail.com - 2015-11-19 19:26 -0800
    Re: The Case For Quick Basic In The 21st Century. emptypost@hotmail.com - 2015-11-19 19:40 -0800
  Re: The Case For Quick Basic In The 21st Century. emptypost@hotmail.com - 2015-11-20 15:57 -0800
    Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-21 00:30 +0000
      Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-20 21:53 -0500
        Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-21 07:15 +0000
          Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-21 13:46 -0500
            Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-21 19:57 +0000
              Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-21 15:50 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-21 22:44 +0000
                Re: The Case For Quick Basic In The 21st Century. Wally W. <ww84wa@aim.com> - 2015-11-21 22:30 -0500
                Re: The Case For Quick Basic In The 21st Century. jimp@specsol.spam.sux.com - 2015-11-22 05:14 +0000
  Re: The Case For Quick Basic In The 21st Century. emptypost@hotmail.com - 2015-11-25 22:57 -0800

csiph-web