Skip to content
View isaaw404's full-sized avatar

Block or report isaaw404

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
isaaw404/README.md

Typing SVG


💻 whoami.c

#include <stdio.h>

typedef struct {
    char *handle;
    char *role;
    char *school;
    char *interests[3];
} Developer;

int main(void) {
    Developer dev = {
        .handle = "isaaw404",
        .role   = "Student & Tech Enthusiast",
        .school = "SMK Negeri 1 Cikalong Kulon",
        .interests = {"Systems Programming (C/Linux)", "Web Infrastructure", "CLI Tooling"}
    };

    printf("[%s]\n", dev.handle);
    printf("School   : %s\n", dev.school);
    printf("Focus    : %s\n", dev.role);
    printf("Interests: %s, %s, %s\n", 
           dev.interests[0], dev.interests[1], dev.interests[2]);

    return 0;
}

Pinned Loading

  1. Bot-premium-alightmotion Bot-premium-alightmotion Public

    Telegram bot untuk verifikasi dan aktivasi Alight Motion Premium 1 Tahun melalui REST API, dengan dukungan webhook, localhost, Pterodactyl, Termux, dan deployment Vercel.

    JavaScript 4 1