1. Question about Euphoria capabilities
- Posted by Pookey Aug 27, 2008
- 1020 views
- Last edited Aug 28, 2008
is it possible to make programs with Euphoria that has networking like chat programs and online games?
2. Re: Question about Euphoria capabilities
- Posted by ryanj Aug 27, 2008
- 1023 views
- Last edited Aug 28, 2008
is it possible to make programs with Euphoria that has networking like chat programs and online games?
Yes, I made an IRC client, which I use all the time. It's not finished yet, though. There are some nice tcp socket libraries in the archive. In fact, I believe Euphoria 4.0 will have networking included in the standard library.
3. Re: Question about Euphoria capabilities
- Posted by ghaberek (admin) Aug 28, 2008
- 1051 views
See "TCP Socket Library" by Jason Mirwald and "TCP Demos" by Robert Szalay. Search The Archive for TCP.
-Greg
4. Re: Question about Euphoria capabilities
- Posted by shfrance Aug 28, 2008
- 991 views
"Archive" means ancient in some peoples eyes. Possible name change?
5. Re: Question about Euphoria capabilities
- Posted by euphoric (admin) Aug 28, 2008
- 998 views
"Archive" means ancient in some peoples eyes. Possible name change?
How about Repository.
6. Re: Question about Euphoria capabilities
- Posted by ghaberek (admin) Aug 28, 2008
- 1052 views
"Archive" means ancient in some peoples eyes. Possible name change?
It's not simply "an archive," it's The Archive. That's its official name.
How about Repository.
Sounds too much like "suppository." I don't like it.
How about simply "User Contributions?"
-Greg
7. Re: Question about Euphoria capabilities
- Posted by euphoric (admin) Aug 28, 2008
- 1034 views
"Archive" means ancient in some peoples eyes. Possible name change?
It's not simply "an archive," it's The Archive. That's its official name.
How about Repository.
Sounds too much like "suppository." I don't like it.
How about simply "User Contributions?"
-Greg
How about "Library Library."
8. Re: Question about Euphoria capabilities
- Posted by euphoric (admin) Aug 28, 2008
- 1038 views
"Archive" means ancient in some peoples eyes. Possible name change?
It's not simply "an archive," it's The Archive. That's its official name.
How about Repository.
Sounds too much like "suppository." I don't like it.
How about simply "User Contributions?"
-Greg
How about "Library Library."
What about "Code Library."
9. Re: Question about Euphoria capabilities
- Posted by CChris Aug 28, 2008
- 997 views
"Archive" means ancient in some peoples eyes. Possible name change?
How about Repository.
Or "Code Central"?
CChris
10. Re: Question about Euphoria capabilities
- Posted by ghaberek (admin) Aug 28, 2008
- 1045 views
"Archive" means ancient in some peoples eyes. Possible name change?
It's not simply "an archive," it's The Archive. That's its official name.
How about Repository.
Sounds too much like "suppository." I don't like it.
How about simply "User Contributions?"
-Greg
How about "Library Library."
What about "Code Library."
"Crazy Bob's Super Code Emporium"
-Greg
11. Re: Question about Euphoria capabilities
- Posted by euphoric (admin) Aug 28, 2008
- 1044 views
"Archive" means ancient in some peoples eyes. Possible name change?
It's not simply "an archive," it's The Archive. That's its official name.
How about Repository.
Sounds too much like "suppository." I don't like it.
How about simply "User Contributions?"
-Greg
How about "Library Library."
What about "Code Library."
"Crazy Bob's Super Code Emporium"
-Greg
That's it! Make it so
12. Re: Question about Euphoria capabilities
- Posted by euphoric (admin) Aug 28, 2008
- 1010 views
"Archive" means ancient in some peoples eyes. Possible name change?
It's not simply "an archive," it's The Archive. That's its official name.
How about Repository.
Sounds too much like "suppository." I don't like it.
How about simply "User Contributions?"
-Greg
How about "Library Library."
What about "Code Library."
"Crazy Bob's Super Code Emporium"
-Greg
That's it! Make it so
My original post was
That's it! Make it so!!
Two exclamation points as "comment" is not a smart idea for a text communication forum, is it?!? I shouldn't have to preview every time, or should I?
13. Re: Question about Euphoria capabilities
- Posted by menno Aug 28, 2008
- 977 views
Maybe a other way of thinking is , how it is done in Peu
You have a 'open' statement . Why not use that for opening something like
i=open("connections.name.d",mode)
Where mode = s for server , a for accept , c for client .
After that you do something like printf(i,......) or gets(i) .
That how they write client/server . And implemeted CGI for website's
Gr Menno .
14. Re: Question about Euphoria capabilities
- Posted by shfrance Aug 28, 2008
- 981 views
- Last edited Aug 29, 2008
I've created a monster.