Hi all Not sure where to get started, but i am having an issue where a specific webpage does not open. There seems to be some king of dynamic thing happening and it keeps loading indefinitely. This is one specific page where it happens: https://www.meetup.com/Meetup-API-Testing/events/dxtgwgyxkbdb/a...
Hi all Thanks for the replies: rpdom, your code yields: tcp 0 0 127.0.1.1:12345 Not the 0.0.0.0 you indicated. However if from the own Rpi i do: telnet 127.0.1.1 12345 i can connect to the server. DeeJay AFAIK yes. This means i am openin the socket in the same network address i am. For connection to...
Hi all Trying to create a simple python socket server in Rpi import socket s = socket.socket(socket.AF_INET,socket.SOCK_STREAM) print 'Socket Created' host = socket.gethostname() port=12345 s.bind((host,port)) s.listen(5) while True: c, addr = s.accept() print 'Got', addr c.send('Hello') c.close Thi...