Quagmire
Saturday, January 13, 2018
Migrated!
›
I have decided to migrate blogging over to jekyll + github-pages. They can be found here .
Saturday, February 18, 2012
Eclipse ADT: 'Unable to open sync connection!'
›
Sometimes, you get this wierd looking error on eclipse while working/developing on your phone. [2010-10-12 09:36:48 - myapp] java.io.IOExcep...
Wednesday, November 23, 2011
A short perl code to find union of 2 arrays in perl
›
Using slices on hash variable :) sub array_union { my ($arrRef1, $arrRef2) = @_; my %hash; @hash{@$arrRef1} = undef; @hash{...
Wednesday, October 12, 2011
Upgrading CM7 on LG O2X
›
If you are planning to upgrade CM7 on your LG O2X, please make sure you have done the following! Upgrade clockworkmod to a version >= 5....
Monday, September 5, 2011
ARFF file-reader in C++
›
Long time ago I had written a C++ library to parse ARFF files for one of my Machine-Learning projects. Today, I'm making the code open-...
2 comments:
Sunday, August 28, 2011
Iterator for templated STL containers in C++
›
I realized this today! The following code almost always will give compilation error. std::vector ::const_iterator itr; And the compilation ...
Sunday, July 31, 2011
Getting (approx?) memory usage information on linux
›
Here's the code for doing so: (Tested on Ubuntu 10.10) #include <unistd.h> #include <stdio.h> int processMemUsage() { ...
›
Home
View web version