Related Posts
Function callbacks in C
Ever since I started programming in Javascript, and doing asynchronous function calls, I’ve found myself to be addicted to passing functions as parameters. I do it a lot in python and php, it’s very easy to do this on all these dynamic typed languages. I never had this concept of passing functions as parameters, or […]
NSIS: StrContains function – Find the index of a sub string.
Recently I was out of internet and I needed to implement a function that would search if a String was part of another String for an NSIS installer. Here’s my rendition of such a function. Once I came back online I found out about StrStr, but here’s another option that gives you as output the […]
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 […]