Skip to content

Instantly share code, notes, and snippets.

View dipunj's full-sized avatar

Dipunj Gupta dipunj

View GitHub Profile

Libuv and libev, two I/O libraries with similar names, recently had the privilege to use both libraries to write something. Now let's talk about my own subjective expression of common and different points.

The topic of high-performance network programming has been discussed. Asynchronous, asynchronous, or asynchronous. Whether it is epoll or kqueue, it is always indispensable to the asynchronous topic.

Libuv is asynchronous, and libev is synchronous multiplexing IO multiplexing.

Libev is a simple encapsulation of system I/O reuse. Basically, it solves the problem of different APIs between epoll and kqueuq. Ensure that programs written using livev's API can run on most *nix platforms. However, the disadvantages of libev are also obvious. Because it basically just encapsulates the Event Library, it is inconvenient to use. For example, accept(3) requires manual setnonblocking after connection. EAGAIN, EWOULDBLOCK, and EINTER need to be detected when reading from a socket. This is a

@dipunj
dipunj / googleColab_drive.ipynb
Last active November 24, 2018 22:29
Download and upload files to/from google drive from /to google colab using pydrive
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dipunj
dipunj / Notes.md
Last active April 12, 2017 07:15
Contains Web Development Notes


CLASS #2

JANUARY, 2017


  1. Server client are processes, and shouldn't be associated with physical machines.