Search Results

4
votes
13answers
708 views

Good examples of C applications?

Everyone knows that C is hard to program in, provides you with almost no useful abstractions, and is even dangerous. However, given enough design and discipline, it's possible to write clean, porta …
3
votes

What was your most uncomfortable programming experience

I once implemented the polygon-fill algorithm (given a polygon, it selected all the nodes of this mesh that fell inside it --- don't ask) in MaxScript (part of 3ds Max), which is a horrible, disgus …
4
votes

What programming language should I choose for an independent study language?

All the languages you mentioned are basically object-oriented and procedural. Learning a functional language (like Haskell, Scheme, or F#) or a "hybrid" language (Python, Ruby) is what I would reco …
1
vote

Good examples of C applications?

Simon Tatham's Portable Puzzle Collection has a frontend/backend architecture that allows cross-platform puzzles to …
2
votes

What the ugliest API for a relatively well known library that you have seen, and why and how could it be improved ?

I'm going to turn this question on its head and name a beautiful API for a library whose standard API is mostly ugly: the Haskell bindings for OpenGL. These are the reasons: …
25
votes

What is the WORST commit message you have ever authored?

I feel this is just too good not to share. It was a programming assignment for our algorithms class. Apparently, we did most of the work after midnight; presented below are the more random/profane …
0
votes

Recommended gcc warning options for C

The warning about uninitialized variables doesn't work unless you specify -O, so I include that in my list: -g -O -Wall -Werror -Wextra -pedantic -std=c99 …