Skip to content

Instantly share code, notes, and snippets.

@Alexey-N-Chernyshov
Alexey-N-Chernyshov / client.c
Last active July 19, 2024 17:08
Example of client/server with select().
// Simple example of client.
// Client prints received messages to stdout and sends from stdin.
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <sys/select.h>
#include <netinet/in.h>
@staltz
staltz / introrx.md
Last active October 17, 2024 14:12
The introduction to Reactive Programming you've been missing