Archive for the “programming” category — Page 2

Get You Twitter Friends Time Line Using libcurl

3Milinda13th Sep 2008c programming, personal, programming

This weekend I am doing simple project to display twitter time line on ‘Conky’ widget. For that first I need to write a More »

Recursion, Non-Recursion and Tail Recursion Test using GCC -O2 optimization

1Milinda20th Aug 2008algorithms, c programming, programming

I got  very positive response for my previous post that published test results of Recursion algorithm efficiency testing. Bluestorm and Alex has responsed More »

Recursion, Non-Recursion and Tail Recursion Test

11Milinda20th Aug 2008c programming, programming

Because of the responses I got from readers for previous post ‘Efficiency of Algorithms: Recursive vs Non-Recursive’, I did some test using RDTSC More »

JavaScript __noSuchMethod__ feature

0Milinda19th Aug 2008JavaScript, programming

Today I found this document while reading the Ajaxian. This ‘__noSuchmethid__’ of JavaScript object is same as Ruby’s ‘method_missing’ feature. Example from above More »

Efficiency of Algorithms: Recursive vs Non-Recursive

8Milinda18th Aug 2008programming

Before analyzing efficiencies of Recursive and Non-Recursive algorithms of same complexity we have to define what are Recursive and Non-Recursive Algorithms. We can More »