Joshua Zhu’s Blog » C10K [how to write C10K server]

http://blog.zhuzhaoyuan.com/category/c10k/ notes about high-performance unix server programming, things like concurrency models, IO types, memory allocation strategies, etc.

Joshua Zhu’s Blog » Creating a Hello World! Nginx Module

http://blog.zhuzhaoyuan.com/2009/08/creating-a-hello-world-nginx-module/ blog post with a source of “hello world” nginx module

Joshua Zhu’s Blog » Nginx Internals (Slides & Video)

http://blog.zhuzhaoyuan.com/2009/09/nginx-internals-slides-video/ very good presentation slides explaining nginx internals, such as main architecture, main event loops, core modules, processing pipelines, etc. Also there is a video of the talk , but it is mandarin, so YMMV :-)

Building COM Objects in C#

http://www.csharphelp.com/archives/archive281.html explains how to build a .DLL in C# with COM interface, so it can be used by other manageable/unmanageable code (i.e. VB, C++, etc)

[russian] vadiml: HOWTO по работе с С++ классми из Perl'a || C++ classes in Perl howto

http://vadiml.livejournal.com/1582.html Article in russian part of LiveJournal deals with writing perl XS wrappers around C++ classes

Intel IXP425 | Timesys Embedded Linux [product page]

http://www.timesys.com/products/processors/intel/intel-ixp425 page lists some details about intel ixp4xx combo-cpu’s and there are some useful notes as to what kernel config options should be enabled. Timesys uses 2.6.16.10

Benchmarking boot latency on x86

http://linuxdevices.com/articles/AT7995848646.html article explains a few things and post sample code that shows how to instrument x86 boot process

google C++ Style Guide

http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml google’s internal C++ code guidance

[Russian] Stored procedures i n C for PostgreSQL under Win32 (MinGW ) | Сишные хранимки под PostgreSQL 8.1 (Win) / PostgreSQL : Форум на SQL.RU

http://sql.ru/forum/actualthread.aspx?tid=435875 in Russian: how to complie PostgreSQL stored procedures in C with MinGW under windows

[Python vs C# mono] Federico Mena Quintero - June 2007 Activity Log

http://www.gnome.org/~federico/news-2007-06.html#18 he wrote a GUI prog for linux (SystemTap/strace GUI), something like filemon from Sysinternals. The post compares pros and cons of python vs c# for developing this app.