Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Couple I've done (Score 5, Interesting) 122

Something simple like a basic Webserver (GET/PUT/HEAD) or a FTP server.

You get:

a) simple string parsing/processing/manipulation
b) File I/O and filesystem manipulation
c) Network I/O

Optionally or language dependent:

d) Threading
e) Packaging

If a dynamic language (e.g. lisp):

f) Write something like JSP on top of it: dynamic dispatch to handling method/function

Optimizations are easy as well. Caching will give you a good overview of data structure speed.

Slashdot Top Deals

"If there isn't a population problem, why is the government putting cancer in the cigarettes?" -- the elder Steptoe, c. 1970

Working...