Tagged Questions

12
votes
10answers
488 views

What should I do if there is not much coding things on working days?

These days ,there are not enough coding works everyday, and I feel that it is not a good thing to a newbie like me, What should I do to improve my coding ability??
4
votes
4answers
93 views

Writing my own SMTP server

I am writing a simple SMTP server and client. Server is in two parts receiver-SMTP and Sender SMTP. both will run in two different daemon services. The two modes this can run in is …
4
votes
3answers
70 views

What does Crosscutting Requirements/Concerns mean in Programming?

These I come across this term a lot "crosscutting requirements/concerns" in programming world. Although I think I have an idea what it means still I do not have a clear idea. I he …
4
votes
8answers
171 views

Worst example of you duplicating existing functionality?

I've certainly done this : written a load of code to do some operation, then discovered that the language already had that functionality built in. An early case i remember is writi …
3
votes
3answers
71 views

Handling CGI requests in a bare-bones http server

I am writing a basic http server in C. Handling a simple static .html file is easy but I have no idea how to handle dynamic .pl .cgi file extensions. I know I will have to use exe …
3
votes
9answers
264 views

What can we learn from your most recent cataclysmic paradigm shift?

Very occasionally we go throuh a software learning experience that turns our assumptions upside down, and we view software development from a whole new perspective. The most obviou …
1
vote
4answers
171 views

Links pointing to absolute path

Is it a good practice that links should always point to absolute path rather than pointing from current directory? I am talking this with reference - where i need to maintain soft …