You are here |
muhammadraza.me | ||
| | | |
www.cs.cornell.edu
|
|
| | | | As a side project, I wrote a simple implementation of green threads for the Python programming language. The library is called Bluelet and it uses Python's native implementation of coroutines. Bluelet makes it easy to write concurrent socket programs without OS threads, multiple processes, or select()-and-dispatch loops. | |
| | | |
blog.stephencleary.com
|
|
| | | | In case you missed it: I did a (free) video series about TCP/IP protocol design | |
| | | |
yasoob.me
|
|
| | | | Hi there fellows. In this post I am going to take you on an adventure with python sockets. They are the real backbones behind web browsing. In simpler terms there is a server and a client. We will deal with the client first. So lets first begin by importing the socket library and making a simple socket. import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) Here we made a socket instance and passed it two parameters. | |
| | | |
inside.java
|
|
| | The Simple Web Server was added to the `jdk.httpserver` module in JDK 18. It is a minimal HTTP static file server, designed to be used for prototyping, testing, and debugging. This article explores some less obvious yet interesting programmatic appl... |