I like systems that are observable, networks that are traceable,
and algorithms that are well-defined and explainable.
I enjoy working close to the fundamentals: how data moves through memory,
how packets move through the network, and how algorithms shape performance.
/*
* charilaos_net_algo.c
* Packets on the wire, data structures in mind.
*/
#include <stdbool.h>
typedef struct {
const char *name;
const char *focus;
bool inspects_packets;
bool enjoys_algorithms;
} Engineer;
int main(void) {
Engineer me = {
.name = "Charilaos Chatzidimitriou",
.focus = "Systems, Networks & Algorithms",
.inspects_packets = true,
.enjoys_algorithms = true
};
return 0;
}


