SOURCE
Continue Reading3 Dangers Hiding In The Office And How to Defeat Them
SOURCE
Continue ReadingMade in the USA: Why Manufacturing Should Return to America
SOURCE
Continue ReadingWhat Concepts Are the Most Dangerous Ones in Quantitative Finance Work?
There are a few things that form the common canon of education in (quantitative) finance, yet everybody knows they are not exactly true, useful, well-
Continue ReadingEfficiently Storing Real-Time Intraday Data in an Application Agnostic Way
What would be the best approach to handle real-time intraday data storage? For personal research I've always imported from flat files only into mem
Continue ReadingWhy Is Subtracting These Two Times (In 1927) Giving a Strange Result?
If I run the following program, which parses two date strings referencing times one second apart and compares them: public static void main(String[]
Continue ReadingHow to Program in C++ #1 – Setup and Hello World
https://www.youtube.com/watch?v=yKATaptz3Dc
Continue ReadingC++: What are the differences between a pointer variable and a reference variable in C++?
I know references are syntactic sugar, so code is easier to read and write. But what are the differences? Summary from answers and links bel
Continue ReadingC++: Globally Replace Text in Several Files
The task is to replace every occurring instance of a piece of text in a group of text files with another one. For this task we want to replace the tex
Continue ReadingC++: Generate Random Number in Range
int random_in_range(int a, int b) //Function that returns a random integer between 2 provided integers { return a + random() % (b-a+1); }
Continue Reading




