#include <stdio.h>
typedef struct {
const char* university;
const char* focus_areas[3];
const char* mission;
const char* current_projects[3];
const char* tech_stack[5];
} Developer;
int main() {
Developer enes = {
.university = "Istanbul University",
.focus_areas = {
"DevOps / Cloud-Native Infrastructure",
"Robotics & Automation",
"Low-Level Programming"
},
.mission = "Bridging the gap between physical hardware and intelligent automation software.",
.current_projects = {
"Developing real-time firmware & navigation algorithms",
"Designing automation pipelines & containerized environments for connected devices",
"Building highly efficient, real-time backend systems"
},
.tech_stack = {"C/C++", "Go", "Python", "Docker", "Kubernetes"}
};
printf("Let's connect to collaborate or talk about robotics, system design, or cloud-native automation!\n");
return 0;
}| Category | Technologies |
|---|---|
| Languages | |
| Robotics & Systems | |
| DevOps & Cloud | |
| Monitoring & Ops |
|
|
|

