--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/c2c62889-533d-4590-9007-a21ac150d9e4n%40googlegroups.com.
On Aug 7, 2024, at 10:25 PM, Toby Kraft <to...@krafte.com> wrote:
I just learned that Jon Sisk passed away today. I taught classes for Jon for several years. What can I say? We all knew him and his many contributions to the Pick world. He will be missed.Mark Brown posted the news:
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/CAM9E59QwjHd814S%3D6stDkkpCJz-KpsHPE1H9jwju1SWWUo%2Bb%2BA%40mail.gmail.com.
We have setup a Memorial site to remember all the Multivalue pioneers. Jonathan is our first entry. Idf you are interested in leaving a comment or story about Jonathan, please feel free to visit
https://www.multivalue-world.com/multivalue-memorial
This new memorial page is dedicated to honoring the pioneers of the MultiValue community. It serves as a place for friends, colleagues, and enthusiasts to come together, share memories, and celebrate the lasting contributions these innovators have made to the field. As we gather more stories and reflections, this page will be updated to ensure their legacies continue to inspire future generations.
Additionally, if you feel there are others that should be remember in the multivalue community, please feel free to let us know and we will add their names to the list to be included.
Jay LaBonte
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/4C08486A-402B-4172-8873-25EE20FB7A9C%40gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/05a101daea8b%2436ca9210%24a45fb630%24%40paradigm-systems.us.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/8d4a1b1f-4c3c-4af0-911b-6c50a44884afn%40googlegroups.com.
Tony and the entire MultiValue Community,
Jon’s contributions will be deeply missed, and I want to express my sincere appreciation for all the efforts he put into our community. With MultiValue World, our goal is to carry forward the legacy of those who have significantly shaped this community. We aim to be the central archive for all things MultiValue, ensuring that the valuable knowledge and documentation from our legends are preserved for future generations.
As each contributor to the MultiValue community passes, we risk losing the wealth of information they created and documented over the years. MultiValue World is committed to preventing this loss by serving as the go-to repository for all historical and educational resources related to MultiValue.
I encourage anyone with historical information, documents, or materials that should be part of our archive to reach out and share it with us. Your contributions will play a critical role in keeping the spirit and knowledge of the MultiValue community alive and accessible.
Thank you for your continued support. We look forward to sharing further updates with you soon about our upcoming changes at MultiValue World.
Regards,
Jay LaBonte
From: mvd...@googlegroups.com <mvd...@googlegroups.com> On Behalf Of Tony Gravagno
Sent: Friday, August 16, 2024 4:59 PM
To: Pick and MultiValue Databases <mvd...@googlegroups.com>
Subject: Re: [mvdbms] Jon Sisk
I created and maintained those InMemorium pages. The price for working in an aging community, it got increasingly depressing as we lost more of our dear colleagues, friends, adopted family. I stopped when Zumasys adopted the domain and updates became more difficult. As they took on the role of community leaders I had hoped that they would contribute to the content. But they didn't. That page was never updated to include those who are now gone, colleagues who we deeply respected and appreciated in our lives. Zumasys/Rocket unceremoniously disposed of the entire pickwiki site, this one of few community resources, in their clueless ignorance of what makes this industry anything more than just another technical niche - the people.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/c9579300-3226-4568-bde4-942ef3ca2c79n%40googlegroups.com.
On Aug 17, 2024, at 5:57 AM, Mike Yates <myat...@gmail.com> wrote:
As for "jes.com", it contains a message that buyers of the domain are welcome, at around the "Estibot" price of $282,000 !
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/3184792d-4c69-46dd-a8a6-3ca4b9328689n%40googlegroups.com.
It is generally well known that a good program consistsof a small amount of code sprinkled with a generous portionof comments. The comments will appear only in the sourceprogram and not in the run-time code. This is ALMOST true.One of the idiosyncracies of DATA/BASIC is that everyline of source code, no matter what the contents or type ofline, must take up at at least one byte of run-time code, NOTcomments. Agreed, one byte seems a Small price to pay forprogram documentation, but what if that byte caused aprogram loop to spill over into the next frame? This maymean two frames would be necessary in a main loop instead ofone. A better way is to stack pertinent comments behind thestatements to which they apply. For example, thestatements:** RETRIEVE THE PROPER RECORD*X=1GOSUB 2000Could be replaced by:X=1; GOSUB 2000; * RETRIEVE THE PROPER RECORDThis also illustrates the idea that related statements mightbe stacked on a line in order to eliminate the excess bytes.The use of many blank comment lines or rows of asterisksused for delineation should be minimized. These wouldprobably be acceptable between logical segments of theprogram, but have no place inside loops or repetitive code.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to a topic in the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mvdbms/o1o4i1-64VU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/wEwi1aU4XmBI7YC2dX8Nza7ejs7P_X1URlI_4CVhKCONZjwrEm3VePlDPPquHZOx6sscGZcsgoKE23vUH5tB8c332MXpnAFdf4zii8xx8SQ%3D%40goldthwaites.com.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to a topic in the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mvdbms/o1o4i1-64VU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/a89c5228-2c46-443d-a5fb-427ec97da785n%40googlegroups.com.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/c9579300-3226-4568-bde4-942ef3ca2c79n%40googlegroups.com.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/SJ2PR11MB7648BABC385A82A69897384CFA8D2%40SJ2PR11MB7648.namprd11.prod.outlook.com.
Not to worry. All of Jon PDF copies from his site are now available in the Document library at https://www.multivalue.world/documents
Regards,
Jay LaBonte
From: mvd...@googlegroups.com <mvd...@googlegroups.com> On Behalf Of Lisa Levsen
Sent: Tuesday, August 20, 2024 4:24 PM
To: mvd...@googlegroups.com
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/CAGc3oVg48r6JAV5QTewkDjHsFOY9qgN-PMCKEGXSFkMHOucypQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/0ece01daf340%2448d84340%24da88c9c0%24%40paradigm-systems.us.