FreeBSD: ‘make’ for non-programmers

"If you're a typical FreeBSD user, you don't have a background in C programming. Yet, if you've ever used make world to upgrade your operating system or issued a make install somewhere within your ports tree, you've compiled C code. This article covers some make basics so you have an idea what is happening behind the scenes. It also examines some of the options you have available when issuing make commands." Read it here.

64-bit Linux and BSD are maturing steadily

"While the theoretical speed advantage and expanded resources of 64-bit computing are enticing to those in need of maximum performance, the road to a perfect AMD64 desktop, workstation or server machine is long and treacherous. What operating system will you use? Is there enough 64-bit software available? In this article we'll explore some of the advantages and pitfalls of going totally 64-bit in a 32-bit world." Read more at NewsForge.

Metafunctions in C++; Assignment and Initialization

This chapter looks at a practical example from science and engineering that can find applications in almost any numerical code. Along the way, you'll learn some important new concepts and get a taste of metaprogramming at a high level using the MPL. Also, this chapter explains the difference between assignment and initialization in C++ in simple terms, with examples to illustrate each.

The Protothreads Library Version 1.1

Protothreads are an extremely lightweight, stackless type of threads written in portable C code. Protothreads provide blocked waiting and sequential code execution on top of event-driven systems, without the overhead of full multithreading or per-thread stacks. They are designed for severely memory constrained systems, has a very low RAM overhead, and can be used with or without an underlying OS. New in version 1.1 is the PT_YIELD() operation that allows a protothread to yield the CPU.