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


Groups > alt.folklore.computers > #159606

Re: Qbasic

From Anne & Lynn Wheeler <lynn@garlic.com>
Newsgroups alt.folklore.computers
Subject Re: Qbasic
Date 2016-02-17 12:48 -0800
Organization Wheeler&Wheeler
Message-ID <87wpq312sj.fsf@garlic.com> (permalink)
References (7 earlier) <4cf3e356-3dbf-45a8-a430-d4673b75dca6@googlegroups.com> <MPG.3128dce6263fba48989f6a@news.eternal-september.org> <GCHwy.61862$87.4033@fx11.iad> <2acd1066-5b76-41c0-b7ca-461eb2a7e8a1@googlegroups.com> <xf4xy.5625$FL.383@fx20.iad>

Show all headers | View raw


scott@slp53.sl.home (Scott Lurndal) writes:
> 32-bit x86 processors supported 36 bits of PA, since the pentium pro, if
> not earlier.  Thats 16GB of RAM on the computer.    Granted, a single application
> was limited to a 4GB address space, but there were ways around that
> (e.g. Unixware had a windowing scheme).

Gimick used in late 70s with 3033 & 3081. 370 page table was 16 bits,
12bit (4kbyte) page number, 2 flag bits and two unused/reserved bits.  370 was
24bit addressing ... but MVS bloat and increasing need to use real
memory for caching to compensate for disks relative system throughput
decreasing ... they were banging against the 16mbyte (real limit).

They scavanged the two unused pagetable bits and prefixed it to the page
number to get 14bit page number of 64mbytes real storage. They then used
fullword IDALs ... which were originally introduced to get around timing
problem with scattere/gather ... IBM channel protocol specified no CCW
prefetch and CCW only had 24bit address field ... it CCW was executed
synchronously before chaining to the next CCW. 360 used chained data to
scatter/gather ... but had lots of timing issues. Move to all virtual
memory resulted in nearly every CCW that previously was contiguous could
no morph into scatter/gather because of crossing virtual page boundary
... and the virtual pages not contiguous in real memory. IDALs addresses
could be prefetched to eliminate the timing problems with synchronous
data chaining CCWs.  Fortunately for 64mbyte feature, IDALs were
fullword so it was easy to extend to doing I/O in the >16mbyte area.

There was still an issue that the actual CCWs (and IDALs) had to reside
in the <16mbyte area ... but could do I/O (especially paging) into the
>16mbyte area.

Each virtual address space was still limited to 16mbytes ... and virtual
& real addresses were limited to 16mbytes ... but pagetables could morph
a 24bit/16mbyte virtual address into a 26bit/64mbyte real address
... but there could be a large number of different virtual address
spaces.

VM370 had an issue since the kernel still had issue with accessing parts
of virtual address pages in kernel real address mode ... and it would be
unable to access contents of virtual page in the >16mbyte area. The
vm370 group developed a "bring-down" strategy where they would move a
virtual page from >16mbyte area below the line to the <16mbyte area
... by writing the page out (above the line) to disk and then reading it
back in below the 16mbyte line. I then gave them a hack which filled in
a dummy pagetable with address of the page above the 16mbyte line and
page below the 16mbyte line ... dropped into virtual mode and MVCL of
the page from above the line to below the line and then returned to real
mode. More complicated was hack to play games with kernel accessing in
virtual mode the virtual page information.

They also had other problems modifying how they treated the above and
below line areas for page replacement.

base architecture for 370-xa had 31bit virtual addressing and access
registers ... which allowed code running in one address space to access
areas in other address spaces. Eventually a subset of access registers
was also retrifitted to 3033 as "dual-address space mode".

past posts mentioning above >16mbyte line:
http://www.garlic.com/~lynn/95.html#2 Why is there only VM/370?
http://www.garlic.com/~lynn/2000d.html#82 "all-out" vs less aggressive designs (was: Re: 36 to 32 bit transition)
http://www.garlic.com/~lynn/2001b.html#23 Linux IA-64 interrupts [was Re: Itanium benchmarks ...]
http://www.garlic.com/~lynn/2004f.html#38 Infiniband - practicalities for small clusters
http://www.garlic.com/~lynn/2005p.html#19 address space
http://www.garlic.com/~lynn/2005q.html#30 HASP/ASP JES/JES2/JES3
http://www.garlic.com/~lynn/2006.html#13 VM maclib reference
http://www.garlic.com/~lynn/2006l.html#2 virtual memory
http://www.garlic.com/~lynn/2006m.html#27 Old Hashing Routine
http://www.garlic.com/~lynn/2006w.html#23 Multiple mappings
http://www.garlic.com/~lynn/2007g.html#39 Wylbur and Paging
http://www.garlic.com/~lynn/2007r.html#56 CSA 'above the bar'
http://www.garlic.com/~lynn/2009g.html#71 308x Processors - was "Mainframe articles"
http://www.garlic.com/~lynn/2009g.html#74 308x Processors - was "Mainframe articles"
http://www.garlic.com/~lynn/2009l.html#67 ACP, One of the Oldest Open Source Apps
http://www.garlic.com/~lynn/2010.html#84 locate mode, was Happy DEC-10 Day
http://www.garlic.com/~lynn/2010b.html#87 "The Naked Mainframe" (Forbes Security Article)
http://www.garlic.com/~lynn/2011k.html#87 'smttter IBMdroids
http://www.garlic.com/~lynn/2011p.html#126 Deja Cloud?
http://www.garlic.com/~lynn/2012d.html#18 Memory versus processor speed
http://www.garlic.com/~lynn/2013c.html#48 What Makes an Architecture Bizarre?
http://www.garlic.com/~lynn/2014f.html#22 Complete 360 and 370 systems found
http://www.garlic.com/~lynn/2015b.html#46 Connecting memory to 370/145 with only 36 bits

past posts mentioning dual-address space mode:
http://www.garlic.com/~lynn/2002g.html#17 Black magic in POWER5
http://www.garlic.com/~lynn/2002g.html#18 Black magic in POWER5
http://www.garlic.com/~lynn/2002l.html#51 Handling variable page sizes?
http://www.garlic.com/~lynn/2002l.html#57 Handling variable page sizes?
http://www.garlic.com/~lynn/2003d.html#53 Reviving Multics
http://www.garlic.com/~lynn/2003d.html#69 unix
http://www.garlic.com/~lynn/2003g.html#13 Page Table - per OS/Process
http://www.garlic.com/~lynn/2003m.html#29 SR 15,15
http://www.garlic.com/~lynn/2004f.html#53 Infiniband - practicalities for small clusters
http://www.garlic.com/~lynn/2004n.html#26 PCIe as a chip-to-chip interconnect
http://www.garlic.com/~lynn/2004n.html#54 CKD Disks?
http://www.garlic.com/~lynn/2004o.html#18 Integer types for 128-bit addressing
http://www.garlic.com/~lynn/2004o.html#57 Integer types for 128-bit addressing
http://www.garlic.com/~lynn/2005.html#3 [Lit.] Buffer overruns
http://www.garlic.com/~lynn/2005b.html#53 The mid-seventies SHARE survey
http://www.garlic.com/~lynn/2005c.html#63 intel's Vanderpool and virtualization in general
http://www.garlic.com/~lynn/2005d.html#62 Misuse of word "microcode"
http://www.garlic.com/~lynn/2005f.html#7 new Enterprise Architecture online user group
http://www.garlic.com/~lynn/2005f.html#57 Moving assembler programs above the line
http://www.garlic.com/~lynn/2005p.html#18 address space
http://www.garlic.com/~lynn/2005p.html#19 address space
http://www.garlic.com/~lynn/2005q.html#41 Instruction Set Enhancement Idea
http://www.garlic.com/~lynn/2005q.html#48 Intel strikes back with a parallel x86 design
http://www.garlic.com/~lynn/2006.html#39 What happens if CR's are directly changed?
http://www.garlic.com/~lynn/2006b.html#25 Multiple address spaces
http://www.garlic.com/~lynn/2006b.html#28 Multiple address spaces
http://www.garlic.com/~lynn/2006e.html#0 About TLB in lower-level caches
http://www.garlic.com/~lynn/2006i.html#33 virtual memory
http://www.garlic.com/~lynn/2006p.html#10 What part of z/OS is the OS?
http://www.garlic.com/~lynn/2006r.html#26 A Day For Surprises (Astounding Itanium Tricks)
http://www.garlic.com/~lynn/2006r.html#32 MIPS architecture question - Supervisor mode & who is using it?
http://www.garlic.com/~lynn/2006s.html#42 Ranking of non-IBM mainframe builders?
http://www.garlic.com/~lynn/2006t.html#23 threads versus task
http://www.garlic.com/~lynn/2006x.html#23 Multiple mappings
http://www.garlic.com/~lynn/2006y.html#16 "The Elements of Programming Style"
http://www.garlic.com/~lynn/2006y.html#39 Multiple mappings
http://www.garlic.com/~lynn/2007g.html#59 IBM to the PCM market(the sky is falling!!!the sky is falling!!)
http://www.garlic.com/~lynn/2007k.html#14 Some IBM 3033 information
http://www.garlic.com/~lynn/2007k.html#27 user level TCP implementation
http://www.garlic.com/~lynn/2007k.html#28 IBM 360 Model 20 Questions
http://www.garlic.com/~lynn/2007l.html#71 IBM 360 Model 20 Questions
http://www.garlic.com/~lynn/2007o.html#10 IBM 8000 series
http://www.garlic.com/~lynn/2007p.html#21 Newsweek article--baby boomers and computers
http://www.garlic.com/~lynn/2007q.html#68 Direction of Stack Growth
http://www.garlic.com/~lynn/2007r.html#56 CSA 'above the bar'
http://www.garlic.com/~lynn/2007t.html#16 segmentation or lack thereof
http://www.garlic.com/~lynn/2007t.html#75 T3 Sues IBM To Break its Mainframe Monopoly
http://www.garlic.com/~lynn/2008c.html#33 New Opcodes
http://www.garlic.com/~lynn/2008c.html#35 New Opcodes
http://www.garlic.com/~lynn/2008d.html#69 Regarding the virtual machines
http://www.garlic.com/~lynn/2008e.html#14 Kernels
http://www.garlic.com/~lynn/2008e.html#33 IBM Preview of z/OS V1.10
http://www.garlic.com/~lynn/2008g.html#60 Different Implementations of VLIW
http://www.garlic.com/~lynn/2008h.html#29 DB2 & z/OS Dissertation Research
http://www.garlic.com/~lynn/2008i.html#52 Microsoft versus Digital Equipment Corporation
http://www.garlic.com/~lynn/2008l.html#45 z/OS BIND9 DNS Vulnerable to Cache Poisoning Attack Problem?
http://www.garlic.com/~lynn/2008l.html#83 old 370 info
http://www.garlic.com/~lynn/2008o.html#53 Old XDS Sigma stuff
http://www.garlic.com/~lynn/2008p.html#40 Opsystems
http://www.garlic.com/~lynn/2008q.html#31 TOPS-10
http://www.garlic.com/~lynn/2009c.html#59 Why do IBMers think disks are 'Direct Access'?
http://www.garlic.com/~lynn/2009n.html#74 Best IEFACTRT (off topic)
http://www.garlic.com/~lynn/2009o.html#58 Rudd bucks boost IBM mainframe business
http://www.garlic.com/~lynn/2010c.html#41 Happy DEC-10 Day
http://www.garlic.com/~lynn/2010d.html#81 LPARs: More or Less?
http://www.garlic.com/~lynn/2010e.html#75 LPARs: More or Less?
http://www.garlic.com/~lynn/2010e.html#76 LPARs: More or Less?
http://www.garlic.com/~lynn/2010g.html#83 Far and near pointers on the 80286 and later
http://www.garlic.com/~lynn/2010h.html#2 Far and near pointers on the 80286 and later
http://www.garlic.com/~lynn/2010h.html#10 Far and near pointers on the 80286 and later
http://www.garlic.com/~lynn/2010h.html#13 OS/400 and z/OS
http://www.garlic.com/~lynn/2010n.html#68 PL/1 as first language
http://www.garlic.com/~lynn/2010p.html#21 Dataspaces or 64 bit storage
http://www.garlic.com/~lynn/2011d.html#72 Multiple Virtual Memory
http://www.garlic.com/~lynn/2011f.html#17 New job for mainframes: Cloud platform
http://www.garlic.com/~lynn/2011f.html#39 At least two decades back, some gurus predicted that mainframes would disappear in future and it still has not happened
http://www.garlic.com/~lynn/2011i.html#61 Joint Design of Instruction Set and Language
http://www.garlic.com/~lynn/2011l.html#45 segments and sharing, was 68000 assembly language programming
http://www.garlic.com/~lynn/2012b.html#100 5 Byte Device Addresses?
http://www.garlic.com/~lynn/2012h.html#57 How will mainframers retiring be different from Y2K?
http://www.garlic.com/~lynn/2012j.html#26 Can anybody give me a clear idea about Cloud Computing in MAINFRAME ?
http://www.garlic.com/~lynn/2012j.html#27 Simulated PDP-11 Blinkenlight front panel for SimH
http://www.garlic.com/~lynn/2012n.html#21 8-bit bytes and byte-addressed machines
http://www.garlic.com/~lynn/2012o.html#30 Regarding Time Sharing
http://www.garlic.com/~lynn/2012p.html#26 Mainframes are still the best platform for high volume transaction processing
http://www.garlic.com/~lynn/2013.html#22 Is Microsoft becoming folklore?
http://www.garlic.com/~lynn/2013c.html#81 Still not convinced about the superiority of mainframe security vs distributed?
http://www.garlic.com/~lynn/2013i.html#62 Making mainframe technology hip again
http://www.garlic.com/~lynn/2013m.html#71 'Free Unix!': The world-changing proclamation made 30 years agotoday
http://www.garlic.com/~lynn/2014d.html#62 Difference between MVS and z / OS systems
http://www.garlic.com/~lynn/2014f.html#22 Complete 360 and 370 systems found
http://www.garlic.com/~lynn/2014k.html#82 Do we really need 64-bit DP or is 48-bit enough?
http://www.garlic.com/~lynn/2015b.html#46 Connecting memory to 370/145 with only 36 bits
http://www.garlic.com/~lynn/2015h.html#116 Is there a source for detailed, instruction-level performance info?


-- 
virtualization experience starting Jan1968, online at home since Mar1970

Back to alt.folklore.computers | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Qbasic philo <philo@privacy.net> - 2016-02-05 11:25 -0600
  Re: Qbasic Gene Wirchenko <genew@telus.net> - 2016-02-05 14:56 -0800
    Re: Qbasic philo <philo@privacy.net> - 2016-02-05 18:13 -0600
      Re: Qbasic Michael Black <et472@ncf.ca> - 2016-02-05 22:40 -0500
        Re: Qbasic philo <philo@privacy.net> - 2016-02-05 22:32 -0600
          Re: Qbasic "Gene Buckle" <gene.buckle@bbs.retroarchive.org.remove-3hg-this> - 2016-02-11 10:22 -0800
            Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-11 17:16 -0800
              Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-11 18:49 -0800
                Re: Qbasic philo <philo@privacy.net> - 2016-02-12 05:25 -0600
                Re: Qbasic "gareth" <no.spam@thank.you.invalid> - 2016-02-12 11:50 +0000
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-12 14:02 +0000
                Re: Qbasic "gareth" <no.spam@thank.you.invalid> - 2016-02-12 23:24 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-12 09:50 -0800
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-12 06:53 -0500
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-02-12 13:40 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-12 09:53 -0800
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-02-13 14:37 +0000
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-12 14:04 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-12 09:55 -0800
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-12 20:49 +0000
                Re: Qbasic Bob Eager <news0006@eager.cx> - 2016-02-12 23:21 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-12 15:55 -0800
                Re: Qbasic Bob Eager <news0006@eager.cx> - 2016-02-13 00:26 +0000
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-16 15:55 +0000
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-12 21:09 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-12 17:11 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-12 23:27 -0800
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-13 06:26 -0500
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-16 15:54 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-17 11:34 -0800
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-17 19:56 +0000
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-02-17 12:48 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-17 18:52 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-17 19:23 -0800
                Re: Qbasic "Charles Richmond" <numerist@aquaporin4.com> - 2016-02-18 12:00 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-18 15:02 -0800
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-18 20:36 -0500
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-19 04:14 +0000
                Re: Qbasic "Charles Richmond" <numerist@aquaporin4.com> - 2016-02-19 20:05 -0600
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-19 21:34 -0500
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-20 08:03 -0600
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-20 11:09 -0500
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-02-20 10:39 -0600
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-20 12:05 -0600
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-20 13:47 -0600
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-20 14:21 -0600
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-20 18:06 -0600
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-20 18:15 -0700
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-20 23:29 -0500
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-20 22:48 -0600
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-21 19:37 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-21 09:17 +0000
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-21 23:28 +0000
                Re: Qbasic Walter Bushell <proto@panix.com> - 2016-03-18 18:04 -0400
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-21 05:59 -0500
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 03:30 +1100
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-21 18:34 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-20 21:03 -0800
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-21 05:53 -0500
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 03:27 +1100
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-02-21 12:52 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-21 12:23 -0800
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 03:17 +1100
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-21 18:36 -0700
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 14:03 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-22 13:14 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-22 11:05 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-22 11:19 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-22 15:39 -0600
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-25 06:18 -0600
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-25 06:53 -0700
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-25 08:45 -0600
                Re: Qbasic mausg@mail.com - 2016-02-25 15:56 +0000
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-25 18:19 +0000
                Re: Qbasic - lies about Medicare Dan Espen <despen@verizon.net> - 2016-02-25 10:25 -0500
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-02-25 16:07 +0000
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-25 16:28 -0600
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-02-25 16:01 -0800
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-25 18:51 -0600
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-02-26 15:42 +0000
                Re: Qbasic - lies about Medicare "Osmium" <r124c4u102@comcast.net> - 2016-02-26 10:15 -0600
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-02-26 11:20 -0700
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-02-27 10:30 -0800
                Re: Qbasic - lies about Medicare "Osmium" <r124c4u102@comcast.net> - 2016-02-27 13:06 -0600
                Re: Qbasic - lies about Medicare Dave Garland <dave.garland@wizinfo.com> - 2016-02-26 19:05 -0600
                Re: Qbasic - lies about Medicare "Osmium" <r124c4u102@comcast.net> - 2016-02-26 20:49 -0600
                Re: Qbasic - lies about Medicare "hgww" <hgww@gmail.com> - 2016-02-27 14:33 +1100
                Re: Qbasic - lies about Medicare Dave Garland <dave.garland@wizinfo.com> - 2016-02-26 21:46 -0600
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-02-27 06:44 -0700
                Re: Qbasic - lies about Medicare Dave Garland <dave.garland@wizinfo.com> - 2016-02-27 11:51 -0600
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-28 10:51 -0600
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-02-28 12:58 -0800
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-28 16:34 -0600
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-02-28 17:47 -0800
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-29 07:40 -0600
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 09:28 -0600
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-29 12:46 -0600
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 14:31 -0600
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-29 17:23 -0600
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 18:13 -0600
                Re: Qbasic - lies about Medicare Quadibloc <jsavard@ecn.ab.ca> - 2016-02-28 20:14 -0800
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-02-28 21:04 -0800
                Re: Qbasic - lies about Medicare Andrew Swallow <am.swallow@btinternet.com> - 2016-02-29 09:31 +0000
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-29 07:43 -0600
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 08:21 -0600
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-29 12:43 -0600
                Re: Qbasic - lies about Medicare pechter@chuckie.(none) (William Pechter) - 2016-02-29 17:43 +0000
                Re: Qbasic - lies about Medicare Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-29 17:35 +0000
                Re: Qbasic - lies about Medicare Walter Banks <walter@bytecraft.com> - 2016-02-29 14:19 -0500
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-29 17:19 -0600
                Re: Qbasic - lies about Medicare Ahem A Rivet's Shot <steveo@eircom.net> - 2016-03-01 06:02 +0000
                Re: Qbasic - lies about Medicare Walter Banks <walter@bytecraft.com> - 2016-03-02 10:40 -0500
                Re: Qbasic - lies about Medicare Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:31 +0000
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-01 13:55 +0000
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-03-01 14:14 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-02 01:33 +1100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-02 14:19 +0000
                Re: Qbasic - lies about Medicare "Osmium" <r124c4u102@comcast.net> - 2016-03-02 10:23 -0600
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-03 13:39 +0000
                Re: Qbasic - lies about Medicare "Osmium" <r124c4u102@comcast.net> - 2016-03-03 08:28 -0600
                Re: Qbasic - lies about Medicare Morten Reistad <first@last.name.invalid> - 2016-03-03 16:21 +0100
                Re: Qbasic - lies about Medicare Ahem A Rivet's Shot <steveo@eircom.net> - 2016-03-03 16:17 +0000
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-03-03 16:23 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-03 03:58 +1100
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-03-02 15:06 -0600
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-03 13:39 +0000
                Re: Qbasic - lies about Medicare Morten Reistad <first@last.name.invalid> - 2016-03-03 15:57 +0100
                Re: Qbasic - lies about Medicare Andrew Swallow <am.swallow@btinternet.com> - 2016-03-04 09:58 +0000
                Re: Qbasic - lies about Medicare Morten Reistad <first@last.name.invalid> - 2016-03-04 11:11 +0100
                Re: Qbasic - lies about Medicare Andrew Swallow <am.swallow@btinternet.com> - 2016-03-04 16:22 +0000
                Re: Qbasic - lies about Medicare Morten Reistad <first@last.name.invalid> - 2016-03-05 03:05 +0100
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-04 19:31 -0700
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-04 19:25 -0800
                Re: Qbasic - lies about Medicare Dan Espen <despen@verizon.net> - 2016-03-05 11:14 -0500
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-05 09:50 -0800
                Re: Qbasic - lies about Medicare Dan Espen <despen@verizon.net> - 2016-03-05 17:41 -0500
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-05 20:06 -0700
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-05 20:06 -0700
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-05 20:36 -0800
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-05 22:08 -0800
                Re: Qbasic - lies about Medicare Dan Espen <despen@verizon.net> - 2016-03-06 09:46 -0500
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-06 09:59 -0800
                Re: Qbasic - lies about Medicare Dan Espen <despen@verizon.net> - 2016-03-06 18:40 -0500
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-06 17:25 -0700
                Re: Qbasic - lies about Medicare Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-07 01:13 +0000
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-06 17:26 -0800
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-15 12:32 -0700
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-06 18:04 -0800
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-07 14:09 +0000
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-07 11:18 -0800
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-07 11:57 -0800
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-07 16:24 -0800
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-08 08:18 -0800
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-11 11:40 -0800
                Re: Qbasic - lies about Medicare Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-13 10:14 -0700
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 13:37 +1100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-06 14:08 +0000
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-06 11:24 -0800
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 07:34 +1100
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-06 17:25 -0700
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 12:14 +1100
                Re: Qbasic - lies about Medicare pechter@mongo.(none) (William Pechter) - 2016-03-07 02:49 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 15:47 +1100
                Re: Qbasic - lies about Medicare Lawrence Statton NK1G <lawrence@senguio.mx> - 2016-03-06 19:54 -0600
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-03-05 12:02 -0600
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-05 14:53 -0800
                Re: Qbasic - lies about Medicare Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-05 23:42 +0000
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-05 21:57 -0800
                Re: Qbasic - lies about Medicare Dave Garland <dave.garland@wizinfo.com> - 2016-03-06 00:26 -0600
                Re: Qbasic - lies about Medicare Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-07 01:13 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-06 17:29 +1100
                Re: Qbasic - lies about Medicare Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-06 02:52 -0400
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-06 11:16 -0800
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 07:30 +1100
                Re: Qbasic - lies about Medicare Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-06 17:37 -0400
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 10:12 +1100
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-03-06 19:52 -0600
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 13:39 +1100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-06 14:08 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 01:59 +1100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-07 14:12 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-08 03:11 +1100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-08 13:16 +0000
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-03-08 08:07 -0600
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-08 14:58 -0800
                Re: Qbasic - lies about Medicare Andrew Swallow <am.swallow@btinternet.com> - 2016-03-09 00:32 +0000
                Re: Basic - lies about Medicare "Sam Crean" <sg55443@gmail.com> - 2016-03-09 11:58 +1100
                Re: Basic - lies about Medicare mausg@mail.com - 2016-03-09 11:28 +0000
                Re: Qbasic - lies about Medicare mausg@mail.com - 2016-03-09 11:25 +0000
                Re: Qbasic - lies about Medicare hancock4@bbs.cpcn.com - 2016-03-08 15:01 -0800
                Water: was Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-08 07:18 -0700
                Re: Water: was Re: Qbasic - lies about Medicare Mike Spencer <mds@bogus.nodomain.nowhere> - 2016-03-08 15:06 -0400
                Re: Water: was Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-09 13:41 +0000
                Re: Water: was Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-09 06:48 -0700
                Re: Water: was Re: Qbasic - lies about Medicare "Sam Crean" <sg55443@gmail.com> - 2016-03-10 04:44 +1100
                Re: Water: was Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-10 13:24 +0000
                Re: Water: was Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-03-10 14:14 +0000
                Re: Qbasic - lies about Medicare "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-09 05:09 +1100
                Re: Qbasic - lies about Medicare Gerard Schildberger <gerard46@rrt.net> - 2016-03-08 11:23 -0800
                Re: Qbasic - lies about Medicare Ibmekon <Ibmekon> - 2016-03-06 09:54 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 01:57 +1100
                Re: Qbasic - lies about Medicare Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-07 01:13 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-07 13:35 +1100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-06 14:08 +0000
                Re: Qbasic - lies about Medicare "Sangmo" <ju410@gmail.com> - 2016-03-06 11:51 +1100
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-03-07 14:24 +0000
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-07 10:38 -0700
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-03-04 12:57 -0600
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-03-04 12:08 -0700
                Re: computer security hancock4@bbs.cpcn.com - 2016-03-04 14:36 -0800
                Re: computer security Peter Flass <peter_flass@yahoo.com> - 2016-03-04 19:31 -0700
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-05 13:57 +0000
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-03-05 15:37 -0600
                Re: Qbasic - lies about Medicare Morten Reistad <first@last.name.invalid> - 2016-03-06 00:35 +0100
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-06 14:08 +0000
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-03-16 21:34 -0500
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-17 13:17 +0000
                Re: Qbasic - lies about Medicare Huge <Huge@nowhere.much.invalid> - 2016-03-17 14:17 +0000
                Re: Qbasic - lies about Medicare jmfbahciv <See.above@aol.com> - 2016-03-18 12:45 +0000
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-03-07 15:01 +0000
                Re: Qbasic - lies about Medicare Walter Banks <walter@bytecraft.com> - 2016-03-02 10:37 -0500
                Re: Qbasic - lies about Medicare Dave Garland <dave.garland@wizinfo.com> - 2016-03-01 10:47 -0600
                Re: Qbasic - lies about Medicare Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:12 +0000
                Re: Qbasic - lies about Medicare Dan Espen <despen@verizon.net> - 2016-02-27 00:28 -0500
                Re: Qbasic - lies about Medicare Peter Flass <peter_flass@yahoo.com> - 2016-02-27 06:44 -0700
                Re: Qbasic - lies about Medicare Lawrence Statton NK1G <lawrence@senguio.mx> - 2016-02-28 14:03 -0600
                Re: Qbasic - lies about Medicare JimP <solosam90@gmail.com> - 2016-02-28 10:47 -0600
                Re: Qbasic - lies about Medicare scott@slp53.sl.home (Scott Lurndal) - 2016-02-29 14:52 +0000
                Re: Qbasic - lies about Medicare "Osmium" <r124c4u102@comcast.net> - 2016-02-29 09:25 -0600
                Re: Qbasic - lies about Medicare Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 14:33 -0600
                Re: Qbasic - lies about Medicare Ahem A Rivet's Shot <steveo@eircom.net> - 2016-02-27 08:32 +0000
                Re: Qbasic - lies about Medicare Walter Banks <walter@bytecraft.com> - 2016-02-27 11:21 -0500
                Re: Qbasic pechter@chuckie.(none) (William Pechter) - 2016-02-25 15:31 +0000
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-25 10:22 -0600
                Re: Qbasic pechter@chuckie.(none) (William Pechter) - 2016-02-25 17:28 +0000
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-02-25 08:11 -0800
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-25 10:40 -0600
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-26 04:37 +1100
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-23 12:29 -0600
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-24 13:55 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-24 15:24 -0600
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-21 09:13 +0000
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 03:23 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-21 17:38 +0000
                Re: Qbasic Huge <Huge@nowhere.much.invalid> - 2016-02-21 17:59 +0000
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 07:41 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-22 01:21 +0000
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-22 14:00 +1100
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-22 15:48 -0600
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-22 16:43 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-22 20:49 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-24 18:15 -0600
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-24 17:59 -0700
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-24 19:30 -0600
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-02-25 18:20 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-24 17:58 -0800
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-25 14:38 +1100
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-25 05:25 -0500
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-25 10:22 -0500
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-26 04:31 +1100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-25 15:53 -0800
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-25 21:41 -0500
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-26 14:55 +1100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-25 20:18 -0800
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-26 05:23 -0500
                Re: Qbasic Morten Reistad <first@last.name.invalid> - 2016-02-26 12:15 +0100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-27 10:24 -0800
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-27 10:14 -0800
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-25 23:34 -0600
                Re: Qbasic "J. Clarke" <j.clarke.873638@gmail.com> - 2016-02-26 05:38 -0500
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-26 15:46 +0000
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-26 10:14 -0600
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-26 11:20 -0700
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-26 14:15 -0500
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-26 14:23 -0600
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-26 15:50 -0500
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-02-28 10:46 -0600
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-28 14:40 -0500
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 18:25 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-29 16:40 -0800
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-01 06:47 -0700
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-03-01 08:32 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-01 10:39 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-01 12:23 -0800
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-01 14:27 -0700
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-01 15:58 -0800
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-02 07:22 -0700
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 04:03 +1100
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-03-02 13:52 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-02 13:56 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-26 12:51 -0600
                Re: Qbasic sidd@situ.com (sidd) - 2016-02-26 23:12 -0500
                Re: Qbasic Ibmekon <Ibmekon> - 2016-02-27 09:17 +0000
                Re: Qbasic sidd@situ.com (sidd) - 2016-02-27 14:37 -0500
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-02-27 17:08 -0800
                Re: Qbasic Ibmekon <Ibmekon> - 2016-02-28 09:57 +0000
                Re: Qbasic Morten Reistad <first@last.name.invalid> - 2016-02-28 15:56 +0100
                Re: Qbasic Gene Wirchenko <genew@telus.net> - 2016-02-28 19:00 -0800
                Re: Qbasic Ibmekon <Ibmekon> - 2016-02-29 22:14 +0000
                Re: Qbasic Ibmekon <Ibmekon> - 2016-03-01 22:26 +0000
                Re: Qbasic mausg@mail.com - 2016-03-02 12:26 +0000
                Re: Qbasic Ahem A Rivet's Shot <steveo@eircom.net> - 2016-03-02 13:46 +0000
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-02 21:09 +0000
                Re: Qbasic Ahem A Rivet's Shot <steveo@eircom.net> - 2016-03-03 05:33 +0000
                Re: Qbasic Ibmekon <Ibmekon> - 2016-03-02 19:28 +0000
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-02 15:45 -0800
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-02 16:27 -0800
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-03 01:02 -0800
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-16 17:59 -0700
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-17 10:42 -0700
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-27 19:43 +0000
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-27 10:21 -0800
                Re: Qbasic Morten Reistad <first@last.name.invalid> - 2016-02-27 20:19 +0100
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-26 08:27 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-27 10:25 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 09:30 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-27 15:00 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-27 13:52 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-27 17:16 -0600
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-27 18:22 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-27 17:12 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-27 20:23 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-28 05:43 -0800
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-02-29 03:34 +1100
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-28 08:41 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-28 11:16 -0600
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-28 14:57 -0600
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-02-29 09:55 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-29 09:25 +0000
                Re: Qbasic Ahem A Rivet's Shot <steveo@eircom.net> - 2016-02-29 09:46 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 09:22 -0600
                Re: Qbasic Ahem A Rivet's Shot <steveo@eircom.net> - 2016-02-29 16:17 +0000
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 09:58 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 01:17 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 08:59 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 20:25 +1100
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-01 04:38 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:14 +0000
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-02 01:20 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 09:01 +0000
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-03 20:35 +1100
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-01 04:35 +1100
                Re: Qbasic Walter Bushell <proto@panix.com> - 2016-03-07 18:19 -0500
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-08 00:48 +0000
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-02-29 09:49 +1100
                Re: Qbasic mausg@mail.com - 2016-02-29 16:12 +0000
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-29 10:46 -0600
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-02-29 12:49 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-29 11:03 -0800
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-29 14:51 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 15:56 -0600
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:26 +0000
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-03-01 08:30 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-01 12:28 -0600
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 09:10 +0000
                Re: Qbasic mausg@mail.com - 2016-03-03 10:36 +0000
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-02-29 17:35 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-28 18:41 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-27 20:12 -0600
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-02-25 18:18 -0600
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-26 03:28 -0700
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-02-26 15:48 +0000
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-26 11:20 -0700
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-26 14:09 -0500
                Re: Qbasic "Charles Richmond" <numerist@aquaporin4.com> - 2016-02-27 03:15 -0600
                Re: Qbasic "hgww" <hgww@gmail.com> - 2016-02-27 09:22 +1100
                Re: Qbasic "Charles Richmond" <numerist@aquaporin4.com> - 2016-02-27 03:13 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-27 10:28 -0800
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-02-28 12:59 +0000
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-02-29 03:32 +1100
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-28 08:40 -0800
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-28 14:36 -0500
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-28 18:06 -0700
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-02-28 20:27 -0500
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-28 20:22 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-02-29 16:38 +1100
                Re: Qbasic Roger Blake <rogblake@iname.invalid> - 2016-02-29 05:40 +0000
                Re: Qbasic Ahem A Rivet's Shot <steveo@eircom.net> - 2016-02-29 06:42 +0000
                Re: Qbasic Walter Bushell <proto@panix.com> - 2016-03-07 18:35 -0500
                Re: Qbasic "Rod Speed" <rod.speed.aaa@gmail.com> - 2016-03-08 13:00 +1100
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-02-29 18:54 +1100
                Re: Qbasic Morten Reistad <first@last.name.invalid> - 2016-02-29 10:51 +0100
                Re: Qbasic mausg@mail.com - 2016-02-29 16:05 +0000
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-02-28 22:06 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-02-29 19:01 +1100
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-02-29 08:58 -0800
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-01 05:01 +1100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-29 10:46 -0800
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:24 +0000
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-01 10:12 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 05:59 +1100
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-29 14:59 -0600
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 16:06 -0600
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-01 09:12 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:37 +0000
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-02 01:24 +1100
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-01 12:18 -0600
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-03-02 06:04 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 09:08 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-03 11:33 -0600
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-03 11:46 -0700
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-13 11:25 -0700
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-02-29 09:47 +1100
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-02-28 10:58 -0600
                Re: Qbasic "Alexis" <ggyy@gmail.com> - 2016-02-29 09:51 +1100
                Re: Qbasic mausg@mail.com - 2016-02-29 16:01 +0000
                Re: Qbasic Roger Blake <rogblake@iname.invalid> - 2016-02-29 04:17 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-02-28 20:38 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-02-29 16:44 +1100
                Re: Qbasic Roger Blake <rogblake@iname.invalid> - 2016-02-29 05:46 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-02-29 18:59 +1100
                Re: Qbasic Ahem A Rivet's Shot <steveo@eircom.net> - 2016-02-29 09:56 +0000
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-28 22:53 -0600
                Re: Qbasic Roger Blake <rogblake@iname.invalid> - 2016-02-29 05:35 +0000
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-02-29 06:44 -0600
                Re: Qbasic Morten Reistad <first@last.name.invalid> - 2016-02-29 14:02 +0100
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-01 04:51 +1100
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-02-29 11:36 -0700
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-01 08:58 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-01 10:20 +0000
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-01 06:47 -0700
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-03-01 10:16 -0800
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-01 12:28 -0800
                Re: Qbasic Alfred Falk <falk@arc.ab.ca> - 2016-03-01 21:03 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 10:23 +1100
                Re: Qbasic JimP <solosam90@gmail.com> - 2016-03-01 18:02 -0600
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 11:18 +1100
                Re: Qbasic mausg@mail.com - 2016-03-02 12:19 +0000
                Re: Qbasic "Osmium" <r124c4u102@comcast.net> - 2016-03-01 15:14 -0600
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 10:24 +1100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-01 15:53 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 10:13 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 09:15 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 20:38 +1100
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-03-09 12:38 -0800
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-03-09 19:15 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-03-10 05:06 -0800
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-03-10 09:35 -0600
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-03-10 07:42 -0800
                Re: Qbasic "Sam Crean" <sg55443@gmail.com> - 2016-03-11 04:14 +1100
                Re: Qbasic "Charles Richmond" <numerist@aquaporin4.com> - 2016-03-10 15:52 -0600
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-03-02 14:19 +0000
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-02 07:23 -0700
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-03-03 13:39 +0000
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-03-02 07:29 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 04:04 +1100
                Re: Qbasic Dan Espen <despen@verizon.net> - 2016-03-02 12:50 -0500
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 11:55 +1100
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-03-03 13:39 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-04 03:37 +1100
                Re: Qbasic mausg@mail.com - 2016-03-02 19:40 +0000
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-03-03 13:39 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-04 03:34 +1100
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-03 11:46 -0700
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-03 11:47 -0800
                Re: Qbasic mausg@mail.com - 2016-03-03 22:07 +0000
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-03 17:04 -0700
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-04 13:16 +1100
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-03-02 15:54 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 03:44 +1100
                Re: Qbasic mausg@mail.com - 2016-03-02 16:59 +0000
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-03-02 15:08 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-01 12:19 -0800
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 10:11 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 08:56 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 01:21 +1100
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-03-01 10:57 -0600
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 05:56 +1100
                Re: Qbasic Andrew Swallow <am.swallow@btinternet.com> - 2016-03-03 09:01 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-03 20:37 +1100
                Re: Qbasic jmfbahciv <See.above@aol.com> - 2016-03-01 13:55 +0000
                Re: Qbasic "Sangmo" <ju410@gmail.com> - 2016-03-02 01:28 +1100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-29 10:41 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-02-29 14:16 -0600
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-02-29 16:24 -0800
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-21 14:41 -0500
                Re: Qbasic Roger Blake <rogblake@iname.invalid> - 2016-03-21 20:42 +0000
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-21 13:55 -0700
                Re: Qbasic "hanja" <hanja228@gmail.com> - 2016-03-22 13:16 +1100
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-03-21 17:00 -0500
                Re: Qbasic Peter Flass <peter_flass@yahoo.com> - 2016-03-21 17:12 -0700
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-21 18:44 -0700
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-21 21:06 -0700
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-24 23:13 -0700
                Re: Qbasic "hanja" <hanja228@gmail.com> - 2016-03-22 13:25 +1100
                Re: Qbasic Dave Garland <dave.garland@wizinfo.com> - 2016-03-21 23:36 -0500
                Re: Qbasic Morten Reistad <first@last.name.invalid> - 2016-03-22 12:56 +0100
                Re: Qbasic scott@slp53.sl.home (Scott Lurndal) - 2016-03-22 13:11 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-22 13:33 -0500
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-22 10:32 -0500
                Re: Qbasic Quadibloc <jsavard@ecn.ab.ca> - 2016-03-22 10:06 -0700
                Re: Qbasic Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2016-03-22 17:38 +0000
                Re: Qbasic Stephen Sprunk <stephen@sprunk.org> - 2016-03-22 13:10 -0500
                Re: Qbasic mausg@mail.com - 2016-03-22 19:41 +0000
                Re: Qbasic "hanja" <hanja228@gmail.com> - 2016-03-23 05:09 +1100
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-23 17:00 -0700
                Re: Qbasic "hanja" <hanja228@gmail.com> - 2016-03-24 11:09 +1100
                Re: Qbasic Walter Bushell <proto@panix.com> - 2016-03-25 08:50 -0400
                Re: Qbasic Anne & Lynn Wheeler <lynn@garlic.com> - 2016-03-25 10:00 -0700
                Re: Qbasic hancock4@bbs.cpcn.com - 2016-03-22 14:34 -0700

(Thread has 1181 articles, showing 500 — browse group in flat view)


csiph-web