Related Posts
Setting up Eclipse as your IDE for Bitcoin C++ development on MacOSX.
If you are a Java developer used to the productivity levels achieved by working with eclipse’s code navigation, code completion and refactoring tools, it’s worth your time staying in eclipse for any sort of C++ development. This post refers specifically to getting your eclipse environment to work with a particular C++ Open Source project, The […]
What is the Rust equivalent to Java’s PrintWriter?
In Rust, the equivalent of Java’s PrintWriter is the std::io::Write trait, which is implemented by a number of types that can be used to write data to an output stream, such as a file or a network socket. To use Write to write text to an output stream, you can use the write_all method, which […]
How to create a list that holds different object types using `void*` in C.
I remember being in school back around 1998 and not knowing enough about C to do this. After coding in other languages, then going back to C++ and understanding at a lower level how references and pointers work, this was pretty easy to figure out. In this exercise I store elements of different types in […]