Introduction to Linear Regression

Linear Regression is defined as (from wikipedia): An approach for modeling the relationship between a scalar dependent variable y and one or more explanatory variables denoted X. The case of one explanatory variable is called simple linear regression. In this discussion we will be going over simple linear regression (meaning a linear/straight line). You may have seen this before on your graphic […]

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 […]