stoaxcode - Overview

// Student Profile
typedef struct {
    const char* status;
    const char* passion;
    const char* interests[3];
    const char* current_focus;
} StudentProfile;

StudentProfile me = {
    .status = "Electronics Technology Student",
    .passion = "Linux user passionate about electronics and embedded systems",
    .interests = {"Embedded Systems", "PLCs", "Industrial Electronics"},
    .current_focus = "Building hands-on experience and learning firmware development ⚡"
};