by CodeMangler | Feb 7, 2012 | Programming, Project, Software
My job for the past few years primarily involved developing eclipse based applications, and so, I’ve had to use eclipse full-time for quite some time. My pet peeve with eclipse has always been it’s usability. It’s not particularly keyboard friendly...
by CodeMangler | Jan 28, 2009 | Programming
This was another interesting problem at Project Euler (Problem 12). Interesting because the naïve solution to this was all too trivial but slow, which forced me to seek out a better approach and I finally ended up learning something new 🙂 The nth triangle number is...
by CodeMangler | Jan 17, 2009 | Programming
My current project is a UML modeling tool, and I’m working on the C# 3.0 bits. One of the things it lets you do is to Reverse Engineer your code and obtain the model. And that includes reversing the assemblies too. C# 3.0 introduced Auto Properties (or...
by CodeMangler | Dec 27, 2008 | Programming, Software
Subtext is a visual programming language where you express the application logic in a tabular fashion. I’m not gonna try to explain Subtext in this post. You can find out more from its homepage: http://subtextual.org/. I learned about Subtext nearly 2 months...
by CodeMangler | Dec 25, 2008 | Programming
I’ve written about Project Euler in my previous post (which I guess was the day before yesterday). I was going pretty well with solving the problems until I reached this one – to calculate the sum of all primes below 2 million. That’s the 10th...
by CodeMangler | Dec 23, 2008 | Programming
You’ve probably heard of Project Euler (http://projecteuler.net/). If you haven’t, I suggest you check it out. It’s an amazing collection of interesting mathematical and programming problems. Nowhere else have I seen such a quality collection of problems. I had known...