Tagged Questions

-1
votes
8answers
278 views

What was trickiest code you’ve ever written?

Hi, As a programmer, I know sometime all has to write some code which they think -"Thank God! It's done" or "Ohh, how did I write it?"... Do you have any such piece of code.
4
votes
6answers
111 views

Where to get well designed and coded applications written in C# to learn from them?

I got into log4net code and Nunit. Both of them gave me something to think about and taught me something new. What other aps do you know, with source code open that worth reading t …
6
votes
21answers
1k views

What are some examples of LISP being used in production, outside of AI and academia?

A simple Googlin' will reveal that the search term 'practical lisp' returns a link for Practical Common LISP, which is a very nice starter book. However, this is not what I was loo …
8
votes
4answers
602 views

Beginner practical programming problems?

Where can I find lists of practical programming problems for a novice? Something similar to http://www.projecteuler.net, but for practical problems. I am asking for problems even …
1
vote
6answers
286 views

Can you make me understand dynamic, abstract event objects easily?

I've written C++ event-driven apps using MFC for GUI buttons, and I use HTML events like onmousedown to trigger some Javascript in a webpage. The idea of event-driven programming …