1. p2p source code
- Posted by mad-dog <mad-dog at rogers.com> Nov 19, 2004
- 575 views
- Last edited Nov 20, 2004
For the convenient, I wonder how to begin with euphoria and where could I obtain such source code solely wrote for euphoria. tia
2. Re: p2p source code
- Posted by Patrick Barnes <mrtrick at gmail.com> Nov 19, 2004
- 541 views
- Last edited Nov 20, 2004
Well, there hasn't been any p2p code written in Euphoria yet, at least none that's appeared on the board. Have you downloaded and installed the Euphoria envirnonment? There are example programs in EUPHORIA\TUTORIAL, and EUPHORIA\DEMO. To learn to use Euphoria, read the documentation in EUPHORIA\HTML... On Fri, 19 Nov 2004 17:33:08 -0500, mad-dog <mad-dog at rogers.com> wrote: > > For the convenient, I wonder how to begin with euphoria and where could > I obtain such source code solely wrote for euphoria. > > tia -- MrTrick
3. Re: p2p source code
- Posted by CoJaBo <cojabo at suscom.net> Nov 20, 2004
- 558 views
Patrick Barnes wrote: > > Well, there hasn't been any p2p code written in Euphoria yet, at least > none that's appeared on the board. I plan to support something like P2P in CJBN, but if you want it within a reasonable time, you might want to do it yourself. I hope to submit an alpha version, probably in the next 2 months. Hopefully I can create a program that allows you to share LEAGAL! files as a demo... > > Have you downloaded and installed the Euphoria envirnonment? > There are example programs in EUPHORIA\TUTORIAL, and EUPHORIA\DEMO. > > To learn to use Euphoria, read the documentation in EUPHORIA\HTML... > > On Fri, 19 Nov 2004 17:33:08 -0500, mad-dog <mad-dog at rogers.com> wrote: > > > > For the convenient, I wonder how to begin with euphoria and where could > > I obtain such source code solely wrote for euphoria. > > > > tia > > -- > MrTrick > >
4. Re: p2p source code
- Posted by mad-dog <mad-dog at rogers.com> Nov 21, 2004
- 566 views
CoJaBo wrote: > > >posted by: CoJaBo <cojabo at suscom.net> > >Patrick Barnes wrote: > > >>Well, there hasn't been any p2p code written in Euphoria yet, at least >>none that's appeared on the board. >> >> >I plan to support something like P2P in CJBN, >but if you want it within a reasonable time, >you might want to do it yourself. I hope to >submit an alpha version, probably in the next >2 months. Hopefully I can create a program that >allows you to share LEAGAL! files as a demo... > > >>Have you downloaded and installed the Euphoria envirnonment? >>There are example programs in EUPHORIA\TUTORIAL, and EUPHORIA\DEMO. >> >>To learn to use Euphoria, read the documentation in EUPHORIA\HTML... >> >>On Fri, 19 Nov 2004 17:33:08 -0500, mad-dog <mad-dog at rogers.com> wrote: >> >> >>>For the convenient, I wonder how to begin with euphoria and where could >>>I obtain such source code solely wrote for euphoria. >>> >>>tia >>> >>> >>-- >>MrTrick >> >> > > > thanks in advance. My intention on P2P project is not another file sharing but rather a streaming live feed data sharing, for stock quotes from pc to pc, hopeful the method minimize downtime possibility and help users obtain real time data for free. Do you think it possible to code such program with euphoria? I asking this because one of my friend told me euphoria is multi-platform.
5. Re: p2p source code
- Posted by "Mike Sabal" <Sabal.Mike at notations.com> Nov 22, 2004
- 554 views
>>>mad-dog at rogers.com 11/20 7:14 pm >>> thanks in advance. My intention on P2P project is not another file sharing but rather a streaming live feed data sharing, for stock quotes from pc to pc, hopeful the method minimize downtime possibility and help users obtain real time data for free. Do you think it possible to code such program with euphoria? I asking this because one of my friend told me euphoria is multi-platform. ------------------- For what you're trying to do, it seems you may be better off doing client / server. There are a number of socket libraries in the archives, as well as a handful of example apps for POP3 and HTTP. Euphoria is multi-platform to a degree: Windows / DOS / Linux / FreeBSD. I haven't heard any word if the Linux or FreeBSD versions run under Mac OS-X. Let me know how your project is coming. Another thought is to only program the client, have a list of RSS sites that carry the same data for redundancy, and parse the data out of the RSS feed to display. Michael J. Sabal
6. Re: p2p source code
- Posted by mad-dog <mad-dog at rogers.com> Nov 23, 2004
- 569 views
- Last edited Nov 24, 2004
Mike Sabal wrote: > > >>>>mad-dog at rogers.com 11/20 7:14 pm >>> >>>> >>>> >thanks in advance. >My intention on P2P project is not another file sharing but rather a >streaming live feed data sharing, for stock quotes from pc to pc, >hopeful the method minimize downtime possibility and help users obtain > >real time data for free. Do you think it possible to code such program >with euphoria? I asking this because one of my friend told me euphoria >is multi-platform. >------------------- >For what you're trying to do, it seems you may be better off doing >client / server. There are a number of socket libraries in the >archives, as well as a handful of example apps for POP3 and HTTP. >Euphoria is multi-platform to a degree: Windows / DOS / Linux / FreeBSD. > I haven't heard any word if the Linux or FreeBSD versions run under Mac >OS-X. Let me know how your project is coming. Another thought is to >only program the client, have a list of RSS sites that carry the same >data for redundancy, and parse the data out of the RSS feed to display. > >Michael J. Sabal > > > > Thanks Mike. I think P2P is a greater choice because every participant will become part of the server, therefore virtually no serious downtime and easier become the main standard feed if assumption is correct. I thought Mac OS is part of the Unix as Linux and Free BSD. If so, Euphoria should be easily to port into the system near future, am I right? will let you all know if I ever figure it out, I should have ton of help requisition to you smart people out there to assist me solving the problems.