Profile picture Arsen Buldiak

Arsen Buldiak

Software Developer & Embedded Systems Engineer

Lviv, Ukraine

Computer Science student at Lviv Polytechnic National University. Passionate about AI-powered solutions, embedded systems, and web development. Building smart IoT projects and telegram bots that make life easier.

$ npx connect
Initializing...
Ready to connect.
Waiting for contact request...
#include <Arduino.h>
#include <WiFi.h>
#include <vector>
#include <string>

// Hardware Configuration
#define LED_PIN 2
#define SENSOR_PIN 34
#define BAUDRATE 115200

// Developer Profile Structure
struct Developer {
    const char* name;
    std::vector<std::string> skills;
    std::vector<std::string> interests;
    const char* github;
    const char* linkedin;
};

// Tech Stack Categories
namespace TechStack {
    const char* embedded[] = {
        "ESP32", "Arduino", "C++",
        "I2C", "SPI", "C",
        "IoT Sensors", "FreeRTOS"
    };
    
    const char* backend[] = {
        "Python", "Node.js",
        "Telegram Bot API", "OpenAI API",
        "MongoDB", "MySQL", "REST APIs"
    };
    
    const char* frontend[] = {
        "HTML5", "HTMX", "JavaScript",
        "CSS3", "Figma", "Responsive Design"
    };

    const char* devops[] = {
        "Git (GitHub, GitLab)", "GitHub Actions",
        "Jenkins", "CI/CD Pipelines",
        "Linux (Mint, Ubuntu Server)", "VirtualBox",
        "SonarQube", "Docker"
    };
}

// Initialize Developer Profile
Developer ArsenBuldiak = {
    .name = "Arsen Buldiak",
    .skills = {
        "ESP32", "C++", "Python",
        "Arduino", "IoT", "AI",
        "Telegram Bots", "Web Dev"
    },
    .interests = {
        "Artificial Intelligence",
        "Embedded Systems",
        "Smart Home Automation",
        "IoT Development",
        "Open Source"
    },
    .github = "https://github.com/Arezzon",
    .linkedin = "https://linkedin.com/in/arsen-buldiak"
};

void setup() {
    Serial.begin(BAUDRATE);
    pinMode(LED_PIN, OUTPUT);
    
    Serial.println("=== System Initialization ===");
    Serial.print("Developer: ");
    Serial.println(ArsenBuldiak.name);
    
    // Print skills
    Serial.println("
Loading Skills...");
    for(const auto& skill : ArsenBuldiak.skills) {
        Serial.print("  [OK] ");
        Serial.println(skill.c_str());
        delay(100);
    }
    
    Serial.println("
[READY] All systems operational!");
}

void loop() {
    // Blink LED to show activity
    digitalWrite(LED_PIN, HIGH);
    delay(1000);
    digitalWrite(LED_PIN, LOW);
    delay(1000);
}

InfoHub Telegram Bot

An AI-powered chatbot that helps users get short and clear summaries of news from various sources. Saves time by finding information from reliable websites using GPT technology and Telegram Bot API.

View on GitHub

SmartGreenHouse

An embedded system using ESP32 to automate greenhouse environments. Monitors temperature, humidity, and light levels, automatically adjusting conditions for optimal plant growth.

View on GitHub

Web-Project

An HTML template repository demonstrating the integration of HTML validation tools and dynamic content loading using HTMX. A starting point for modern web developers looking for clean, validated code.

View on GitHub