Related Posts
Map function in Java
I read on some email signature something along the lines of: “If I had a dollar for every for(int i=0; i < size; i++) { ... } I've written I'd be rich" After coding on Android and learning about some of the tips for performance, like "With an ArrayList, a hand-written counted loop is about […]
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 […]
[bash scripting] How to get a file’s name without its extension(s).
Say you have an encrypted file file.foo.gpg and you want to make a shorthand command to decrypt that file, you’ll want the resulting file to be named file.foo (without the .gpg), or say you want the name, with no extension?), you can use bash’s magic variable voodo for that. A simple version of that script […]