From ae023f10a91ff88db005fb6177e8fe1f702ffaeb Mon Sep 17 00:00:00 2001 From: John Reynolds Date: Wed, 7 Aug 2019 09:50:47 -0400 Subject: [PATCH] added link to example code for connecting to bitstamp --- Companies-and-Individuals-Using-Beast.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Companies-and-Individuals-Using-Beast.md b/Companies-and-Individuals-Using-Beast.md index 62d0e56..b1e5372 100644 --- a/Companies-and-Individuals-Using-Beast.md +++ b/Companies-and-Individuals-Using-Beast.md @@ -71,3 +71,6 @@ https://github.com/openbmc/bmcweb [El Paso Funding](https://www.elpasofunding.com/) - is my first website written entirely in C++ using Beast.HTTP. Using Beast, I was able to create a highly flexible web application engine that allows me to build websites in C++ VERY EASILY! Everything is modular where the engine knows nothing of the content nor the markup/css. All content is stored in JSON files, read by the C++ engine along with the markup file which then generates dynamic content. There is no need for me to touch my application when changing content unless it is application specific. For example, on the HOME and the CALCULATOR pages, you will find a mortgage calculator that I wrote in C++. Whenever a page loads, I call the calculator using an AJAX call. Please note that the calculator used in both pages is the very same calculator. I am so pleased with Beast, the same application builds and runs perfectly in Linux or Windows. Thank you Vinnie for extending the ASIO library! +---------- + +[Cornelia Consulting](https://www.corneliaconsulting.com) and John Reynolds using beast websockets to connect to cryptocurrency exchanges [Websocket Example Connecting To bitstamp](https://github.com/jrrpanix/cexchange/tree/master/src/bitstamp.cpp).