Skip to content
View salihefee's full-sized avatar

Highlights

  • Pro

Block or report salihefee

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
salihefee/README.md
#include "person.h"

#include <stdio.h>

int main() {
    const char* languages[] = {"C#", "Python", "C", NULL};
    const char* projects[] = {
        "MapDownloader",
        "osu-rpc", 
        "MineStorage",
        "badapple",
        "BadAppleMinecraft",
        NULL
    };
    const char* hobbies[] = {
        "Coding",
        "Playing osu!",
        "Listening to music",
        NULL
    };

    Person salihefee = {
        .name = "Salih Efe Ergür",
        .age = 18,
        .occupation = "Student",
        .location = "Turkey",
        .languages = languages,
        .projects = projects,
        .hobbies = hobbies,
        .socials = {
            .discord = "salihefee",
            .instagram = "salihefee727", // i don't use it anymore
            .github = "salihefee",
            .reddit = "salihefee727",
            .lastfm = "https://www.last.fm/user/pthreadgc2",
            .email = "email@salihefeergur.com.tr",
            .website = "https://salihefeergur.com.tr"
        }
    };

    print_person(&salihefee);
    return 0;
}

Pinned Loading

  1. chip8-emulator chip8-emulator Public

    CHIP-8 Emulation in C++

    C++

  2. BadAppleMinecraft BadAppleMinecraft Public

    Video playback in Minecraft

    Java