Moontalk server and client (provided by many parties)
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 3 Monaten
vor 3 Monaten
vor 4 Monaten
vor 3 Monaten
vor 3 Monaten
vor 3 Monaten
vor 3 Monaten
vor 3 Monaten
vor 3 Monaten
vor 3 Monaten
vor 4 Monaten
vor 3 Monaten
vor 4 Monaten
vor 3 Monaten
vor 3 Monaten
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. -- "Raw" Clients --
  2. The classic:
  3. requires netcat and torify
  4. torify netcat 7ks473deh6ggtwqsvbqdurepv5i6iblpbkx33b6cydon3ajph73sssad.onion 50000
  5. The socat:
  6. requires socat and tor daemon (WHICH MUST BE RUNNING, if you use soystemd: `systemctl enable tor.service --now`)
  7. socat - SOCKS4A:127.0.0.1:7ks473deh6ggtwqsvbqdurepv5i6iblpbkx33b6cydon3ajph73sssad.onion:50000,socksport=9050
  8. Extension for raw clients:
  9. You can attach rlwrap (readline, bundled seperately) to connect, it'll provide a better experience than going in raw.
  10. Consider using this if your messages ever get split.
  11. -- CLI Clients --
  12. moontalk.rb:
  13. Runs off of ruby, just werks. Uses readline.
  14. You'll need to install ruby to run it.
  15. See source code for usage, press enter in an empty prompt to see new messages.
  16. moontalk-cli.c:
  17. partly functional, should just werk for normal chatting.
  18. Not as nice for editing text, full NCurses interface. Manual scrolling.
  19. To compile it, use bake <https://git.lain.church/emil/bake> or just run:
  20. gcc -O2 -std=gnu99 moontalk-cli.c -o moontalk-cli -lncurses -ltinfo
  21. Run -help for usage.
  22. -- GUI Clients --
  23. moontalk.tcl:
  24. Runs off of tcl/tk, just werks.
  25. you'll need tcl and tk to run it.
  26. Click the bottom bar to talk.
  27. Graceful about reconnections.
  28. Made by the OP.
  29. moontalk.py:
  30. Pretty ergonomic, but works.
  31. Runs off of Python and Tkinter.
  32. The enter key does NOTHING!