A revival of my older projects from years ago, I will be (on my own time (meaning possibly slow)) making a CO source in C++. It will likely be a port of current C# projects with probably a focus on porting COPS over.
I'll mess with the specifics later, but it will be open source and will be targetting Linux only (specifically Debian (specifically specifically Ubuntu 15.10_64)). I will not care if it will compile on Windows, so please do not ask. Irony in that is I will be developing it on Windows.
Source Repo:

Live Stream:
This may take weeks, months, maybe a year, who knows. No promises on it except that I will work on it occasionally.
Some specifics about the code:
It implements

and

as major libraries.
My contacts for this project:
Skype: bone.youxs
Email: sara at xandium dot net
Slack: Send me an email for an invite (or pm me your email)
Dev environment shell script
setup.sh (chmod +x setup.sh)
Code:
#!/bin/sh
apt-get update
cd ~
wget https://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
wget http://pocoproject.org/releases/poco-1.7.3/poco-1.7.3-all.tar.gz
tar -xzf poco-1.7.3-all.tar.gz
tar -xzf boost_1_58_0.tar.gz
rm poco-1.7.3-all.tar.gz boost_1_58_0.tar.gz
apt-get install -y libmysqlclient-dev libhiredis-dev liblua5.2-dev libev-dev libssl-dev htop cmake git
cd poco-1.7.3-all
cmake .
make install
cd ~
cd boost_1_58_0
./bootstrap.sh
./b2 install