Archive for March, 2013

Learn “____” in 24 hours

Posted: March 11, 2013 in Technology

http://norvig.com/21-days.html
A very good article on why there is no shortcut to success or expertise.

Found this Article which presents a very good picture of how a program resides in memory while executing.
Highlights of the article:
segmentation fault by stack overflow
Following is a sample program
main()
{
main();
}

segmentation fault by accessing the text region
Following is a sample program
main()
{
char *p="kapil";
p[0]=1;
}

memory allocation using memory map instead of from heap

One will sure enjoy reading it.

Life of a developer

Posted: March 1, 2013 in Uncategorized
Tags:

I found this post on facebook and could not stop myself from sharing this. Do visit the page and have fun.