Working Directories and Build locations with Xcode 9 and C++

Introduction This post describes how Xcode manages Project Working Directories and what options do we have to setup it correctly. In the end you learn how to setup custom build locations for you compiled binaries. Definitions: Project Working Directory – is working directory associated with process created by executing built binary Project Directory – is directory with project source code …

Bitfinex REST API C++ client

I’ve just released simple C++ static library bfx-cpp-api which interfaces Bitfinex REST API (Websocket interface coming soon). Bfx-cpp-api uses libcurl and cryptopp library which must be installed before use. Check example code and don’t forget to link to libcurl and cryptopp when compiling. Before using authenticated endpoints be sure you have created API-secret-key file where first line is API access …