(Technical) Whimsical Writings of the Web
Interesting Links [0x06]
Keyword of the day: ‘Editors’. I was initially going to dedicate this solely to ‘vim’, but given the fact that it is sometimes helpful to have some ‘magic’ (but slow) capabilities when navigating Java sources, I’m including Eclipse links just for a refresher:
In Linux, Compiling Software from Source is the 'Right Thing to do'
Ended up building GCC-4.9 to build python-2.7 to then use both to build LLVM-3.
Interesting Links [0x05]
Today’s topic is about ‘Advice’. Plenty of them out there on the Internets, and that’s one thing that you can get for free, solicited or otherwise.
How to SCP into a vagrant guest
{% gist 11289350 %} Credits: https://gist.github.com/geedew/11289350
Can C declare the size of array at runtime?
Historically, C does not allow the size of an array to be declared at runtime.
Interesting Links [0x04]
This week’s links are all to do with signals. What are signals, and why are they doing in my JVM?
Compiling and linking Google Tests from command line
Some homework for me on how best to incorporate Google Tests to unit test my own libraries without bringing in the whole JVM as a dependency.
How to include JNI Symbols in your DLL
Firstly, use the magic pragma __declspec(dllexport). But this will cause compiler header mismatches between the header and the source files, unless you mangle both of them.