Explore >> Select a destination


You are here

kristerw.blogspot.com
| | nedbatchelder.com
3.4 parsecs away

Travel
| | I added PostScript support to SilverCity. Now I can show my polyglot code in a new way.
| | gist.github.com
3.0 parsecs away

Travel
| | GitHub Gist: instantly share code, notes, and snippets.
| | blog.oddbit.com
3.0 parsecs away

Travel
| | Overview I was recently working with someone else's C source and I wanted to add some basic error checking without mucking up the code with a bunch of if statements and calls to perror. I ended up implementing a simple must function that checks the return value of an expression, and exits with an error if the return value is less than 0. You use it like this: must(fd = open("textfile.txt", O_RDONLY)); Or:
| | blog.martinig.ch
10.9 parsecs away

Travel
| Architecture is an important asset for good programming and the notion of "pattern" is here to help us apply already trusted code architecture solutions to common problems. Jason McDonald has done a wonderful job to group some of them in a document that should be useful to most software developers. Go to his blog to