Explore >> Select a destination


You are here

nora.codes
| | yasoob.me
7.3 parsecs away

Travel
| | 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.
| | www.cs.cornell.edu
5.7 parsecs away

Travel
| | 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.
| | iosoft.blog
9.0 parsecs away

Travel
| | So far I have used a large number of custom functions to configure and control the WiFi networking, but before adding yet more functionality, I need to offer a simpler (and more standard) way of doing all this programming. When it comes to network programming on Linux or Windows systems, there is only one widely-used...
| | chadaustin.me
39.3 parsecs away

Travel
| This may be the only time I weigh in on the static vs. dynamic typing discussion. Each side has its extreme proponents, and people differ in their ability and desire to work in systems with implicit invariants. Many years ago, back when Java and C++ were the Mainstream Languages and Python was the shiny new up-and-comer, I read Bruce Eckel's arguments in support of dynamically typed languages, and some of the nonobvious (at the time) ways you can get more done at higher quality in a more flexible languag...