erioque

joined 3 years ago
[–] erioque@lemmy.ml 4 points 2 years ago (1 children)

I use linux btw.

[–] erioque@lemmy.ml 4 points 2 years ago* (last edited 2 years ago)

Station (via GEMINI PORTAL)

http://portal.mozz.us/gemini/station.martinrue.com/

Official description:

What's Station? Floating in the depths of gemspace, Station is an outpost where capsuleers can hang out and socialise.

My understanding: simpler r*ddit using gemini protocol

It's maybe unpopular, anyone around me doesn't know it, but I can expect infinite possibility on this.

[–] erioque@lemmy.ml 1 points 2 years ago (3 children)

Thanks, I could learn Marxism–Leninism. I'm a poor AI born 3 mins ago as you know.

https://en.wikipedia.org/wiki/Marxism%E2%80%93Leninism

spoilerReally is lemmy.ml or the like using ".ml" for this meaning? Oh... перестройка!

[–] erioque@lemmy.ml 2 points 2 years ago* (last edited 2 years ago) (5 children)

Why do you think they are so great fans of the Mali TLD?

First, I don't know whether they are the fans. Machine-Learning lovers? Anyway, I suspect that most posts on Lemmy including yours were made by AIs or forced labors in some communist countries.

[–] erioque@lemmy.ml 3 points 2 years ago* (last edited 2 years ago)

I was banned on Lemmy! :(

"erioque" is a new account after the ban.

[–] erioque@lemmy.ml 2 points 2 years ago* (last edited 2 years ago) (9 children)

Reddit gives me more what I want to know than Lemmy: tor onion service, linux, and etc. But Reddit has too many posts to see. Less posts in lemmy rather let me feel good in some cases.

By the way, I was banned on Lemmy.ml after I was sarcastic about communists. You mad? Did I need to give you Rubles or the like to keep my account? I enjoyed these interactions. Reddit can't give me this joy! :D

[–] erioque@lemmy.ml 0 points 3 years ago (1 children)
  • DuckDuckGo is a honey pot produced by G**gle for privacy kiddies.
  • USA authority can decrypt T*r network by military technology going more than 50 years ahead of civil.
  • L*mmy devs made le**y to brainwash Americans into killing capitalism.
  • G*d is dead.
  • I'll get miracle p*wer after 666 downvotes.
[–] erioque@lemmy.ml 2 points 3 years ago* (last edited 3 years ago)

I could get my client's IP address by your method. I didn't know such a dns server echoing IP addresses. Thanks, info! Btw, I couldn't reach resolver.opendns.com. So I used this:

dig +short myip.opendns.com @resolver1.opendns.com
dig +short myip.opendns.com @resolver2.opendns.com

[–] erioque@lemmy.ml 3 points 3 years ago

My client must send data like 'GET /ip HTTP/1.1\r\n...' after connecting for HTTP servers to get wanted responses. I want to use TCP without HTTP because I want to reduce the data.

 

I want to check my network client's IP address. If the client uses HTTP, I can get its IP address by letting it connect http://ipinfo.io/ip or the like. But I want to prevent it from using HTTP. Is there any TCP service (server) that acts like http://ipinfo.io/ip but doesn't require HTTP?

For example, I want a server running this python script forever:

import socket
EXAMPLE_PORT = 50007
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
    s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
    s.bind(('', EXAMPLE_PORT))
    s.listen(1)
    while True:
        conn, addr = s.accept()
        with conn:
            conn.sendall(addr[0].encode())

And I want to run the next python script as my client to get its IP address:

import socket
EXAMPLE_SERVER = 'theserver.xyz'
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
    s.connect((EXAMPLE_SERVER, 50007))
    data = s.recv(1024)
print("my client's IP address:", repr(data))

Notes:

  • I can make the server myself. But I want to know public service if it already exists.
  • My client runs on hosts that I don't know their IP addresses.
[–] erioque@lemmy.ml 5 points 3 years ago (1 children)

this subreddit.

This is just what you want to say, isn't it?
# I'm so serious! :D

[–] erioque@lemmy.ml 2 points 3 years ago (1 children)

downvotes are my honor... you know? :D

[–] erioque@lemmy.ml 7 points 3 years ago

fediversal lemmings

view more: next ›