Archive for the ‘Microposts’ Category

Building 3D models using a Web Cam

Incredible technology to build a 3D model from a video of the desired object. Just watch the video:

You can go to the project site for more details.

Wednesday, November 25th, 2009

Phrase of the Day

“The devil is in the details, but exorcism is in implementation, not theory.” – (author unknown)

Tuesday, August 12th, 2008

Playing with Sintax Highlighter

Posting code snippets is usually painful. I’m playing with the Syntax Highlighter plugin (I got the instructions from here).

        //Fill the coefficients of the equation
        eqn[2] = p0 - 2*p1 + p2;
        eqn[1] = 2*p1-2*p0;
        eqn[0] = p0 - c;
        int nRoots = QuadCurve2D.solveQuadratic(eqn);

Nice, isn’t it?

Saturday, March 22nd, 2008