Search Results

11
votes
4answers
1k views

What is the best unicode library for C?

What is the best unicode library for C? Where "best" is defined by cross-platform support, compiler independence, and reasonable performance across a the most common languages in use. …
0
votes

What is the single most effective thing you did to improve your programming skills?

Wrote a Scheme compiler in C. Not only did I have to learn Scheme inside and out, but I learned all about compilers, how code is executed on hardware, how garbage collectors work, among other thin …
0
votes

What fundamental skills are needed for programming?

My favorite answer to this is described in computational thinking: thinking in multiple levels of abstraction simu …
0
votes

What’s the best API you’ve ever used?

After using SDL, PyGame was a breath of fresh air. …
152
votes

What is the best comment in source code you have ever encountered?

From Java 1.2 SwingUtilities: doRun.run(); // ... "a doo run run". …