Recent Posts

Multi Threading

# [Nisse](https://github.com/Loki-Astari/Nisse) In the first two articles, we created a very basic Web Server. A major issue with this simplistic server is that it can only handle connections serial

Read More

SSL Certificates

# [Nisse](https://github.com/Loki-Astari/Nisse) In the previous article, "C++ Sockets," I discussed the addition of support for SSL certificates. But what is an SSL certificate, and how do you obtai

Read More

C++ Sockets

# [Nisse](https://github.com/Loki-Astari/Nisse) In the previous article "A Web Server," I created the simplest web server possible. This article covers the next stage by addressing the issues relat

Read More

A Web Server

# [Nisse](https://github.com/Loki-Astari/Nisse) Describing all aspects of Nisse in a single article would be complex and overwhelming. I want to start with a beginner’s perspective and address a rea

Read More

Nisse - Origins of a Server Library

# [Nisse](https://github.com/Loki-Astari/Nisse) [Nisse](https://github.com/Loki-Astari/Nisse) is a C++ library that simplifies the creation of C++ web-based [applications](https://github.com/Loki-As

Read More

Socket Protocols

In the previous articles I have used a very simplistic protocol. In real world situations this simple protocol is not sufficient. To provide a more robust connection between client and server a commu

Read More