BasicBookReader Evolves to OpenBKZ

BasicBookReader is a decent name for an Ebook reader, however I have decided to change the name to OpenBKZ. I feel it is a much more enticing name, it has some wittiness to it, there is an open source aspect to the name, and it is shorter (which is usually better). That being said, OpenBKZ […]

Intro to IPC | Sockets

Sockets are defined as follows (from wikipedia): A network socket is an endpoint of an inter-process communication flow across a computer network. In other words, sockets are similar to pipes, but capable of network connections (i.e. communication across computers). As you can see each process is on a separate computer, the data then travels through the network to another computer and to […]

Intro to IPC | Interprocess Communication

Interprocess communication is defined as follows on Wikipedia: In computing, inter-process communication (IPC) is a set of methods for the exchange of data among multiple threads in one or more processes. Processes may be running on one or more computers connected by a network. More or less it is exactly what you would expect, the transfer of data between processes. This may […]