Skip to content
View Hanocybous's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report Hanocybous

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Hanocybous/README.md


πŸ‘‹ About Me

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;
}

🌐 Connect

LinkedIn dev.to Twitter Email


Popular repositories Loading

  1. Hanocybous Hanocybous Public

    Config files for my GitHub profile.

    1

  2. e-commerce e-commerce Public

    Java 1 1

  3. gantt-chart-visualizer gantt-chart-visualizer Public

    This project is a Gantt Chart application that provides a graphical interface for managing and displaying project timelines, including tasks, dependencies, and durations.

    Java 1

  4. gpp-compiler gpp-compiler Public

    Forked from omiros14052003/Compiler-GreekPlusPlus

    A Custom Language Compiler as part of the Compilers I (MYY-802) course.

    Python 1

  5. password-generator password-generator Public

    A password generator is a program that generates random, secure, and complex passwords that can be used to protect sensitive data and online accounts.

    Python

  6. shell-scripts shell-scripts Public

    Welcome to the Shell-Scripts repository, your go-to collection of versatile and efficient shell scripts for streamlining various tasks and automating routine processes.

    Shell